This website works better with JavaScript
Domovská stránka
Prehľadávať
Pomoc
Registrovať
Prihlásiť sa
hk
/
OpenCL_helpers
Pridať medzi pozorované
1
Hviezda
0
Fork
0
Súbory
Issues
0
Pull requesty
0
Strom:
244200c7cd
Branche
Tagy
develop
master
OpenCL_helpers
/
examples
/
simple_kernel
/
function.clc
function.clc
106 B
História
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);
}