Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8f6d3da
Upgrade typescript to 4.4.2
mattsoulanille Aug 27, 2021
9dc3322
[core] Upgrade typescript to 4.4.2
mattsoulanille Aug 27, 2021
24e9353
Install tslib
mattsoulanille Aug 27, 2021
ea630b5
[webgl] Upgrade typescript to 4.4.2
mattsoulanille Aug 27, 2021
add0110
[wasm] Upgrade typescript to 4.4.2
mattsoulanille Aug 27, 2021
973cb6b
[layers] Update typescript to 4.4.2
mattsoulanille Aug 27, 2021
3d95906
[data] Update typescript to 4.4.2
mattsoulanille Aug 30, 2021
f482727
[tfjs-automl] Update typescript to 4.4.2
mattsoulanille Aug 30, 2021
d6cc93a
[inference] Upgrade TypeScript to 4.4.2
mattsoulanille Aug 31, 2021
68b6898
[cpu] Update package.json with ts 4.4.2
mattsoulanille Aug 31, 2021
76fb265
[converter] Fix executor tests to work with ts 4
mattsoulanille Aug 31, 2021
a2ca980
[converter] Update kenrels_to_ops to work with new mocked tfOps
mattsoulanille Nov 3, 2021
ec8a585
[converter] Fix graph model tests by using spyOnAllFunctions
mattsoulanille Nov 3, 2021
e695e22
[converter] Fix executeOp tests by using a tfc.tidy spy
mattsoulanille Nov 3, 2021
1cf25af
Fix lint errors
mattsoulanille Nov 3, 2021
ea8fb41
[union] Upgrade typescript to 4.4.2
mattsoulanille Nov 4, 2021
a70df89
[node] Upgrade typescript to 4.4.2
mattsoulanille Nov 4, 2021
db2c0a2
[tflite] Upgrade typescript to 4.4.2
mattsoulanille Nov 4, 2021
a3dce77
[e2e] Upgrade typescript to 4.4.2
mattsoulanille Nov 4, 2021
2eee6ae
[vis] Set sort to null instead of false
mattsoulanille Nov 10, 2021
29e8a79
fixup! [converter] Fix executor tests to work with ts 4
mattsoulanille Nov 10, 2021
1722513
fixup! [data] Update typescript to 4.4.2
mattsoulanille Nov 11, 2021
cdfcc35
[converter] Fix Cumprod and ImageProjectiveTransformV3 tests
mattsoulanille Apr 22, 2022
295fac6
[react-native] Upgrade typescript to 4.4.2
mattsoulanille Apr 23, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! [converter] Fix executor tests to work with ts 4
  • Loading branch information
mattsoulanille committed Apr 22, 2022
commit 29e8a793ef92abd3fcb7d211fc57b89bf5357b88
3 changes: 2 additions & 1 deletion tfjs-converter/src/operations/executors/dynamic_executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import * as tfOps from '@tensorflow/tfjs-core/dist/ops/ops_for_converter';

import {NamedTensorsMap} from '../../data/types';
import {ExecutionContext} from '../../executor/execution_context';
import { ResourceManager } from '../../executor/resource_manager';
import {InternalOpAsyncExecutor, Node} from '../types';

import {getParamValue} from './utils';
Expand Down Expand Up @@ -50,7 +51,7 @@ function nmsParams(

export const executeOp: InternalOpAsyncExecutor = async(
node: Node, tensorMap: NamedTensorsMap,
context: ExecutionContext, _resourceManager,
context: ExecutionContext, resourceManager: ResourceManager,
ops = tfOps): Promise<Tensor[]> => {
switch (node.op) {
case 'NonMaxSuppressionV5': {
Expand Down