| 263 | } |
| 264 | |
| 265 | std::vector<int64_t> normalize_axes(const std::vector<int64_t>& axes, |
| 266 | const shape& input_shape, |
| 267 | const value& attr_val, |
| 268 | const std::string& prefix) |
| 269 | { |
| 270 | return tune_attribute(axes, {}, attr_val, input_shape, [&] { return prefix; }); |
| 271 | } |
| 272 | |
| 273 | std::vector<int64_t> normalize_indices(const std::vector<int64_t>& indices, |
| 274 | const std::vector<int64_t>& axes, |
no test coverage detected