Skip to content

Commit

Permalink
Updating to rocm2.2 for Jenkins Builds
Browse files Browse the repository at this point in the history
  • Loading branch information
saadrahim committed Mar 14, 2019
1 parent e06c024 commit 76b1c25
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -516,19 +516,19 @@ def build_pipeline( compiler_data compiler_args, docker_data docker_args, projec
// }
//},

parallel rocm20_ubuntu:
parallel rocm22_ubuntu:
{
node( 'docker && rocm20 && gfx900')
node( 'docker && rocm22 && gfx900')
{
def hcc_docker_args = new docker_data(
from_image:'rocm/dev-ubuntu-16.04:2.0',
from_image:'rocm/dev-ubuntu-16.04:2.2',
build_docker_file:'dockerfile-build-ubuntu-rock',
install_docker_file:'dockerfile-install-ubuntu',
docker_run_args:'--device=/dev/kfd --device=/dev/dri --group-add=video',
docker_build_args:' --pull' )

def hcc_compiler_args = new compiler_data(
compiler_name:'hcc-rocm19-ubuntu',
compiler_name:'hcc-rocm22-ubuntu',
build_config:'Release',
compiler_path:'/opt/rocm/bin/hcc' )

Expand All @@ -549,21 +549,21 @@ parallel rocm20_ubuntu:
}
},

rocm20_ubuntu_gfx906:
rocm22_ubuntu_gfx906:
{
try
{
node( 'docker && rocm20 && gfx906')
node( 'docker && rocm22 && gfx906')
{
def hcc_docker_args = new docker_data(
from_image:'rocm/dev-ubuntu-16.04:2.0',
from_image:'rocm/dev-ubuntu-16.04:2.2',
build_docker_file:'dockerfile-build-ubuntu-rock',
install_docker_file:'dockerfile-install-ubuntu',
docker_run_args:'--device=/dev/kfd --device=/dev/dri --group-add=video',
docker_build_args:' --pull' )

def hcc_compiler_args = new compiler_data(
compiler_name:'hcc-rocm19-ubuntu',
compiler_name:'hcc-rocm22-ubuntu',
build_config:'Release',
compiler_path:'/opt/rocm/bin/hcc' )

Expand Down

0 comments on commit 76b1c25

Please sign in to comment.