Mercurial > hg > Game > Cerium
view example/add/opencl/add.cl @ 1637:a0014faececa draft
fix conflict set cpu
author | Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 18 Jun 2013 13:18:37 +0900 |
parents | 096412ad80fb |
children |
line wrap: on
line source
__kernel void add(__global const float *A, __global const float *B, __global float *C) { *C=*A+*B; }