Skip to content

Commit

Permalink
changed CI dependencies (#908)
Browse files Browse the repository at this point in the history
* chagned CI dependencies

* Added rocPRIM
  • Loading branch information
amd-garydeng authored Aug 26, 2024
1 parent bb5d935 commit ea9b506
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .jenkins/multicompiler.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ def runCI =

if (env.BRANCH_NAME ==~ /PR-\d+/ && pullRequest.labels.contains("noSolver"))
{
prj.libraryDependencies = ['rocBLAS', 'hipBLAS-common']
prj.libraryDependencies = ['hipBLAS-common', 'hipBLASLt', 'rocBLAS']
}
else
{
prj.libraryDependencies = ['rocBLAS', 'rocSPARSE', 'rocSOLVER', 'hipBLAS-common']
prj.libraryDependencies = ['rocPRIM', 'hipBLAS-common', 'hipBLASLt', 'rocBLAS', 'rocSPARSE', 'rocSOLVER']
}

// Define test architectures, optional rocm version argument is available
Expand Down
4 changes: 2 additions & 2 deletions .jenkins/precheckin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ def runCI =

if (env.BRANCH_NAME ==~ /PR-\d+/ && pullRequest.labels.contains("noSolver"))
{
prj.libraryDependencies = ['rocBLAS', 'hipBLAS-common']
prj.libraryDependencies = ['hipBLAS-common', 'hipBLASLt', 'rocBLAS']
}
else
{
prj.libraryDependencies = ['rocBLAS', 'rocSPARSE', 'rocSOLVER', 'hipBLAS-common']
prj.libraryDependencies = ['rocPRIM', 'hipBLAS-common', 'hipBLASLt', 'rocBLAS', 'rocSPARSE', 'rocSOLVER']
}

if (env.BRANCH_NAME ==~ /PR-\d+/ && pullRequest.labels.contains('g++'))
Expand Down
5 changes: 2 additions & 3 deletions .jenkins/static.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ def runCI =

if (env.BRANCH_NAME ==~ /PR-\d+/ && pullRequest.labels.contains("noSolver"))
{
prj.libraryDependencies = ['rocBLAS', 'hipBLAS-common']
}
prj.libraryDependencies = ['hipBLAS-common', 'hipBLASLt', 'rocBLAS'] }
else
{
prj.libraryDependencies = ['rocBLAS', 'rocSPARSE', 'rocSOLVER', 'rocPRIM', 'hipBLAS-common']
prj.libraryDependencies = ['rocPRIM', 'hipBLAS-common', 'hipBLASLt', 'rocBLAS', 'rocSPARSE', 'rocSOLVER']
}

// Define test architectures, optional rocm version argument is available
Expand Down

0 comments on commit ea9b506

Please sign in to comment.