| 417 | |
| 418 | template <class T> |
| 419 | auto finalize_op( |
| 420 | rank<1>, T& x, context& ctx, const shape& output_shape, const std::vector<shape>& input) |
| 421 | -> decltype(x.finalize(auto_any_cast(ctx), output_shape, input), void()) |
| 422 | { |
| 423 | x.finalize(auto_any_cast(ctx), output_shape, input); |
| 424 | } |
| 425 | |
| 426 | template <class T> |
| 427 | void finalize_op(rank<0>, T&, context&, const shape&, const std::vector<shape>&) |
nothing calls this directly
no test coverage detected