From 08e59011f785bd7283d10ffda65fba67d9eb692c Mon Sep 17 00:00:00 2001 From: foreman Date: Fri, 27 Sep 2019 08:55:43 -0400 Subject: [PATCH] P4 to Git Change 2005454 by michliao@hliao-dev-00-hip.rocm-workspace on 2019/09/27 08:45:19 SWDEV-199293 - Fix build - source code should be self-sufficient, i.e., including headers directly referenced. Affected files ... ... //depot/stg/opencl/drivers/opencl/api/hip/hip_rtc.cpp#6 edit [ROCm/hip commit: 7759d32813bcf7c13db716f37ea0f285cf58e926] --- projects/hip/api/hip/hip_rtc.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/projects/hip/api/hip/hip_rtc.cpp b/projects/hip/api/hip/hip_rtc.cpp index 9b378cd637..042dea0ab2 100644 --- a/projects/hip/api/hip/hip_rtc.cpp +++ b/projects/hip/api/hip/hip_rtc.cpp @@ -24,6 +24,14 @@ THE SOFTWARE. #include "hiprtc_internal.hpp" #include #include "platform/program.hpp" +#include +#include +#include +#include +#include +#include +#include +#include namespace hiprtc { thread_local hiprtcResult g_lastRtcError = HIPRTC_SUCCESS; @@ -267,4 +275,4 @@ hiprtcResult hiprtcGetProgramLogSize(hiprtcProgram prog, size_t* logSizeRet) { *logSizeRet = log.size() + 1; HIPRTC_RETURN(HIPRTC_SUCCESS); -} \ No newline at end of file +}