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-03-25 20:50:05 +0300
committerNikolay Bogoychev <nheart@gmail.com>2020-03-25 20:50:05 +0300
commitd596aace3e80a223358672e7fbd178e83d2ab609 (patch)
tree30c06fa7bf022f5ee9ad4346af42c34c16c449eb /intgemm.h
parenta0ed867e15ae300789e7ac81c0c8e7762babfac1 (diff)
Address comments
Diffstat (limited to 'intgemm.h')
-rw-r--r--intgemm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intgemm.h b/intgemm.h
index 9551c5e..ac877e8 100644
--- a/intgemm.h
+++ b/intgemm.h
@@ -117,7 +117,7 @@ struct Unsupported_8bit {
throw UnsupportedCPU();
}
- static float GetQuantizerStd(const float *begin, const float *end, int stdnum) {
+ static MeanStd GetQuantizerStd(const float *, const float *) {
throw UnsupportedCPU();
}
@@ -277,7 +277,7 @@ struct Int8 {
}
// Get a Quantization value that is equant to the mean of the data +N standard deviations. Use 2 by default
- static float (*GetQuantizerStd)(const float *begin, const float *end, int stdnum);
+ static MeanStd (*GetQuantizerStd)(const float *begin, const float *end);
static const char *const kName;