This website works better with JavaScript
Accueil
Explorer
Aide
S'inscrire
Connexion
hk
/
OpenCL_helpers
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Aborescence:
7b91770a03
Branches
Tags
develop
master
OpenCL_helpers
/
examples
/
simple_kernel
/
function.clc
function.clc
106 B
Historique
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);
}