Home
last modified time | relevance | path

Searched refs:get_var_static (Results 1 – 4 of 4) sorted by relevance

/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/tests/python/relay/
H A Dtest_adt.py1088 take = p.get_var_static("tensor_take", dtype, shape)
1112 concat = p.get_var_static("tensor_concatenate", dtype, shape)
1113 tensor = p.get_var_static("tensor_constructor", dtype, shape)
1141 tensor = p.get_var_static("tensor_constructor", dtype, shape)
1186 tensor = p.get_var_static("tensor_constructor", dtype, shape)
1187 tensor_array = p.get_var_static("tensor_array", dtype, shape)
1222 tensor_array = p.get_var_static("tensor_array", dtype, shape)
1225 tensor = p.get_var_static("tensor_constructor", dtype, shape)
1427 write = p.get_var_static("tensor_array_write", dtype, shape)
1456 write = p.get_var_static("tensor_array_write", dtype, shape)
[all …]
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/python/tvm/relay/frontend/
H A Dtensorflow.py927 tensor_array_constructor = prelude.get_var_static("tensor_array", dtype_str, shape)
960 tensor_array_scatter_func = prelude.get_var_static(
966 unstack_function = prelude.get_var_static(
990 gather_function = prelude.get_var_static(
999 get_data_func = prelude.get_var_static("tensor_get_data", dtype_str, out_shape)
1003 read_func = prelude.get_var_static("tensor_array_read", dtype_str, input_shape)
1081 read_func = prelude.get_var_static("tensor_array_read", dtype_str, input_shape)
1083 get_data_func = prelude.get_var_static("tensor_get_data", dtype_str, input_shape)
1120 tensor_func = prelude.get_var_static("tensor_constructor", dtype_str, value_shape)
1140 concat_func = prelude.get_var_static("tensor_array_concat", dtype_str, input_shape)
[all …]
H A Dpytorch.py69 tensor_create = prelude.get_var_static("tensor_constructor", "float32", shape)
265 concat = prelude.get_var_static("tensor_array_concat", "float32", shape)
270 get_tensor = prelude.get_var_static("tensor_get_data", "float32", concat_shape)
2044 stack = prelude.get_var_static("tensor_array_stack", "float32", shape)
2049 get_tensor = prelude.get_var_static("tensor_get_data", "float32", stacked_shape)
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/python/tvm/relay/
H A Dprelude.py1449 def get_var_static(self, canonical, dtype, shape): member in Prelude