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:
authorJianyu Huang <jianyuhuang@fb.com>2018-11-08 22:09:04 +0300
committerJianyu Huang <jianyuhuang@fb.com>2018-11-08 22:09:04 +0300
commit428a0b6cede232eb5c4e9c3bbd8e9d74d8e34500 (patch)
tree8597c3316e00e00fa5d0fc8939c9ae5c518f767a /bench/I8SpmdmBenchmark.cc
parentd90e2e1659f9f991319d05bfc58640aeafa733aa (diff)
Sync with internal copy: Asymmetric padding; fbgemm2 -> fbgemm
Diffstat (limited to 'bench/I8SpmdmBenchmark.cc')
-rw-r--r--bench/I8SpmdmBenchmark.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/I8SpmdmBenchmark.cc b/bench/I8SpmdmBenchmark.cc
index f97d152..d361bb5 100644
--- a/bench/I8SpmdmBenchmark.cc
+++ b/bench/I8SpmdmBenchmark.cc
@@ -22,7 +22,7 @@
#include "BenchUtils.h"
using namespace std;
-using namespace fbgemm2;
+using namespace fbgemm;
int main() {
const vector<array<int, 3>> shapes = {
@@ -79,7 +79,7 @@ int main() {
aligned_vector<uint8_t> A(M * K);
randFill(A, 0, 255);
- fbgemm2::CompressedSparseColumn B_csc(K, N);
+ fbgemm::CompressedSparseColumn B_csc(K, N);
vector<int32_t> C(M * N);
vector<int32_t> C_ref(C.size());