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

Method modelInputs

src/codegen/cppCodeGen.cpp:76–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74}
75
76std::vector<dnnc::ioNode *> dnnc::cppCodeGen::modelInputs() {
77 std::vector<ioNode *> ins;
78 for (ioNode *term : _graph.inputs())
79 if (paramFile(term->name()).empty())
80 ins.push_back(term);
81 return ins;
82}
83
84// \brief get parametre file, given term/param name
85std::string dnnc::cppCodeGen::paramFile(std::string param_name) {

Callers

nothing calls this directly

Calls 4

inputsMethod · 0.45
emptyMethod · 0.45
nameMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected