123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- #include <starpu.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <math.h>
- #define NX (30*1000000/sizeof(double))
- #define FPRINTF(ofile, fmt, ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ## __VA_ARGS__); }} while(0)
- int main(int argc, char **argv)
- {
- double * A,*B,*C,*D,*E,*F;
-
- setenv("STARPU_LIMIT_CPU_MEM", "160", 1);
-
- int ret = starpu_init(NULL);
- if (ret == -ENODEV) goto enodev;
-
- int new_dd = starpu_disk_register(&starpu_disk_unistd_ops, (void *) "/tmp/", 1024*1024*200);
-
- if (new_dd == -ENOENT) goto enoent;
-
- starpu_malloc_flags((void **)&A, NX*sizeof(double), STARPU_MALLOC_COUNT);
- starpu_malloc_flags((void **)&F, NX*sizeof(double), STARPU_MALLOC_COUNT);
- FPRINTF(stderr, "TEST DISK MEMORY \n");
- unsigned int j;
-
- for(j = 0; j < NX; ++j)
- {
- A[j] = j;
- F[j] = -j;
- }
- starpu_data_handle_t vector_handleA, vector_handleB, vector_handleC, vector_handleD, vector_handleE, vector_handleF;
-
- starpu_vector_data_register(&vector_handleA, STARPU_MAIN_RAM, (uintptr_t)A, NX, sizeof(double));
- starpu_vector_data_register(&vector_handleB, -1, (uintptr_t) NULL, NX, sizeof(double));
- starpu_vector_data_register(&vector_handleC, -1, (uintptr_t) NULL, NX, sizeof(double));
- starpu_vector_data_register(&vector_handleD, -1, (uintptr_t) NULL, NX, sizeof(double));
- starpu_vector_data_register(&vector_handleE, -1, (uintptr_t) NULL, NX, sizeof(double));
- starpu_vector_data_register(&vector_handleF, STARPU_MAIN_RAM, (uintptr_t)F, NX, sizeof(double));
-
- starpu_data_cpy(vector_handleB, vector_handleA, 0, NULL, NULL);
- starpu_data_cpy(vector_handleC, vector_handleB, 0, NULL, NULL);
- starpu_data_cpy(vector_handleD, vector_handleC, 0, NULL, NULL);
- starpu_data_cpy(vector_handleE, vector_handleD, 0, NULL, NULL);
- starpu_data_cpy(vector_handleF, vector_handleE, 0, NULL, NULL);
-
-
- starpu_data_unregister(vector_handleA);
- starpu_data_unregister(vector_handleB);
- starpu_data_unregister(vector_handleC);
- starpu_data_unregister(vector_handleD);
- starpu_data_unregister(vector_handleE);
- starpu_data_unregister(vector_handleF);
-
- int try = 1;
- for (j = 0; j < NX; ++j)
- if (A[j] != F[j])
- {
- printf("Fail A %f != F %f \n", A[j], F[j]);
- try = 0;
- }
-
- starpu_free_flags(A, NX*sizeof(double), STARPU_MALLOC_COUNT);
- starpu_free_flags(F, NX*sizeof(double), STARPU_MALLOC_COUNT);
-
- starpu_shutdown();
- if(try)
- FPRINTF(stderr, "TEST SUCCESS\n");
- else
- FPRINTF(stderr, "TEST FAIL\n");
- return (try ? EXIT_SUCCESS : EXIT_FAILURE);
- enodev:
- return 77;
- enoent:
- return 77;
- }
|