|
| 1 | +<!-- Copyright 2020 Google LLC. All Rights Reserved. |
| 2 | +
|
| 3 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +you may not use this file except in compliance with the License. |
| 5 | +You may obtain a copy of the License at |
| 6 | +
|
| 7 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +
|
| 9 | +Unless required by applicable law or agreed to in writing, software |
| 10 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +See the License for the specific language governing permissions and |
| 13 | +limitations under the License. |
| 14 | +==============================================================================--> |
| 15 | + |
| 16 | +<!DOCTYPE html> |
| 17 | +<html> |
| 18 | +<head> |
| 19 | + <meta charset="utf-8"> |
| 20 | + <title>Jasmine Test</title> |
| 21 | + |
| 22 | + <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.5.0/jasmine.css"> |
| 23 | + |
| 24 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.5.0/jasmine.js"></script> |
| 25 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.5.0/jasmine-html.js"></script> |
| 26 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.5.0/boot.js"></script> |
| 27 | + |
| 28 | + <script src="https://unpkg.com/@tensorflow/tfjs-core@latest/dist/tf-core.js"></script> |
| 29 | + <script src="https://unpkg.com/@tensorflow/tfjs-backend-cpu@latest/dist/tf-backend-cpu.js"></script> |
| 30 | + <script src="https://unpkg.com/@tensorflow/tfjs-backend-webgl@latest/dist/tf-backend-webgl.js"></script> |
| 31 | + <script src="https://unpkg.com/@tensorflow/tfjs-layers@latest/dist/tf-layers.js"></script> |
| 32 | + <script src="https://unpkg.com/@tensorflow/tfjs-converter@latest/dist/tf-converter.js"></script> |
| 33 | + <script src="https://unpkg.com/@tensorflow/tfjs-backend-wasm@latest/dist/tf-backend-wasm.js"></script> |
| 34 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/dat-gui/0.7.7/dat.gui.min.js"></script> |
| 35 | + |
| 36 | + <script src="../benchmark_util.js"></script> |
| 37 | + |
| 38 | + <!-- include source files here... --> |
| 39 | + <script src="./index.js"></script> |
| 40 | + |
| 41 | + <!-- include spec files here... --> |
| 42 | + <script src="./index_test.js"></script> |
| 43 | + |
| 44 | +</head> |
| 45 | + |
| 46 | +<body> |
| 47 | +</body> |
| 48 | +</html> |
0 commit comments