* Switch CI testing from rocm-3.1.x to rocm-3.3.x
* Update hcc workweek for cooperative view
* bump version to 3.5

[ROCm/clr commit: c09c4cd239]
Αυτή η υποβολή περιλαμβάνεται σε:
Rahul Garg
2020-04-06 03:09:10 -07:00
υποβλήθηκε από GitHub
γονέας 77fd519260
υποβολή ef7397ae35
3 αρχεία άλλαξαν με 7 προσθήκες και 7 διαγραφές
+4 -4
Προβολή Αρχείου
@@ -295,13 +295,13 @@ def docker_upload_dockerhub( String local_org, String image_name, String remote_
String build_config = 'Release'
String job_name = env.JOB_NAME.toLowerCase( )
// The following launches 3 builds in parallel: rocm-head, rocm-3.1.x and cuda-10.x
parallel rocm_3_1:
// The following launches 3 builds in parallel: rocm-head, rocm-3.3.x and cuda-10.x
parallel rocm_3_3:
{
node('hip-rocm')
{
String hcc_ver = 'rocm-3.1.x'
String from_image = 'ci_test_nodes/rocm-3.1.x/ubuntu-16.04:latest'
String hcc_ver = 'rocm-3.3.x'
String from_image = 'ci_test_nodes/rocm-3.3.x/ubuntu-16.04:latest'
String inside_args = '--device=/dev/kfd --device=/dev/dri --group-add=video'
// Checkout source code, dependencies and version files
@@ -1,7 +1,7 @@
#!/usr/bin/perl -w
$HIP_BASE_VERSION_MAJOR = "3";
$HIP_BASE_VERSION_MINOR = "2";
$HIP_BASE_VERSION_MINOR = "5";
# Need perl > 5.10 to use logic-defined or
use 5.006; use v5.10.1;
@@ -493,7 +493,7 @@ hipError_t ihipLaunchCooperativeKernel(const void* f, dim3 gridDim,
dim3 blockDim, void** kernelParams, unsigned int sharedMemBytes,
hipStream_t stream, hip_impl::program_state& ps) {
#if (__hcc_workweek__ >= 20093)
#if (__hcc_workweek__ >= 20115)
hipError_t result;
@@ -641,7 +641,7 @@ hipError_t hipLaunchCooperativeKernel(const void* func, dim3 gridDim,
hipError_t ihipLaunchCooperativeKernelMultiDevice(hipLaunchParams* launchParamsList,
int numDevices, unsigned int flags, hip_impl::program_state& ps) {
#if (__hcc_workweek__ >= 20093)
#if (__hcc_workweek__ >= 20115)
hipError_t result;
if (numDevices > g_deviceCnt || launchParamsList == nullptr || numDevices > MAX_COOPERATIVE_GPUs) {