* Bump version to 3.1

* [ci] Enable tests on ROCm 3.0


[ROCm/clr commit: 86e590ad62]
Этот коммит содержится в:
Maneesh Gupta
2019-12-21 01:40:25 +05:30
коммит произвёл Rahul Garg
родитель b41f6ad42f
Коммит 57b69adc8b
2 изменённых файлов: 5 добавлений и 5 удалений
поставляемый
+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-2.9.x and cuda-10.x
parallel rocm_2_9:
// The following launches 3 builds in parallel: rocm-head, rocm-3.0.x and cuda-10.x
parallel rocm_3_0:
{
node('hip-rocm')
{
String hcc_ver = 'rocm-2.9.x'
String from_image = 'ci_test_nodes/rocm-2.9.x/ubuntu-16.04:latest'
String hcc_ver = 'rocm-3.0.x'
String from_image = 'ci_test_nodes/rocm-3.0.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 -1
Просмотреть файл
@@ -1,7 +1,7 @@
#!/usr/bin/perl -w
$HIP_BASE_VERSION_MAJOR = "3";
$HIP_BASE_VERSION_MINOR = "0";
$HIP_BASE_VERSION_MINOR = "1";
# Need perl > 5.10 to use logic-defined or
use 5.006; use v5.10.1;