Skip to content

Commit b70e75f

Browse files
jerryzh168facebook-github-bot
authored andcommitted
Enable quantization for wav2letter (#446)
Summary: X-link: pytorch/pytorch#109830 Also added annotation support for conv1d_relu and conv1d in XNNPACKQuantizer, the quantized results still matches fx quant path (didn't quantize conv1d) so tests are not disabled Reviewed By: kimishpatel Differential Revision: D49479546
1 parent c872580 commit b70e75f

File tree

1 file changed

+1
-1
lines changed
  • examples/recipes/xnnpack_optimization

1 file changed

+1
-1
lines changed

examples/recipes/xnnpack_optimization/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class OptimizationOptions(object):
2525
"resnet18": OptimizationOptions(True, True),
2626
"resnet50": OptimizationOptions(True, True),
2727
"vit": OptimizationOptions(False, True),
28-
"w2l": OptimizationOptions(False, True),
28+
"w2l": OptimizationOptions(True, True),
2929
"edsr": OptimizationOptions(True, False),
3030
"mobilebert": OptimizationOptions(True, False),
3131
}

0 commit comments

Comments
 (0)