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

github.com/marian-nmt/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-26 13:28:11 +0300
committerNikolay Bogoychev <nheart@gmail.com>2020-03-26 13:28:11 +0300
commit78bba895db5c7d3141afa908477417d2b4a81b42 (patch)
tree3b004b9ece9e2f7edc3b5dfb522b5e6bac36cb96
parentac7ee0ed41d0c321ef48909d4fdfd53e2461495e (diff)
Make it inline
-rw-r--r--multiply.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/multiply.h b/multiply.h
index 50f548b..9790353 100644
--- a/multiply.h
+++ b/multiply.h
@@ -645,7 +645,7 @@ target static inline float MaxAbsolute(const float *begin_float, const float *en
} \
#define INTGEMM_GETQUANTIZERSTD(Register, target) \
-target static MeanStd GetQuantizerStd(const float *begin_float, const float *end_float) { \
+target static inline MeanStd GetQuantizerStd(const float *begin_float, const float *end_float) { \
/* Finds a quantizer value that is a certain number of standard deviations of the mean */ \
assert(end_float > begin_float); \
assert((end_float - begin_float) % (sizeof(Register) / sizeof(float)) == 0); \