Publishing 2019 R1.1 content and Myriad plugin sources (#162)
[platform/upstream/dldt.git] / inference-engine / src / gna_plugin / lstm.cpp
1 // Copyright (C) 2018-2019 Intel Corporation
2 // SPDX-License-Identifier: Apache-2.0
3 //
4
5 #include "lstm.hpp"
6
7 const char *intel_lstm_projected_layer_name[NUM_LSTM_LAYERS] = {
8     "combined input transform",
9     "combined recurrent transform",
10     "input gate",
11     "forget gate",
12     "cell gate input part 1",
13     "cell gate input part 2",
14     "cell gate output part 1",
15     "cell gate output part 2",
16     "output gate",
17     "hidden gated output",
18     "projected output"
19 };
20
21 const char *intel_lstm_projected_layer_g4_name[NUM_LSTM_G4_LAYERS] = {
22     "combined input transform",
23     "deinterleave",
24     "interleave 1",
25     "interleave 2",
26     "interleave 3",
27     "interleave 4",
28     "combined recurrent transform - 1",
29     "input gate - 1",
30     "forget gate - 1",
31     "cell gate input part 1 - 1",
32     "cell gate input part 2 - 1",
33     "cell gate output part 1 - 1",
34     "cell gate output part 2 - 1",
35     "output gate - 1",
36     "hidden gated output - 1",
37     "projected output - 1",
38     "combined recurrent transform - 2",
39     "input gate - 2",
40     "forget gate - 2",
41     "cell gate input part 1 - 2",
42     "cell gate input part 2 - 2",
43     "cell gate output part 1 - 2",
44     "cell gate output part 2 - 2",
45     "output gate - 2",
46     "hidden gated output - 2",
47     "projected output - 2",
48     "combined recurrent transform - 3",
49     "input gate - 3",
50     "forget gate - 3",
51     "cell gate input part 1 - 3",
52     "cell gate input part 2 - 3",
53     "cell gate output part 1 - 3",
54     "cell gate output part 2 - 3",
55     "output gate - 3",
56     "hidden gated output - 3",
57     "projected output - 3",
58     "combined recurrent transform - 4",
59     "input gate - 4",
60     "forget gate - 4",
61     "cell gate input part 1 - 4",
62     "cell gate input part 2 - 4",
63     "cell gate output part 1 - 4",
64     "cell gate output part 2 - 4",
65     "output gate - 4",
66     "hidden gated output - 4",
67     "projected output - 4",
68     "interleave"
69 };