From 7732873e65269b6d0bb1bd63f3197a976645e75b Mon Sep 17 00:00:00 2001 From: Zhi <5145158+zhiics@users.noreply.github.com> Date: Fri, 25 Oct 2019 15:47:45 -0700 Subject: [PATCH] [hotfix] missing include headers (#4204) --- src/arithmetic/const_fold.h | 1 + src/codegen/codegen_cuda.cc | 1 + src/codegen/codegen_opencl.cc | 1 + 3 files changed, 3 insertions(+) diff --git a/src/arithmetic/const_fold.h b/src/arithmetic/const_fold.h index 57f9053..86f1927 100644 --- a/src/arithmetic/const_fold.h +++ b/src/arithmetic/const_fold.h @@ -28,6 +28,7 @@ #include #include #include +#include #include "int_operator.h" namespace tvm { diff --git a/src/codegen/codegen_cuda.cc b/src/codegen/codegen_cuda.cc index 55b4810..39a3ab7 100644 --- a/src/codegen/codegen_cuda.cc +++ b/src/codegen/codegen_cuda.cc @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include "codegen_cuda.h" diff --git a/src/codegen/codegen_opencl.cc b/src/codegen/codegen_opencl.cc index 0b33bf4..3120bb5 100644 --- a/src/codegen/codegen_opencl.cc +++ b/src/codegen/codegen_opencl.cc @@ -22,6 +22,7 @@ * \file codegen_opencl.cc */ #include +#include #include #include #include "codegen_opencl.h" -- 2.7.4