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

github.com/marian-nmt/intgemm/intgemm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolay Bogoychev <nheart@gmail.com>2020-04-25 14:33:03 +0300
committerNikolay Bogoychev <nheart@gmail.com>2020-04-25 14:33:03 +0300
commit3276ef94669b2dc0814b299425259581b32d2093 (patch)
tree400649615ad67e8f2cf31289b8412756a4e3c530
parentf0c778201334b71d8309be32dbb499090a1030d4 (diff)
compile_with_marian
-rw-r--r--tile/callbacks.h2
-rw-r--r--types.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/tile/callbacks.h b/tile/callbacks.h
index c2b42b3..8718138 100644
--- a/tile/callbacks.h
+++ b/tile/callbacks.h
@@ -263,7 +263,7 @@ class UnquantizeAndAddBiasAndWriteCallback {
template <Index A_rows, Index B_cols, Index ColRemain, typename Access> INTGEMM_AVX512BW
static typename std::enable_if<A_rows && B_cols && (ColRemain == 0)>::type
RunImpl(Access access, const __m512i *from, const Config& config) {
- RunImpl<A_rows - 1, B_cols, B_cols>(access.Add(1, -B_cols), from, config);
+ //RunImpl<A_rows - 1, B_cols, B_cols>(access.Add(1, -B_cols), from, config);
}
// On the last row, finish the last write with a mask.
diff --git a/types.h b/types.h
index 9f40fcb..c3742b7 100644
--- a/types.h
+++ b/types.h
@@ -34,7 +34,7 @@ class UnsupportedCPU : public std::exception {
}
};
-typedef std::size_t Index;
+typedef unsigned int Index;
// If you want to detect the CPU and dispatch yourself, here's what to use:
enum class CPUType {