| 67 | template <typename Store> |
| 68 | core::TensorValue tensor_data(Store & store, const assets::TensorData & data) { |
| 69 | return store.make_tensor(data.shape, data.type, data.bytes.data(), data.bytes.size()); |
| 70 | } |
| 71 | |
| 72 | inline std::vector<int64_t> tensor_shape_from_source( |
| 73 | const assets::TensorSource & source, |
| 74 | const std::string & name) { |
no test coverage detected