File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 17
17
make_opsetid ,
18
18
make_tensor_value_info ,
19
19
)
20
+ from onnx .reference .op_run import to_array_extended
20
21
from onnx .numpy_helper import from_array , to_array
21
22
from onnx .backend .base import Device , DeviceType
22
23
from onnx_array_api .reference import ExtendedReferenceEvaluator
24
+ from onnx_array_api .light_api .make_helper import make_node_extended
23
25
from onnx_array_api .light_api import translate
24
26
from onnx_array_api .plotting .text_plot import onnx_simple_text_plot
25
27
@@ -85,13 +87,15 @@ def run(
85
87
locs = {
86
88
"np" : numpy ,
87
89
"to_array" : to_array ,
90
+ "to_array_extended" : to_array_extended ,
88
91
"from_array" : from_array ,
89
92
"TensorProto" : TensorProto ,
90
93
"make_function" : make_function ,
91
94
"make_opsetid" : make_opsetid ,
92
95
"make_model" : make_model ,
93
96
"make_graph" : make_graph ,
94
97
"make_node" : make_node ,
98
+ "make_node_extended" : make_node_extended ,
95
99
"make_tensor_value_info" : make_tensor_value_info ,
96
100
}
97
101
globs = locs .copy ()
You can’t perform that action at this time.
0 commit comments