gpu.js/test/html/test-all.html
2016-02-28 18:01:39 +08:00

40 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>GPU.JS : Test All</title>
<link rel="stylesheet" href="../lib/qunit-1.20.0.css">
<!-- gpu.js scripts -->
<script src="../../src/parser.js"></script>
<script src="../../src/backend/gpu_core.js"></script>
<script src="../../src/gpu.js"></script>
<script src="../../src/backend/gpu_utils.js"></script>
<script src="../../src/backend/functionNode_webgl.js"></script>
<script src="../../src/backend/functionNode.js"></script>
<script src="../../src/backend/functionBuilder.js"></script>
<script src="../../src/backend/mode_gpu.js"></script>
<script src="../../src/backend/mode_cpu.js"></script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="../lib/qunit-1.20.0.js"></script>
<!-- features -->
<script src="../src/features/function_return.js"></script>
<script src="../src/features/sum_AB.js"></script>
<script src="../src/features/mult_AB.js"></script>
<script src="../src/features/if_else.js"></script>
<script src="../src/features/for_loop.js"></script>
<script src="../src/features/addCustomFunction.js"></script>
<script src="../src/features/nestedFunction.js"></script>
<!-- internal -->
<script src="../src/internal/gpu_utils_test.js"></script>
<script src="../src/internal/functionNode_test.js"></script>
<script src="../src/internal/functionBuilder_test.js"></script>
</body>
</html>