Uncategorized

October 20, 2021

Bash Cheat Sheet

An entire array can be assigned by enclosing the array items in parenthesis: arr=(Hello World) arr[0]=Hello arr[1]=World ${arr[*]} # All of the items in the array […]
January 21, 2018

MPI vs OpenMP

MPI and OpenMP have  its own advantages and limitations.OpenMP is relatively easy to implement and involves few pragma directives to achieve desired tasks. OpenMP may be […]