aboutsummaryrefslogtreecommitdiff
path: root/tests/LstmCommon.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/LstmCommon.hpp')
-rwxr-xr-xtests/LstmCommon.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/LstmCommon.hpp b/tests/LstmCommon.hpp
index 31c4d041c1..0876d263ed 100755
--- a/tests/LstmCommon.hpp
+++ b/tests/LstmCommon.hpp
@@ -13,16 +13,16 @@ namespace
struct LstmInput
{
LstmInput(const std::vector<float>& inputSeq,
- const std::vector<float>& stateC,
- const std::vector<float>& stateH)
+ const std::vector<float>& stateH,
+ const std::vector<float>& stateC)
: m_InputSeq(inputSeq)
- , m_StateC(stateC)
, m_StateH(stateH)
+ , m_StateC(stateC)
{}
std::vector<float> m_InputSeq;
- std::vector<float> m_StateC;
std::vector<float> m_StateH;
+ std::vector<float> m_StateC;
};
using LstmInputs = std::pair<std::string, std::vector<LstmInput>>;