| 20 | class UnstackMapper : public Mapper { |
| 21 | public: |
| 22 | UnstackMapper(const PaddleParser& p, |
| 23 | OnnxHelper* helper, |
| 24 | int64_t block_id, |
| 25 | int64_t op_id) |
| 26 | : Mapper(p, helper, block_id, op_id) { |
| 27 | GetAttr("axis", &axis_); |
| 28 | } |
| 29 | UnstackMapper(const PaddlePirParser& p, OnnxHelper* helper, int64_t i, bool c) |
| 30 | : Mapper(p, helper, i, c) { |
| 31 | GetAttr("axis", &axis_); |
nothing calls this directly
no outgoing calls
no test coverage detected