annotate example/multiply/cuda/multiply.cu @ 1927:4eefec26e3e2 draft

add file
author Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
date Fri, 31 Jan 2014 07:15:07 +0900
parents
children 67e50779feb4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1927
4eefec26e3e2 add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 extern "C" {
4eefec26e3e2 add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 __global__ void multi(float* A, float* B, float* C) {
4eefec26e3e2 add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 int id = blockIdx.x * blockDim.x + threadIdx.x;
4eefec26e3e2 add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 C[id]=A[id]*B[id];
4eefec26e3e2 add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 }
4eefec26e3e2 add file
Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 }