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

github.com/marian-nmt/FBGEMM.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoung Jin Kim <youki@microsoft.com>2020-06-24 01:30:15 +0300
committerGitHub <noreply@github.com>2020-06-24 01:30:15 +0300
commit0a68a4939fcab9ae3686c5522012108128586e89 (patch)
tree0e309ee595eacf3f8fdd2263713144fb45cdd960
parent5454259a1890888daba43a55c90e455fc120466e (diff)
parent2a722e5724d26690d86ac5f76c41c16a02255469 (diff)
Merge pull request #4 from marian-nmt/youki/fix-stdexcept
Fix stdexcept compile error
-rw-r--r--include/fbgemm/ConvUtils.h1
-rw-r--r--include/fbgemm/FbgemmFP16.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/fbgemm/ConvUtils.h b/include/fbgemm/ConvUtils.h
index 5431958..cb22004 100644
--- a/include/fbgemm/ConvUtils.h
+++ b/include/fbgemm/ConvUtils.h
@@ -7,6 +7,7 @@
#pragma once
#include <array>
+#include <stdexcept>
#include <string>
#include <type_traits>
diff --git a/include/fbgemm/FbgemmFP16.h b/include/fbgemm/FbgemmFP16.h
index 8da0b56..d994c07 100644
--- a/include/fbgemm/FbgemmFP16.h
+++ b/include/fbgemm/FbgemmFP16.h
@@ -12,6 +12,7 @@
#include <cassert>
#include <cstdlib>
#include <memory>
+#include <stdexcept>
#include <vector>
#include "Types.h"