| 489 | } |
| 490 | |
| 491 | void SetConstTensorFileLocation(StaticTensor* tensor, int offset, int file_size) |
| 492 | { |
| 493 | StaticConstTensor* const_tensor = dynamic_cast<StaticConstTensor*>(tensor); |
| 494 | |
| 495 | const_tensor->file_offset = offset; |
| 496 | const_tensor->file_size = file_size; |
| 497 | } |
| 498 | |
| 499 | const std::string& GetTensorName(StaticTensor* tensor) |
| 500 | { |
no outgoing calls
no test coverage detected