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:
authorYoung Jin Kim <youki@microsoft.com>2019-09-25 19:40:48 +0300
committerYoung Jin Kim <youki@microsoft.com>2019-09-25 19:40:48 +0300
commit7bd598c9e97871e42c19449fddf7bd317898eb58 (patch)
treea3b1fea18477b63add473037d0644a96b115e0da /test/I8DepthwiseTest.h
parent08763b198ef743741560ae42a9c10a3017c7c9ce (diff)
parent518d8a1832cf1eb1dda2feace1a278e9e4f302ba (diff)
Merge remote-tracking branch 'upstream/master' into youki/win-jit-debug-int8
Fix for windows build errors
Diffstat (limited to 'test/I8DepthwiseTest.h')
-rw-r--r--test/I8DepthwiseTest.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/test/I8DepthwiseTest.h b/test/I8DepthwiseTest.h
deleted file mode 100644
index d65362a..0000000
--- a/test/I8DepthwiseTest.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Copyright (c) Facebook, Inc. and its affiliates.
- * All rights reserved.
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree.
- */
-#pragma once
-
-#include <vector>
-
-namespace fbgemm {
-
-// From ResNeXt-3D-101
-static std::vector<std::vector<int>> shapes_3d = {
- // NOTE: clang-format wants to use a different formatting but the current
- // formatting should be easier to read.
- // N, K, T_in, H_in, W_in, stride
- { 1, 64, 32, 56, 56, 1, },
- { 1, 128, 16, 28, 28, 1, },
- { 1, 256, 8, 14, 14, 1, },
- { 1, 512, 4, 7, 7, 1, },
-
- { 1, 128, 32, 56, 56, 2, },
- { 1, 256, 16, 28, 28, 2, },
- { 1, 512, 8, 14, 14, 2, },
-
- { 5, 64, 32, 56, 56, 1, },
- { 5, 128, 16, 28, 28, 1, },
- { 5, 256, 8, 14, 14, 1, },
- { 5, 512, 4, 7, 7, 1, },
-
- { 5, 128, 32, 56, 56, 2, },
- { 5, 256, 16, 28, 28, 2, },
- { 5, 512, 8, 14, 14, 2, },
-
- { 1, 8, 4, 4, 4, 1, },
-};
-
-} // namespace fbgemm