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:
-rw-r--r--avx2_gemm.cc2
-rw-r--r--avx2_gemm.h2
-rw-r--r--sse2_gemm.cc2
-rw-r--r--sse2_gemm.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/avx2_gemm.cc b/avx2_gemm.cc
index 39e8c2c..86bafb5 100644
--- a/avx2_gemm.cc
+++ b/avx2_gemm.cc
@@ -7,7 +7,7 @@
#include <immintrin.h>
#include <tmmintrin.h>
#include <xmmintrin.h>
-#include <cstdint>
+#include <stdint.h>
namespace intgemm {
#ifdef __AVX2__
diff --git a/avx2_gemm.h b/avx2_gemm.h
index 8771d9c..65d8a05 100644
--- a/avx2_gemm.h
+++ b/avx2_gemm.h
@@ -1,5 +1,5 @@
#pragma once
-#include <cstdint>
+#include <stdint.h>
namespace intgemm {
diff --git a/sse2_gemm.cc b/sse2_gemm.cc
index a33bc95..a52f7e1 100644
--- a/sse2_gemm.cc
+++ b/sse2_gemm.cc
@@ -3,7 +3,7 @@
#include "interleave.h"
#include "multiply.h"
-#include <cstdint>
+#include <stdint.h>
#include <cassert>
#include <xmmintrin.h>
#include <emmintrin.h>
diff --git a/sse2_gemm.h b/sse2_gemm.h
index 161996c..4530659 100644
--- a/sse2_gemm.h
+++ b/sse2_gemm.h
@@ -1,5 +1,5 @@
#pragma once
-#include <cstdint>
+#include <stdint.h>
namespace intgemm {