Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/FBGEMM.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/FP16Test.cc')
-rw-r--r--test/FP16Test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/FP16Test.cc b/test/FP16Test.cc
index c346049..b5d8763 100644
--- a/test/FP16Test.cc
+++ b/test/FP16Test.cc
@@ -18,7 +18,7 @@
#endif
using namespace std;
-using namespace fbgemm2;
+using namespace fbgemm;
namespace {
// The template parameter is transpose of A and B
@@ -75,7 +75,7 @@ TEST_P(FBGemmFP16Test, Test) {
aligned_vector<float> A(m * k, 0.f);
aligned_vector<float> B(k * n, 0.f);
- aligned_vector<float> C(m * n, 0.f);
+ aligned_vector<float> C(m * n, NAN);
// initialize with small numbers
randFill(A, 0, 4);