Home
last modified time | relevance | path

Searched refs:getNodeValueByName (Results 1 – 19 of 19) sorted by relevance

/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/include/glow/Importer/
H A DCommonOperatorLoader.h259 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadRelu()
272 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadPRelu()
307 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in LOAD_UNARY_OP()
323 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadSqrt()
333 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadSqr()
344 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadReciprocal()
384 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadSoftmax()
414 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadLRN()
606 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadSplit()
957 ASSIGN_VALUE_OR_RETURN_ERR(X, getNodeValueByName(op.input(0))); in loadDotProduct()
[all …]
H A DProtobufLoader.h267 Expected<NodeValue> getNodeValueByName(llvm::StringRef name,
370 ASSIGN_VALUE_OR_RETURN_ERR(r, tmpLoader.getNodeValueByName(outputName)); in constantFoldInLoader()
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/lib/Importer/
H A DONNXModelLoader.cpp233 ASSIGN_VALUE_OR_RETURN_ERR(NV, loader.getNodeValueByName(str)); in get()
250 ASSIGN_VALUE_OR_RETURN_ERR(NV, loader.getNodeValueByName(str)); in get()
1276 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadConv1D()
1347 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadConv()
2235 ASSIGN_VALUE_OR_RETURN_ERR(A, getNodeValueByName(op.input(0))); in loadGemm()
2237 ASSIGN_VALUE_OR_RETURN_ERR(B, getNodeValueByName(op.input(1))); in loadGemm()
2793 ASSIGN_VALUE_OR_RETURN_ERR(X, getNodeValueByName(op.input(0))); in loadRNN()
2797 ASSIGN_VALUE_OR_RETURN_ERR(W, getNodeValueByName(op.input(1))); in loadRNN()
2801 ASSIGN_VALUE_OR_RETURN_ERR(R, getNodeValueByName(op.input(2))); in loadRNN()
2919 ASSIGN_VALUE_OR_RETURN_ERR(X, getNodeValueByName(op.input(0))); in loadGRU()
[all …]
H A DCaffe2ModelLoader.cpp318 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadConv()
413 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadConvQuantized()
536 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadLayerNorm()
589 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(i))); in foldOperator()
634 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadConvTranspose()
755 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadOperator()
774 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadOperator()
789 ASSIGN_VALUE_OR_RETURN_ERR(in, getNodeValueByName(op.input(0))); in loadOperator()
1366 ASSIGN_VALUE_OR_RETURN_ERR(X, getNodeValueByName(op.input(0))); in loadOperator()
1367 ASSIGN_VALUE_OR_RETURN_ERR(w, getNodeValueByName(op.input(1))); in loadOperator()
[all …]
H A DProtobufLoader.cpp172 Expected<NodeValue> ProtobufLoader::getNodeValueByName(llvm::StringRef name, in getNodeValueByName() function in glow::ProtobufLoader
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/tests/unittests/
H A DCaffe2ImporterTest.cpp2370 EXIT_ON_ERR(caffe2LD.getNodeValueByName("indices"))); in TEST_F()
2372 EXIT_ON_ERR(caffe2LD.getNodeValueByName("lengths"))); in TEST_F()
2475 EXIT_ON_ERR(caffe2LD.getNodeValueByName("indices"))); in TEST_F()
2477 EXIT_ON_ERR(caffe2LD.getNodeValueByName("lengths"))); in TEST_F()
2571 EXIT_ON_ERR(caffe2LD.getNodeValueByName("indices"))); in testFRWQSLWS()
2573 EXIT_ON_ERR(caffe2LD.getNodeValueByName("lengths"))); in testFRWQSLWS()
2689 EXIT_ON_ERR(caffe2LD.getNodeValueByName("indices"))); in TEST_F()
2691 EXIT_ON_ERR(caffe2LD.getNodeValueByName("lengths"))); in TEST_F()
2785 EXIT_ON_ERR(caffe2LD.getNodeValueByName("indices"))); in TEST_F()
2787 EXIT_ON_ERR(caffe2LD.getNodeValueByName("lengths"))); in TEST_F()
[all …]
H A DGraphTest.cpp169 EXPECT_EQ(F->getNodeValueByName(op1ResName), op1Res); in TEST()
170 EXPECT_EQ(F->getNodeValueByName(op2ResName), op2Res); in TEST()
171 EXPECT_EQ(F->getNodeValueByName(addResName), addRes); in TEST()
172 EXPECT_EQ(F->getNodeValueByName(topValResName), topValRes); in TEST()
173 EXPECT_EQ(F->getNodeValueByName(topIndResName), topIndRes); in TEST()
175 EXPECT_EQ(F->getNodeValueByName("op1"), op1Res); in TEST()
176 EXPECT_EQ(F->getNodeValueByName("op2"), op2Res); in TEST()
177 EXPECT_EQ(F->getNodeValueByName("add:0"), addRes); in TEST()
180 EXPECT_EQ(F->getNodeValueByName(save->getName()).getNode(), nullptr); in TEST()
H A DOnnxImporterTest.cpp158 NV, onnxLD.getNodeValueByName(modelDef.graph().output(0).name())); in checkConstFoldLegalName()
198 NV, onnxLD.getNodeValueByName(modelDef.graph().output(i).name())); in checkConstFoldedOutput()
3396 auto Y_h_nv = EXIT_ON_ERR(onnxLD.getNodeValueByName("Y_h")); in importRNN()
3453 auto Y_h_nv = EXIT_ON_ERR(onnxLD.getNodeValueByName("Y_h")); in importGRU()
3515 auto Y_h_nv = EXIT_ON_ERR(onnxLD.getNodeValueByName("Y_h")); in importLSTM()
3516 auto Y_c_nv = EXIT_ON_ERR(onnxLD.getNodeValueByName("Y_c")); in importLSTM()
4160 ASSIGN_VALUE_OR_FAIL_TEST(mmIn0NV, onnxLD.getNodeValueByName("mm0_in")); in TEST_F()
4163 ASSIGN_VALUE_OR_FAIL_TEST(mmIn1NV, onnxLD.getNodeValueByName("mm1_in")); in TEST_F()
4166 ASSIGN_VALUE_OR_FAIL_TEST(addInNV, onnxLD.getNodeValueByName("add_in")); in TEST_F()
4289 ASSIGN_VALUE_OR_FAIL_TEST(mmIn0NV, onnxLD.getNodeValueByName("mm0_in")); in TEST_F()
[all …]
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/examples/
H A Dlenet-loader.cpp41 EXIT_ON_ERR(loader.getNodeValueByName(inputName))); in main()
H A Dmnist.cpp293 EXIT_ON_ERR(trainingLoader.getNodeValueByName(inputName))); in testMNISTLoadAndTraining()
300 EXIT_ON_ERR(loader.getNodeValueByName(inputName))); in testMNISTLoadAndTraining()
H A Dresnet-verify.cpp45 EXIT_ON_ERR(loader.getNodeValueByName(inputName)));
H A Dtracing-compare.cpp67 EXIT_ON_ERR(loader.getNodeValueByName(inputName))); in loadResnet50Model()
H A Dresnet-runtime.cpp84 EXIT_ON_ERR(loader.getNodeValueByName(inputName))); in loadResnet50Model()
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/tools/loader/
H A DXModelBuilder.cpp150 llvm::cast<Placeholder>(EXIT_ON_ERR(LD->getNodeValueByName(inputName))); in buildNetwork()
H A DTextTranslator.cpp384 EXIT_ON_ERR(LD.getNodeValueByName("encoder_inputs"))); in main()
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/examples/training/resnet50/
H A Dmain.cpp215 EXIT_ON_ERR(loader.getNodeValueByName(inputName))); in main()
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/lib/Quantization/
H A DQuantization.cpp1013 NodeValue nodeOutput = F->getNodeValueByName(nodeOutputName); in generateNodeQuantizationInfos()
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/include/glow/Graph/
H A DGraph.h2045 NodeValue getNodeValueByName(llvm::StringRef name);
/dports/misc/glow/glow-f24d960e3cc80db95ac0bc17b1900dbf60ca044a/lib/Graph/
H A DGraph.cpp4920 NodeValue Function::getNodeValueByName(llvm::StringRef name) { in getNodeValueByName() function in Function