| 455 | |
| 456 | template <class T> |
| 457 | auto compile_op( |
| 458 | rank<1>, T& x, context& ctx, const shape& output_shape, const std::vector<shape>& input) |
| 459 | -> decltype(x.compile(auto_any_cast(ctx), output_shape, input)) |
| 460 | { |
| 461 | return x.compile(auto_any_cast(ctx), output_shape, input); |
| 462 | } |
| 463 | |
| 464 | template <class T> |
| 465 | value compile_op(rank<0>, T&, context&, const shape&, const std::vector<shape>&) |
no test coverage detected