Making more clear what this list details. In particular, this list is intended to indicate what items for each CUDA release is supported, and which are not.
[ROCm/clr commit: b1ec4e0b5f]
SWDEV-2 - Change OpenCL version number from 2854 to 2855.
Affected files ...
... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#2602 edit
[ROCm/clr commit: 153ce98b4a]
- `immarg`, immediate argument, is enabled on all AMDGPU intrinsics.
Revise device functions using these intrinsics with immediate
arguments.
[ROCm/clr commit: b74b4500c4]
SWDEV-2 - Change OpenCL version number from 2853 to 2854.
Affected files ...
... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#2601 edit
[ROCm/clr commit: 782b1a87cc]
SWDEV-2 - Change OpenCL version number from 2852 to 2853.
Affected files ...
... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#2600 edit
[ROCm/clr commit: a9861b1192]
SWDEV-2 - Change OpenCL version number from 2851 to 2852.
Affected files ...
... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#2599 edit
[ROCm/clr commit: 20652884f1]
Issue: Header uses std::vector<Agent_global> agent_globals which is created by hip_module.cpp
- Move iterator fails to copy Agent_global from library source into header version
- Due to different versions of std::string name in struct Agent_global
Fix: Change Agent_global to use char* name instead of std::string name
[ROCm/clr commit: fcde9fe3df]
Issue: mismatch undefined symbols in different user env
- Binary expects modified return value std::string&
- Fails to match libhip_hcc.so: return value is std::string& but doesn't match modified C++ env
Fix: Change return value to char*, create new key std::string in header from char*
[ROCm/clr commit: f8aca3159c]
SWDEV-2 - Change OpenCL version number from 2850 to 2851.
Affected files ...
... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#2598 edit
[ROCm/clr commit: 2a27a1d32f]
SWDEV-2 - Change OpenCL version number from 2849 to 2850.
Affected files ...
... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#2597 edit
[ROCm/clr commit: e3c07cbf4e]
SWDEV-125823 - Use ccache if ROCM_OPENCL_CCACHE_BUILD=ON
This is a preparation for enabling ccache in our Jenkins jobs.
Change-Id: I3d0ae3fbf0f14afdd828fc51120f24b130ee105d
Reviewed and tested: http://git.amd.com:8080/c/compute/ec/opencl/+/208573
Affected files ...
... //depot/stg/opencl/drivers/opencl/CMakeLists.txt#22 edit
[ROCm/clr commit: 435401ceb7]
SWDEV-125823 - Use ccache if ROCM_OPENCL_CCACHE_BUILD=ON
This is a preparation for enabling ccache in our Jenkins jobs.
Change-Id: I3d0ae3fbf0f14afdd828fc51120f24b130ee105d
Reviewed and tested: http://git.amd.com:8080/c/compute/ec/opencl/+/208573
Affected files ...
... //depot/stg/opencl/drivers/opencl/CMakeLists.txt#22 edit
[ROCm/clr commit: d07fd4bd06]
SWDEV-2 - Change OpenCL version number from 2848 to 2849.
Affected files ...
... //depot/stg/opencl/drivers/opencl/runtime/utils/versions.hpp#2596 edit
[ROCm/clr commit: f8b4341bd7]
+ Set -D__LP64__ in case of 64-bit hipify-clang binary
[partial workaround for clang's bug https://bugs.llvm.org/show_bug.cgi?id=38811]
C:/GIT/LLVM/trunk/llvm-64-release-vs2017/dist/lib/clang/9.0.0\include\__clang_cuda_device_functions.h(1609,45): error GEF7559A7: no matching function for call to 'roundf'
__DEVICE__ long lroundf(float __a) { return roundf(__a); }
#if defined(__LP64__)
__DEVICE__ long lround(double __a) { return llround(__a); }
__DEVICE__ long lroundf(float __a) { return llroundf(__a); } // ok: llroundf should be used when 64-bit
#else
__DEVICE__ long lround(double __a) { return round(__a); }
__DEVICE__ long lroundf(float __a) { return roundf(__a); } // error
#endif
+ Print more system info while testing in the following form:
========================================
CUDA 9.0 - will be used for testing
LLVM 9.0.0svn - will be used for testing
AMD64 - Platform architecture
Windows 10 - Platform OS
64 - hipify-clang binary bitness
32 - python 3.7.2 binary bitness
========================================
[ROCm/clr commit: f138f89bc8]