From ac57672eaae00288e6b203f3ac23fd6a52cdd647 Mon Sep 17 00:00:00 2001 From: Maneesh Gupta Date: Tue, 8 Mar 2016 11:14:03 +0530 Subject: [PATCH] Fix release notes and minimum required hcc workweek check --- hipamd/RELEASE.md | 1 + hipamd/include/hcc_detail/hip_runtime_api.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hipamd/RELEASE.md b/hipamd/RELEASE.md index 4b1dec0cbd..8041657b8e 100644 --- a/hipamd/RELEASE.md +++ b/hipamd/RELEASE.md @@ -29,6 +29,7 @@ Next: Release:0.82.00 Date: 2016.03.07 - Bump minimum required HCC workweek to 16074. +- Bump minimum required ROCK-Kernel-Driver and ROCR-Runtime to Developer Preview 2. - Enable multi-GPU support. * Use hipSetDevice to select a device for subsequent kernel calls and memory allocations. * CUDA_VISIBLE_DEVICES / HIP_VISIBLE_DEVICE environment variable selects devices visible to the runtime. diff --git a/hipamd/include/hcc_detail/hip_runtime_api.h b/hipamd/include/hcc_detail/hip_runtime_api.h index 92aef3d213..22247af4b5 100644 --- a/hipamd/include/hcc_detail/hip_runtime_api.h +++ b/hipamd/include/hcc_detail/hip_runtime_api.h @@ -33,7 +33,7 @@ THE SOFTWARE. #include #include "hip_hcc.h" -#if defined (__HCC__) && (__hcc_workweek__ < 1602) +#if defined (__HCC__) && (__hcc_workweek__ < 16074) #error("This version of HIP requires a newer version of HCC."); #endif