| 12 | namespace { |
| 13 | |
| 14 | void require_positive(int64_t value, const char * name) { |
| 15 | if (value <= 0) { |
| 16 | throw std::runtime_error(std::string(name) + " must be positive"); |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | core::TensorValue repeat_like( |
| 21 | core::ModuleBuildContext & ctx, |
no test coverage detected