Publishing 2019 R1 content
[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 // lstm.cpp : GNA LSTM macro layer definition
5 //
6
7 #include "lstm.hpp"
8
9 const char *intel_lstm_projected_layer_name[NUM_LSTM_LAYERS] = {
10     "combined input transform",
11     "combined recurrent transform",
12     "input gate",
13     "forget gate",
14     "cell gate input part 1",
15     "cell gate input part 2",
16     "cell gate output part 1",
17     "cell gate output part 2",
18     "output gate",
19     "hidden gated output",
20     "projected output"
21 };
22
23 const char *intel_lstm_projected_layer_g4_name[NUM_LSTM_G4_LAYERS] = {
24     "combined input transform",
25     "deinterleave",
26     "interleave 1",
27     "interleave 2",
28     "interleave 3",
29     "interleave 4",
30     "combined recurrent transform - 1",
31     "input gate - 1",
32     "forget gate - 1",
33     "cell gate input part 1 - 1",
34     "cell gate input part 2 - 1",
35     "cell gate output part 1 - 1",
36     "cell gate output part 2 - 1",
37     "output gate - 1",
38     "hidden gated output - 1",
39     "projected output - 1",
40     "combined recurrent transform - 2",
41     "input gate - 2",
42     "forget gate - 2",
43     "cell gate input part 1 - 2",
44     "cell gate input part 2 - 2",
45     "cell gate output part 1 - 2",
46     "cell gate output part 2 - 2",
47     "output gate - 2",
48     "hidden gated output - 2",
49     "projected output - 2",
50     "combined recurrent transform - 3",
51     "input gate - 3",
52     "forget gate - 3",
53     "cell gate input part 1 - 3",
54     "cell gate input part 2 - 3",
55     "cell gate output part 1 - 3",
56     "cell gate output part 2 - 3",
57     "output gate - 3",
58     "hidden gated output - 3",
59     "projected output - 3",
60     "combined recurrent transform - 4",
61     "input gate - 4",
62     "forget gate - 4",
63     "cell gate input part 1 - 4",
64     "cell gate input part 2 - 4",
65     "cell gate output part 1 - 4",
66     "cell gate output part 2 - 4",
67     "output gate - 4",
68     "hidden gated output - 4",
69     "projected output - 4",
70     "interleave"
71 };