| 544 | } |
| 545 | |
| 546 | std::string dnnc::cppCodeGen::writeCustomOperator(opNode &computeNode, |
| 547 | std::vector<node *> &ins, |
| 548 | std::vector<node *> &outs) { |
| 549 | |
| 550 | std::string opCode = getOpCodeStr(computeNode.symbol()); |
| 551 | |
| 552 | std::string code = |
| 553 | _tab + "// operator " + opCode + " is not supported yet.\n"; |
| 554 | code += _tab + "// Please file a enhancement request at \n"; |
| 555 | code += _tab + |
| 556 | "// https://github.com/ai-techsystems/dnnCompiler/issues \n"; |
| 557 | return code; |
| 558 | } |
nothing calls this directly
no test coverage detected