From e7ad4e6c77b8b9f9bc65c80073dd7b89eaeece4c Mon Sep 17 00:00:00 2001 From: AlexeyAB Date: Fri, 19 Oct 2018 02:44:54 +0300 Subject: [PATCH] Compile fix --- src/gemm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gemm.h b/src/gemm.h index 90b8ce99..e297537f 100644 --- a/src/gemm.h +++ b/src/gemm.h @@ -27,7 +27,7 @@ void float_to_bit(float *src, unsigned char *dst, size_t size); void transpose_block_SSE4x4(float *A, float *B, const int n, const int m, const int lda, const int ldb, const int block_size); -void transpose_bin(char *A, char *B, const int n, const int m, +void transpose_bin(uint32_t *A, uint32_t *B, const int n, const int m, const int lda, const int ldb, const int block_size); void gemm_nn_custom_bin_mean_transposed(int M, int N, int K, float ALPHA_UNUSED,