Merge pull request #111 from bensander/master

Enable HCC_OPT_FLUSH=1 (if HCC compiler new enough)

[ROCm/clr commit: c5790aed94]
Этот коммит содержится в:
Maneesh Gupta
2017-07-25 12:02:33 +05:30
коммит произвёл GitHub
родитель 801a927eaf 0e9272cfd7
Коммит f2ee8ffd69
+5 -1
Просмотреть файл
@@ -95,8 +95,12 @@ int HIP_SYNC_HOST_ALLOC = 1;
int HIP_SYNC_NULL_STREAM = 1;
// HIP needs to change some behavior based on HCC_OPT_FLUSH :
// TODO - set this to 1
#if (__hcc_workweek__ >= 17296)
int HCC_OPT_FLUSH = 1;
#else
#warning "HIP disabled HCC_OPT_FLUSH since HCC version does not yet support"
int HCC_OPT_FLUSH = 0;
#endif