On 10 July 2010 at 13:01, Dirk Eddelbuettel wrote:
|
| Eduardo,
|
| On 10 July 2010 at 19:31, Eduardo García wrote:
| | Hi everybody! Could somebody help me with the following?
| |
| | I'm trying to run a simple Hello World code in openmp using .C function. The
| | C code i have is:
| |
| | #
Eduardo,
On 10 July 2010 at 19:31, Eduardo García wrote:
| Hi everybody! Could somebody help me with the following?
|
| I'm trying to run a simple Hello World code in openmp using .C function. The
| C code i have is:
|
| #include
| #include
| #include
|
| void hello_omp(int *n) {
|i
Hi everybody! Could somebody help me with the following?
I'm trying to run a simple Hello World code in openmp using .C function. The
C code i have is:
#include
#include
#include
void hello_omp(int *n) {
int th_id, nthreads;
omp_set_num_threads(*n);
#pragma omp parallel private(t