You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In #133 Missing Operator was found to be incorrectly using dict key, due to missing Namespace term. utensor_cgen/backend/utensor/code_generator/rearch/_operators/_impls.py
class_MissingOperator(_Operator):
op_type="_MissingOperator"defget_declare_snippet(self, op_var_name, with_const_params=True):
returnNonedefget_eval_snippet(self, op_var_name, op_info, tensor_var_map):
returnMissingOpEvalSnippet(op_info, op_var_name, tensor_var_map)
defget_construct_snippet(self, op_var_name):
returnNoneOperatorFactory._operators[_MissingOperator.op_type] =_MissingOperator# <== key should be a 2 term tensor, (namespace, op_type)
The text was updated successfully, but these errors were encountered:
That was on purpose, since _MissinOperator is a special operator which is used for printing out information only.
Anyway, it's fixed on develop.
Closing issue.
In #133 Missing Operator was found to be incorrectly using dict key, due to missing Namespace term.
utensor_cgen/backend/utensor/code_generator/rearch/_operators/_impls.py
The text was updated successfully, but these errors were encountered: