Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable fusedConv2d's NCHW bacth tests for node and WebGPU backends #6425

Merged
merged 1 commit into from
May 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions tfjs-backend-webgpu/src/setup_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,11 @@ const TEST_FILTERS: TestFilter[] = [
excludes: [
'gradient x=[2,3,3,1] f=[2,2,1,1] s=1 p=0', // conv2dDerInput not yet
// implemented
'backProp', // Conv2DBackpropFilter not yet
// implemented
'backProp', // Conv2DBackpropFilter not yet
// implemented
'basic in NCHW', // NCHW format is not yet supported
'im2row in NCHW',
'batch in NCHW',
]
},
{
Expand Down
1 change: 1 addition & 0 deletions tfjs-node/src/run_tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ const IGNORE_LIST: string[] = [
'conv2dTranspose test-tensorflow {} gradient input=[1,3,3,1] f=[2,2,2,1] s=[1,1] p=explicit',
'fused conv2d test-tensorflow {} basic in NCHW',
'fused conv2d test-tensorflow {} im2row in NCHW',
'fused conv2d test-tensorflow {} batch in NCHW',
'maxPoolWithArgmax',
'rotate',
// FIXME: unique NaN-handling is inconsistent between TFJS and TFPY
Expand Down