Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ get_os_id(OS_ID)
message (STATUS "OS detected is ${OS_ID}")

# Versioning via rocm-cmake
set ( VERSION_STRING "2.8.1" )
set ( VERSION_STRING "2.8.2" )
rocm_setup_version( VERSION ${VERSION_STRING} )

# Append our library helper cmake path and the cmake path for hip (for convenience)
Expand Down Expand Up @@ -188,7 +188,7 @@ if( BUILD_WITH_TENSILE )
else()
# Use the virtual-env setup and download package from specified repot:
set( tensile_fork "ROCmSoftwarePlatform" CACHE STRING "Tensile fork to use" )
set( tensile_tag 3f69739ed495346e243beef51b1f3f3ebe6d09a5 CACHE STRING "Tensile tag to download" )
set( tensile_tag 71c62d1d1f63ced18688c481d1399ee9f56abd4b CACHE STRING "Tensile tag to download" )
virtualenv_install("git+https://github.com/${tensile_fork}/Tensile.git@${tensile_tag}")
message (STATUS "using GIT Tensile fork=${tensile_fork} from branch=${tensile_tag}")
endif()
Expand Down
12 changes: 6 additions & 6 deletions clients/include/testing_gemm_ex.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -589,9 +589,9 @@ void testing_gemm_ex(const Arguments& arg)
dC,
arg.c_type,
ldc,
dD,
arg.d_type,
ldd,
dC,
arg.c_type,
ldc,
arg.compute_type,
algo,
solution_index,
Expand All @@ -618,9 +618,9 @@ void testing_gemm_ex(const Arguments& arg)
dC,
arg.c_type,
ldc,
dD,
arg.d_type,
ldd,
dC,
arg.c_type,
ldc,
arg.compute_type,
algo,
solution_index,
Expand Down
16 changes: 8 additions & 8 deletions clients/include/testing_gemm_strided_batched_ex.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -759,10 +759,10 @@ void testing_gemm_strided_batched_ex(const Arguments& arg)
arg.c_type,
ldc,
stride_c,
dD,
arg.d_type,
ldd,
stride_d,
dC,
arg.c_type,
ldc,
stride_c,
batch_count,
arg.compute_type,
algo,
Expand Down Expand Up @@ -794,10 +794,10 @@ void testing_gemm_strided_batched_ex(const Arguments& arg)
arg.c_type,
ldc,
stride_c,
dD,
arg.d_type,
ldd,
stride_d,
dC,
arg.c_type,
ldc,
stride_c,
batch_count,
arg.compute_type,
algo,
Expand Down
Loading