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 2d7c770 commit f13ea81Copy full SHA for f13ea81
userbenchmark/dynamo/dynamobench/_dynamo/utils.py
@@ -879,16 +879,6 @@ def check_numpy_ndarray_args(args, kwargs):
879
)
880
881
882
-def specialize_args_kwargs(tx, args, kwargs):
883
- specialized_args = []
884
- specialized_kwargs = {}
885
- for x in args:
886
- specialized_args.append(x.as_specialized(tx))
887
- for k, v in kwargs.items():
888
- specialized_kwargs.update({k: v.as_specialized(tx)})
889
- return specialized_args, specialized_kwargs
890
-
891
892
dict_values = type(dict().values())
893
odict_values = type(collections.OrderedDict().values())
894
tuple_iterator = type(iter(tuple()))
0 commit comments