| 56 | |
| 57 | template <class F> |
| 58 | static void visit_flatten_args(const std::vector<argument>& args, F f) |
| 59 | { |
| 60 | if(needs_flatten(args)) |
| 61 | f(flatten(args)); |
| 62 | else |
| 63 | f(args); |
| 64 | } |
| 65 | |
| 66 | argument |
| 67 | code_object_op::compute(context& ctx, const shape&, const std::vector<argument>& args) const |
no test coverage detected