123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009, 2010, 2011 Université de Bordeaux 1
- * Copyright (C) 2010 Mehdi Juhoor <mjuhoor@gmail.com>
- * Copyright (C) 2010, 2011 Centre National de la Recherche Scientifique
- *
- * StarPU is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * StarPU is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
- #include <limits.h>
- #include <string.h>
- #include <math.h>
- #include <sys/types.h>
- #include <sys/time.h>
- #include <starpu.h>
- #include <common/blas.h>
- #ifdef STARPU_USE_CUDA
- #include <cuda.h>
- #include <cublas.h>
- #include <starpu_cuda.h>
- #endif
- static unsigned niter = 100;
- static unsigned nslicesx = 4;
- static unsigned nslicesy = 4;
- static unsigned xdim = 256;
- static unsigned ydim = 256;
- static unsigned zdim = 64;
- static unsigned check = 0;
- static TYPE *A, *B, *C;
- static starpu_data_handle_t A_handle, B_handle, C_handle;
- #define FPRINTF(ofile, fmt, args ...) do { if (!getenv("STARPU_SSILENT")) {fprintf(ofile, fmt, ##args); }} while(0)
- static void check_output(void)
- {
- /* compute C = C - AB */
- CPU_GEMM("N", "N", ydim, xdim, zdim, (TYPE)-1.0f, A, ydim, B, zdim, (TYPE)1.0f, C, ydim);
-
- /* make sure C = 0 */
- TYPE err;
- err = CPU_ASUM(xdim*ydim, C, 1);
- if (err < xdim*ydim*0.001) {
- FPRINTF(stderr, "Results are OK\n");
- }
- else {
- int max;
- max = CPU_IAMAX(xdim*ydim, C, 1);
- FPRINTF(stderr, "There were errors ... err = %f\n", err);
- FPRINTF(stderr, "Max error : %e\n", C[max]);
- }
- }
- static void init_problem_data(void)
- {
- unsigned i,j;
- starpu_malloc((void **)&A, zdim*ydim*sizeof(TYPE));
- starpu_malloc((void **)&B, xdim*zdim*sizeof(TYPE));
- starpu_malloc((void **)&C, xdim*ydim*sizeof(TYPE));
- /* fill the A and B matrices */
- for (j=0; j < ydim; j++) {
- for (i=0; i < zdim; i++) {
- A[j+i*ydim] = (TYPE)(starpu_drand48());
- }
- }
- for (j=0; j < zdim; j++) {
- for (i=0; i < xdim; i++) {
- B[j+i*zdim] = (TYPE)(starpu_drand48());
- }
- }
- for (j=0; j < ydim; j++) {
- for (i=0; i < xdim; i++) {
- C[j+i*ydim] = (TYPE)(0);
- }
- }
- }
- static void partition_mult_data(void)
- {
- starpu_matrix_data_register(&A_handle, 0, (uintptr_t)A,
- ydim, ydim, zdim, sizeof(TYPE));
- starpu_matrix_data_register(&B_handle, 0, (uintptr_t)B,
- zdim, zdim, xdim, sizeof(TYPE));
- starpu_matrix_data_register(&C_handle, 0, (uintptr_t)C,
- ydim, ydim, xdim, sizeof(TYPE));
- struct starpu_data_filter vert;
- memset(&vert, 0, sizeof(vert));
- vert.filter_func = starpu_vertical_block_filter_func;
- vert.nchildren = nslicesx;
-
- struct starpu_data_filter horiz;
- memset(&horiz, 0, sizeof(horiz));
- horiz.filter_func = starpu_block_filter_func;
- horiz.nchildren = nslicesy;
-
- starpu_data_partition(B_handle, &vert);
- starpu_data_partition(A_handle, &horiz);
- starpu_data_map_filters(C_handle, 2, &vert, &horiz);
- }
- static void mult_kernel_common(void *descr[], int type)
- {
- TYPE *subA = (TYPE *)STARPU_MATRIX_GET_PTR(descr[0]);
- TYPE *subB = (TYPE *)STARPU_MATRIX_GET_PTR(descr[1]);
- TYPE *subC = (TYPE *)STARPU_MATRIX_GET_PTR(descr[2]);
- unsigned nxC = STARPU_MATRIX_GET_NX(descr[2]);
- unsigned nyC = STARPU_MATRIX_GET_NY(descr[2]);
- unsigned nyA = STARPU_MATRIX_GET_NY(descr[0]);
- unsigned ldA = STARPU_MATRIX_GET_LD(descr[0]);
- unsigned ldB = STARPU_MATRIX_GET_LD(descr[1]);
- unsigned ldC = STARPU_MATRIX_GET_LD(descr[2]);
- if (type == STARPU_CPU) {
- int worker_size = starpu_combined_worker_get_size();
- if (worker_size == 1)
- {
- /* Sequential CPU task */
- CPU_GEMM("N", "N", nxC, nyC, nyA, (TYPE)1.0, subA, ldA, subB, ldB, (TYPE)0.0, subC, ldC);
- }
- else {
- /* Parallel CPU task */
- int rank = starpu_combined_worker_get_rank();
-
- int block_size = (nyC + worker_size - 1)/worker_size;
- int new_nyC = STARPU_MIN(nyC, block_size*(rank+1)) - block_size*rank;
- STARPU_ASSERT(nyC = STARPU_MATRIX_GET_NY(descr[1]));
- TYPE *new_subB = &subB[block_size*rank];
- TYPE *new_subC = &subC[block_size*rank];
- CPU_GEMM("N", "N", nxC, new_nyC, nyA, (TYPE)1.0, subA, ldA, new_subB, ldB, (TYPE)0.0, new_subC, ldC);
- }
- }
- #ifdef STARPU_USE_CUDA
- else {
- CUBLAS_GEMM('n', 'n', nxC, nyC, nyA, (TYPE)1.0, subA, ldA, subB, ldB,
- (TYPE)0.0, subC, ldC);
- cudaStreamSynchronize(starpu_cuda_get_local_stream());
- }
- #endif
- }
- #ifdef STARPU_USE_CUDA
- static void cublas_mult(void *descr[], __attribute__((unused)) void *arg)
- {
- mult_kernel_common(descr, STARPU_CUDA);
- }
- #endif
- static void cpu_mult(void *descr[], __attribute__((unused)) void *arg)
- {
- mult_kernel_common(descr, STARPU_CPU);
- }
- static struct starpu_perfmodel starpu_gemm_model = {
- .type = STARPU_HISTORY_BASED,
- .symbol = STARPU_GEMM_STR(gemm)
- };
- static struct starpu_codelet cl = {
- .where = STARPU_CPU|STARPU_CUDA,
- .type = STARPU_SEQ, /* changed to STARPU_SPMD if -spmd is passed */
- .max_parallelism = INT_MAX,
- .cpu_funcs = {cpu_mult, NULL},
- #ifdef STARPU_USE_CUDA
- .cuda_funcs = {cublas_mult, NULL},
- #endif
- .nbuffers = 3,
- .model = &starpu_gemm_model
- };
- static void parse_args(int argc, char **argv)
- {
- int i;
- for (i = 1; i < argc; i++) {
- if (strcmp(argv[i], "-nblocks") == 0) {
- char *argptr;
- nslicesx = strtol(argv[++i], &argptr, 10);
- nslicesy = nslicesx;
- }
- if (strcmp(argv[i], "-nblocksx") == 0) {
- char *argptr;
- nslicesx = strtol(argv[++i], &argptr, 10);
- }
- if (strcmp(argv[i], "-nblocksy") == 0) {
- char *argptr;
- nslicesy = strtol(argv[++i], &argptr, 10);
- }
- if (strcmp(argv[i], "-x") == 0) {
- char *argptr;
- xdim = strtol(argv[++i], &argptr, 10);
- }
- if (strcmp(argv[i], "-y") == 0) {
- char *argptr;
- ydim = strtol(argv[++i], &argptr, 10);
- }
- if (strcmp(argv[i], "-z") == 0) {
- char *argptr;
- zdim = strtol(argv[++i], &argptr, 10);
- }
- if (strcmp(argv[i], "-iter") == 0) {
- char *argptr;
- niter = strtol(argv[++i], &argptr, 10);
- }
- if (strcmp(argv[i], "-check") == 0) {
- check = 1;
- }
- if (strcmp(argv[i], "-spmd") == 0) {
- cl.type = STARPU_SPMD;
- }
- }
- }
- int main(int argc, char **argv)
- {
- struct timeval start;
- struct timeval end;
- parse_args(argc, argv);
- starpu_init(NULL);
- starpu_helper_cublas_init();
- init_problem_data();
- partition_mult_data();
- gettimeofday(&start, NULL);
- unsigned x, y, iter;
- for (iter = 0; iter < niter; iter++)
- {
- for (x = 0; x < nslicesx; x++)
- for (y = 0; y < nslicesy; y++)
- {
- struct starpu_task *task = starpu_task_create();
-
- task->cl = &cl;
-
- task->buffers[0].handle = starpu_data_get_sub_data(A_handle, 1, y);
- task->buffers[0].mode = STARPU_R;
- task->buffers[1].handle = starpu_data_get_sub_data(B_handle, 1, x);
- task->buffers[1].mode = STARPU_R;
- task->buffers[2].handle = starpu_data_get_sub_data(C_handle, 2, x, y);
- task->buffers[2].mode = STARPU_RW;
-
- int ret = starpu_task_submit(task);
- STARPU_ASSERT(!ret);
- }
- starpu_task_wait_for_all();
- }
- gettimeofday(&end, NULL);
- double timing = (double)((end.tv_sec - start.tv_sec)*1000000 + (end.tv_usec - start.tv_usec));
- FPRINTF(stderr, "Time: %2.2f ms\n", timing/1000.0);
- double flops = 2.0*((unsigned long)niter)*((unsigned long)xdim)
- *((unsigned long)ydim)*((unsigned long)zdim);
- FPRINTF(stderr, "GFlop/s: %.2f\n", flops/timing/1000.0);
- starpu_data_unpartition(C_handle, 0);
- starpu_data_unregister(A_handle);
- starpu_data_unregister(B_handle);
- starpu_data_unregister(C_handle);
-
- if (check)
- check_output();
-
- starpu_helper_cublas_shutdown();
- starpu_shutdown();
- return 0;
- }
|