summaryrefslogtreecommitdiff
path: root/inference-engine/tests/unit/engines/gna/test_irs.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'inference-engine/tests/unit/engines/gna/test_irs.hpp')
-rw-r--r--inference-engine/tests/unit/engines/gna/test_irs.hpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/inference-engine/tests/unit/engines/gna/test_irs.hpp b/inference-engine/tests/unit/engines/gna/test_irs.hpp
new file mode 100644
index 000000000..c7b4b0c66
--- /dev/null
+++ b/inference-engine/tests/unit/engines/gna/test_irs.hpp
@@ -0,0 +1,43 @@
+// Copyright (C) 2018 Intel Corporation
+// SPDX-License-Identifier: Apache-2.0
+//
+
+#pragma once
+
+#include <string>
+
+namespace GNATestIRs {
+
+std::string FCOnlyModel() ;
+std::string Fc2DOutputModel();
+std::string affineToMemoryModel();
+std::string eltwiseToMemoryModel();
+std::string eltwiseToMemoryModelNoOutput();
+std::string activationAfterSplitModel();
+std::string FCWithPaddingAfterSplitModel();
+std::string SliceModelWithAlignedOutputs();
+std::string FCWithPaddingAfterSliceModel();
+std::string twoFCWithPaddingAfterSliceModel();
+std::string eltwiseSummModel();
+std::string eltwiseMulModel();
+std::string concatModel();
+std::string doubleConcatModel();
+std::string scaleShiftAffineModel();
+std::string clampFollowedByTanhModel();
+std::string eltwiseWithMemoryAndActivationInputModel();
+std::string AffineWith2AffineOutputsModel();
+std::string SigmoidActivationModel();
+std::string TanhActivationModel();
+std::string ReLUActivationModel();
+std::string LeakyReLUActivationModel();
+std::string ClampActivationModel();
+std::string IdentityActivationModel();
+std::string maxpoolAfterRelu();
+std::string TFLeakyReluModel();
+std::string cropWithoutOffsetModel();
+std::string cropWithAlignedOffsetModel();
+std::string cropWithOffsetModel();
+std::string cropWithMaxOffsetModel();
+std::string cropWithOffsetExtendedModel();
+std::string copyModel();
+} // namespace GNATestIRs