Skip to content

Commit

Permalink
rocblas CI dependency (#416)
Browse files Browse the repository at this point in the history
* rocblas CI dependency

* need to install rocblas first
  • Loading branch information
ntrost57 authored Nov 28, 2023
1 parent 3ed7a5c commit 8c13064
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .jenkins/extended.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def runCI =
prj.paths.build_command = './install.sh -c'
prj.compiler.compiler_name = 'c++'
prj.compiler.compiler_path = 'c++'
prj.libraryDependencies = ['rocSPARSE', 'rocPRIM']
prj.libraryDependencies = ['rocBLAS', 'rocSPARSE', 'rocPRIM']
prj.defaults.ccache = false

// Define test architectures, optional rocm version argument is available
Expand Down
2 changes: 1 addition & 1 deletion .jenkins/precheckin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def runCI =
prj.paths.build_command = './install.sh -c'
prj.compiler.compiler_name = 'c++'
prj.compiler.compiler_path = 'c++'
prj.libraryDependencies = ['rocSPARSE', 'rocPRIM']
prj.libraryDependencies = ['rocBLAS', 'rocSPARSE', 'rocPRIM']
prj.defaults.ccache = true

// Define test architectures, optional rocm version argument is available
Expand Down
2 changes: 1 addition & 1 deletion .jenkins/staticlibrary.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def runCI =
prj.paths.build_command = './install.sh -c --static'
prj.compiler.compiler_name = 'hipcc'
prj.compiler.compiler_path = '/opt/rocm/bin/hipcc'
prj.libraryDependencies = ['rocSPARSE', 'rocPRIM']
prj.libraryDependencies = ['rocBLAS', 'rocSPARSE', 'rocPRIM']
prj.defaults.ccache = false

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

0 comments on commit 8c13064

Please sign in to comment.