Merge pull request #111 from bensander/master

Enable HCC_OPT_FLUSH=1 (if HCC compiler new enough)

[ROCm/hip commit: f420af64d0]
Tento commit je obsažen v:
Maneesh Gupta
2017-07-25 12:02:33 +05:30
odevzdal GitHub
+5 -1
Zobrazit soubor
@@ -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