Add USE_PROMOTE_FREE_HCC for smooth transition to new HCC caps.

ADDRESS_SPACE_1 defines


[ROCm/hip commit: e85c167171]
Tento commit je obsažen v:
Ben Sander
2017-03-17 11:04:39 -05:00
rodič 25e4ace28b
revize a9ec705ee4
4 změnil soubory, kde provedl 25 přidání a 11 odebrání
+3 -3
Zobrazit soubor
@@ -34,8 +34,8 @@ THE SOFTWARE.
This is the best place to put them because the device
global variables need to be initialized at the start.
*/
__attribute__((address_space(1))) char gpuHeap[SIZE_OF_HEAP];
__attribute__((address_space(1))) uint32_t gpuFlags[NUM_PAGES];
ADDRESS_SPACE_1 char gpuHeap[SIZE_OF_HEAP];
ADDRESS_SPACE_1 uint32_t gpuFlags[NUM_PAGES];
__device__ void *__hip_hc_malloc(size_t size)
{
@@ -1083,7 +1083,7 @@ __host__ __device__ int max(int arg1, int arg2)
return (int)(hc::precise_math::fmax((float)arg1, (float)arg2));
}
__device__ __attribute__((address_space(3))) void* __get_dynamicgroupbaseptr()
__device__ ADDRESS_SPACE_3 void* __get_dynamicgroupbaseptr()
{
return hc::get_dynamic_group_segment_base_pointer();
}