| 117 | } |
| 118 | |
| 119 | bool RefArgMinOps::Run(Node* node) |
| 120 | { |
| 121 | Tensor* input_tensor = node->GetInputTensor(0); |
| 122 | void* input_data = ( void* )get_tensor_mem(input_tensor); |
| 123 | Tensor* output_tensor = node->GetOutputTensor(0); |
| 124 | void* out_data = ( void* )get_tensor_mem(output_tensor); |
| 125 | node->DumpNode(); |
| 126 | int ret = kernel_run(input_data, out_data, &op_param); |
| 127 | if(ret < 0) |
| 128 | return false; |
| 129 | |
| 130 | return true; |
| 131 | } |
| 132 | |
| 133 | bool RefArgMinOps::Postrun(Node* node) |
| 134 | { |
nothing calls this directly
no test coverage detected