This website works better with JavaScript
Home
Explore
Help
Register
Sign In
hk
/
OpenCL_helpers
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Tree:
521e131d5b
Branches
Tags
develop
master
OpenCL_helpers
/
examples
/
simple_kernel
/
function.clc
function.clc
106 B
History
Raw
1
2
3
4
5
6
7
#include <function.clh>
float function(float a, float b) {
float r=0.0f;
r=a*b;
return(r);
}