File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 264
264
"ElementwiseDivScalarRoundingModeTruncStaticModule_basic" ,
265
265
"ElementwiseDivScalarRoundingModeFloorIntStaticModule_basic" ,
266
266
"ElementwiseDivScalarRoundingModeTruncIntStaticModule_basic" ,
267
+
268
+ # ERROR: 'torch.aten.mul.Tensor' op operand #1 must be Any Torch tensor type, but got '!torch.int'
267
269
"AdaptiveAvgPool1dStaticLargerOutput_basic" ,
268
270
"AdaptiveAvgPool1dGeneralDynamic_basic" ,
269
271
"AdaptiveAvgPool1dGeneralDynamicNoBatches_basic" ,
276
278
"TensorFloatModule_basic" ,
277
279
"TensorIntModule_basic" ,
278
280
279
- # ERROR: Exception: Unsupported: missing default value for argument 0 in schema for aten.randn.generator
280
- "RandnGeneratorF64Module_basic" ,
281
- "RandnGeneratorModule_basic" ,
282
-
283
281
# START tests failing due to: complex floating point ops
284
282
# END tests failing due to: complex floating point ops
285
283
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ def _check_meta_val(node):
78
78
assert len (node .args ) < len (node .target ._schema .arguments )
79
79
for i , argument in enumerate (
80
80
node .target ._schema .arguments [len (node .args ):]):
81
- if not argument .has_default_value ():
81
+ if not argument .has_default_value () and argument . name not in node . kwargs :
82
82
raise Exception (
83
83
f"Unsupported: missing default value for argument { i } in schema for { node .target } "
84
84
)
You can’t perform that action at this time.
0 commit comments