MCPcopy Create free account
hub / github.com/ai-techsystems/deepC / writeCustomOperator

Method writeCustomOperator

src/codegen/cppCodeGen.cpp:546–558  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

544}
545
546std::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}

Callers

nothing calls this directly

Calls 2

getOpCodeStrFunction · 0.85
symbolMethod · 0.45

Tested by

no test coverage detected