forked from gpujs/gpu.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic_sum_gpu_AB.html
More file actions
31 lines (28 loc) · 986 Bytes
/
basic_sum_gpu_AB.html
File metadata and controls
31 lines (28 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GPU.JS : Basic Sum GPU AB</title>
<link rel="stylesheet" href="../lib/qunit-1.20.0.css">
<!-- jison -->
<script src="../../lib/jison.js"></script>
<!-- webclgl -->
<script src="../../lib/WebCLGLUtils.class.js"></script>
<script src="../../lib/WebCLGLBuffer.class.js"></script>
<script src="../../lib/WebCLGLBufferItem.class.js"></script>
<script src="../../lib/WebCLGLKernel.class.js"></script>
<script src="../../lib/WebCLGLKernelProgram.class.js"></script>
<script src="../../lib/WebCLGL.class.js"></script>
<!-- gpu.js scripts -->
<script src="../../src/js-fallback.js"></script>
<script src="../../src/js-to-webclgl.js"></script>
<script src="../../src/js-regex.js"></script>
<script src="../../src/gpu.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="../lib/qunit-1.20.0.js"></script>
<script src="../src/basic_sum_AB.js"></script>
</body>
</html>