Home
last modified time | relevance | path

Searched refs:RemapVectorType (Results 1 – 3 of 3) sorted by relevance

/packages/modules/NeuralNetworks/runtime/test/
DTestPartitioning.cpp996 using RemapVectorType = ExecutionStep::RemapVectorType; typedef in __anon27781e9a0111::PartitioningTest
1537 std::shared_ptr<Device> device, const RemapVectorType& modelInputs, in compare()
1538 const RemapVectorType& modelOutputs, const RemapVectorType& tempsAsStepModelInputs, in compare()
1540 const RemapVectorType& outputsAsStepModelInputs, in compare()
1565 const RemapVectorType& step, RemapVectorType model) { in compareRemapVectors()
1567 [&inputsAndOutputsModelToStep](const RemapVectorType::value_type& val) { in compareRemapVectors()
1648 RemapVectorType{{opnd0, b0Opnd0}, {opnd1, b0Opnd1}}, // modelInputs in TEST_F()
1649 RemapVectorType{}, // modelOutputs in TEST_F()
1650 RemapVectorType{}, // tempsAsStepModelInputs in TEST_F()
1652 RemapVectorType{}, // outputsAsStepModelInputs in TEST_F()
[all …]
/packages/modules/NeuralNetworks/runtime/
DExecutionPlan.h233 typedef std::vector<std::pair<uint32_t, uint32_t>> RemapVectorType; typedef
245 const RemapVectorType& getStepModelInputs() const { return mStepModelInputs; } in getStepModelInputs()
246 const RemapVectorType& getStepModelOutputs() const { return mStepModelOutputs; } in getStepModelOutputs()
247 const RemapVectorType& getModelInputs() const { return mModelInputs; } in getModelInputs()
248 const RemapVectorType& getModelOutputs() const { return mModelOutputs; } in getModelOutputs()
249 const RemapVectorType& getTempsAsStepModelInputs() const { return mTempsAsStepModelInputs; } in getTempsAsStepModelInputs()
253 const RemapVectorType& getOutputsAsStepModelInputs() const { return mOutputsAsStepModelInputs; } in getOutputsAsStepModelInputs()
340 RemapVectorType mStepModelInputs;
352 RemapVectorType mStepModelOutputs;
355 RemapVectorType mModelInputs;
[all …]
DExecutionPlan.cpp708 auto logRemapVector = [&logRemapEntry](const char* name, const RemapVectorType& map) { in logStepModel()