view src/test/multiply.cu @ 304:9755206813cb

helper_string.h for ANSI C
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 14 Feb 2017 11:36:41 +0900
parents 609bf62768b9
children
line wrap: on
line source

extern "C" {
    __global__ void multiply(float* A, float* B, float* C) {
//        printf("%d %d\n",i[0],i[1]);
        int index = blockIdx.x * blockDim.x + threadIdx.x;
        C[index] = A[index] * B[0];
    }

}