UNPKG

9.25 kBJavaScriptView Raw
1"use strict";
2/**
3 * @license
4 * Copyright 2018 Google LLC. All Rights Reserved.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 * =============================================================================
17 */
18var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
19 return new (P || (P = Promise))(function (resolve, reject) {
20 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
21 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
22 function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
23 step((generator = generator.apply(thisArg, _arguments || [])).next());
24 });
25};
26var __generator = (this && this.__generator) || function (thisArg, body) {
27 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
28 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
29 function verb(n) { return function (v) { return step([n, v]); }; }
30 function step(op) {
31 if (f) throw new TypeError("Generator is already executing.");
32 while (_) try {
33 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
34 if (y = 0, t) op = [op[0] & 2, t.value];
35 switch (op[0]) {
36 case 0: case 1: t = op; break;
37 case 4: _.label++; return { value: op[1], done: false };
38 case 5: _.label++; y = op[1]; op = [0]; continue;
39 case 7: op = _.ops.pop(); _.trys.pop(); continue;
40 default:
41 if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
42 if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
43 if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
44 if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
45 if (t[2]) _.ops.pop();
46 _.trys.pop(); continue;
47 }
48 op = body.call(thisArg, _);
49 } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
50 if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
51 }
52};
53var _this = this;
54Object.defineProperty(exports, "__esModule", { value: true });
55var tf = require("@tensorflow/tfjs");
56// tslint:disable-next-line: no-imports-from-dist
57var jasmine_util_1 = require("@tensorflow/tfjs-core/dist/jasmine_util");
58var nodejs_kernel_backend_1 = require("./nodejs_kernel_backend");
59describe('delayed upload', function () {
60 it('should handle data before op execution', function () { return __awaiter(_this, void 0, void 0, function () {
61 var t, _a, _b, r, _c, _d;
62 return __generator(this, function (_e) {
63 switch (_e.label) {
64 case 0:
65 t = tf.tensor1d([1, 2, 3]);
66 _b = (_a = tf.test_util).expectArraysClose;
67 return [4 /*yield*/, t.data()];
68 case 1:
69 _b.apply(_a, [_e.sent(), [1, 2, 3]]);
70 r = t.add(tf.tensor1d([4, 5, 6]));
71 _d = (_c = tf.test_util).expectArraysClose;
72 return [4 /*yield*/, r.data()];
73 case 2:
74 _d.apply(_c, [_e.sent(), [5, 7, 9]]);
75 return [2 /*return*/];
76 }
77 });
78 }); });
79 it('Should not cache tensors in the tensor map for device support. ', function () {
80 var logits = tf.tensor1d([1, 2, 3]);
81 var softmaxLogits = tf.softmax(logits);
82 var data = softmaxLogits.dataSync();
83 expect(softmaxLogits.dataSync()[0]).toEqual(data[0]);
84 expect(softmaxLogits.dataSync()[1]).toEqual(data[1]);
85 expect(softmaxLogits.dataSync()[2]).toEqual(data[2]);
86 });
87});
88describe('type casting', function () {
89 it('exp support int32', function () {
90 tf.exp(tf.scalar(2, 'int32'));
91 });
92});
93describe('conv3d dilations', function () {
94 it('CPU should throw error on dilations >1', function () {
95 var input = tf.ones([1, 2, 2, 2, 1]);
96 var filter = tf.ones([1, 1, 1, 1, 1]);
97 expect(function () {
98 tf.conv3d(input, filter, 1, 'same', 'NDHWC', [2, 2, 2]);
99 }).toThrowError();
100 });
101 it('GPU should handle dilations >1', function () {
102 // This test can only run locally with CUDA bindings and GPU package
103 // installed.
104 if (tf.backend().isUsingGpuDevice) {
105 var input = tf.ones([1, 2, 2, 2, 1]);
106 var filter = tf.ones([1, 1, 1, 1, 1]);
107 tf.conv3d(input, filter, 1, 'same', 'NDHWC', [2, 2, 2]);
108 }
109 });
110});
111describe('Exposes Backend for internal Op execution.', function () {
112 it('Provides the Node backend over a function', function () {
113 var backend = nodejs_kernel_backend_1.nodeBackend();
114 expect(backend instanceof nodejs_kernel_backend_1.NodeJSKernelBackend).toBeTruthy();
115 });
116 it('Provides internal access to the binding', function () {
117 expect(nodejs_kernel_backend_1.nodeBackend().binding).toBeDefined();
118 });
119 it('throw error if backend is not tensorflow', function (done) { return __awaiter(_this, void 0, void 0, function () {
120 var testBackend_1;
121 return __generator(this, function (_a) {
122 try {
123 testBackend_1 = new jasmine_util_1.TestKernelBackend();
124 tf.registerBackend('fake', function () { return testBackend_1; });
125 tf.setBackend('fake');
126 nodejs_kernel_backend_1.ensureTensorflowBackend();
127 done.fail();
128 }
129 catch (err) {
130 expect(err.message)
131 .toBe('Expect the current backend to be "tensorflow", but got "fake"');
132 tf.setBackend('tensorflow');
133 done();
134 }
135 return [2 /*return*/];
136 });
137 }); });
138});
139describe('getTFDType()', function () {
140 var binding = nodejs_kernel_backend_1.nodeBackend().binding;
141 it('handles float32', function () {
142 expect(nodejs_kernel_backend_1.getTFDType('float32')).toBe(binding.TF_FLOAT);
143 });
144 it('handles int32', function () {
145 expect(nodejs_kernel_backend_1.getTFDType('int32')).toBe(binding.TF_INT32);
146 });
147 it('handles bool', function () {
148 expect(nodejs_kernel_backend_1.getTFDType('bool')).toBe(binding.TF_BOOL);
149 });
150 it('handles unknown types', function () {
151 expect(function () { return nodejs_kernel_backend_1.getTFDType(null); }).toThrowError();
152 });
153});
154describe('createTypeOpAttr()', function () {
155 var binding = nodejs_kernel_backend_1.nodeBackend().binding;
156 it('Creates a valid type attribute', function () {
157 var attr = nodejs_kernel_backend_1.createTensorsTypeOpAttr('foo', 'float32');
158 expect(attr.name).toBe('foo');
159 expect(attr.type).toBe(binding.TF_ATTR_TYPE);
160 expect(attr.value).toBe(binding.TF_FLOAT);
161 });
162 it('handles unknown dtypes', function () {
163 expect(function () { return nodejs_kernel_backend_1.createTensorsTypeOpAttr('foo', null); }).toThrowError();
164 });
165});
166describe('Returns TFEOpAttr for a Tensor or list of Tensors', function () {
167 var binding = nodejs_kernel_backend_1.nodeBackend().binding;
168 it('handles a single Tensor', function () {
169 var result = nodejs_kernel_backend_1.createTensorsTypeOpAttr('T', tf.scalar(13, 'float32'));
170 expect(result.name).toBe('T');
171 expect(result.type).toBe(binding.TF_ATTR_TYPE);
172 expect(result.value).toBe(binding.TF_FLOAT);
173 });
174 it('handles a list of Tensors', function () {
175 var tensors = [tf.scalar(1, 'int32'), tf.scalar(20.1, 'float32')];
176 var result = nodejs_kernel_backend_1.createTensorsTypeOpAttr('T', tensors);
177 expect(result.name).toBe('T');
178 expect(result.type).toBe(binding.TF_ATTR_TYPE);
179 expect(result.value).toBe(binding.TF_INT32);
180 });
181 it('handles null', function () {
182 expect(function () { return nodejs_kernel_backend_1.createTensorsTypeOpAttr('T', null); }).toThrowError();
183 });
184 it('handles list of null', function () {
185 var inputs = [null, null];
186 expect(function () { return nodejs_kernel_backend_1.createTensorsTypeOpAttr('T', inputs); }).toThrowError();
187 });
188});