| 29 | |
| 30 | namespace dnnc { |
| 31 | template <typename T> class Size : public baseOperator<T, T, T> { |
| 32 | // Size attributes |
| 33 | public: |
| 34 | Size(std::string name = "opSize") : baseOperator<T, T, T>(opSize, name) {} |
| 35 | |
| 36 | // bool getAttribute<int>(OPATTR attrName, int& obj) ; |
| 37 | |
| 38 | void compute(void) { |
| 39 | // CHANGE return-type and args |
| 40 | // AND ADD YOUR FUNCTIONAL CODE HERE |
| 41 | } |
| 42 | }; |
| 43 | } // namespace dnnc |
no outgoing calls
no test coverage detected