We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 138b216 commit 8451468Copy full SHA for 8451468
common_with_cwrap.py
@@ -107,7 +107,7 @@ def is_nullable_tensor_arg(arg):
107
for option in declaration['options']:
108
optional_args = []
109
for i, arg in enumerate(option['arguments']):
110
- if 'default' in arg and not is_nullable_tensor_arg(arg):
+ if 'default' in arg:
111
optional_args.append(i)
112
for permutation in product((True, False), repeat=len(optional_args)):
113
option_copy = deepcopy(option)
0 commit comments