| 129 | } |
| 130 | |
| 131 | bool set_tensor_address(IExecutionContext& self, char const* tensor_name, size_t memory) |
| 132 | { |
| 133 | return self.setTensorAddress(tensor_name, reinterpret_cast<void*>(memory)); |
| 134 | } |
| 135 | |
| 136 | size_t get_tensor_address(IExecutionContext& self, char const* tensor_name) |
| 137 | { |
nothing calls this directly
no test coverage detected