This website works better with JavaScript
홈
탐색
도움말
가입하기
로그인
hk
/
OpenCL_helpers
Watch
1
Star
0
포크
0
파일
이슈
0
풀 리퀘스트
0
트리:
857eb1bd9d
브랜치
태그
develop
master
OpenCL_helpers
/
examples
/
simple_kernel
/
function.clc
function.clc
106 B
히스토리
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);
}