From 3e856ec04ebe3cf072939641ba6cd7871bfefc32 Mon Sep 17 00:00:00 2001
From: AlexeyAB <alexeyab84@gmail.com>
Date: Thu, 09 Aug 2018 22:27:20 +0000
Subject: [PATCH] Optimized: transpose

---
 src/gemm.h |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/gemm.h b/src/gemm.h
index 97fa09c..c71cd24 100644
--- a/src/gemm.h
+++ b/src/gemm.h
@@ -1,6 +1,8 @@
 #ifndef GEMM_H
 #define GEMM_H
 #include "activations.h"
+#include <stdint.h>
+#include <stddef.h>
 
 static inline void set_bit(unsigned char *const dst, size_t index) {
     size_t dst_i = index / 8;

--
Gitblit v1.10.0