forked from gpujs/gpu.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-all.html
More file actions
39 lines (35 loc) · 1.44 KB
/
test-all.html
File metadata and controls
39 lines (35 loc) · 1.44 KB
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
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GPU.JS : Test All</title>
<link rel="stylesheet" href="../../node_modules/qunitjs/qunit/qunit.css">
<!-- gpu.js scripts -->
<script src="../../bin/gpu.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="../../node_modules/qunitjs/qunit/qunit.js"></script>
<script src="../../node_modules/qunit-assert-close/qunit-assert-close.js"></script>
<!-- features -->
<script src="../src/features/add-custom-function.js"></script>
<script src="../src/features/combine-kernels.js"></script>
<script src="../src/features/create-kernels.js"></script>
<script src="../src/features/for-loop.js"></script>
<script src="../src/features/function-return.js"></script>
<script src="../src/features/get-canvas.js"></script>
<script src="../src/features/if-else.js"></script>
<script src="../src/features/mult-ab.js"></script>
<script src="../src/features/nested-function.js"></script>
<script src="../src/features/promise-api.js"></script>
<script src="../src/features/sum-ab.js"></script>
<!-- internal -->
<script src="../src/internal/function-builder.js"></script>
<script src="../src/internal/function-node.js"></script>
<script src="../src/internal/utils.js"></script>
<!-- bug issues -->
<script src="../src/issues/31-nested-var-declare-test.js"></script>
<script src="../src/issues/91-create-kernels-array.js"></script>
</body>
</html>