Skip to content

Commit

Permalink
Merge pull request #1315 from zaliu/master
Browse files Browse the repository at this point in the history
merge staging 18875ad into master with GO from CQE
  • Loading branch information
zaliu authored Mar 26, 2021
2 parents 3438af2 + 1b00f4a commit 9ff7d7f
Show file tree
Hide file tree
Showing 134 changed files with 166,141 additions and 623 deletions.
2 changes: 1 addition & 1 deletion .jenkins/precheckin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ ci: {
def jobNameList = ["compute-rocm-dkms-no-npi-hipclang":([ubuntu18:['gfx900','gfx906','gfx908']]),
"rocm-docker":([ubuntu18:['gfx908']])]

// jobNameList = auxiliary.appendJobNameList(jobNameList)
jobNameList = auxiliary.appendJobNameList(jobNameList)

propertyList.each
{
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Change Log for Tensile
## [(Unreleased) Tensile 4.28.0 for ROCm 4.3.0]
### Fixed
- TensileCreateLibrary crash with relative output and --merge-files

## [Tensile 4.27.0 for ROCm 4.2.0]
### Added
Expand Down
10 changes: 9 additions & 1 deletion HostLibraryTests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ project(TensileHostLibraryTest)
set( CMAKE_CXX_STANDARD 14 )
set( CMAKE_CXX_EXTENSIONS OFF )

list(APPEND CMAKE_PREFIX_PATH $ENV{ROCM_PATH} /opt/rocm)

option(TENSILE_USE_HIP "Use the Hip runtime." ON)
option(TENSILE_USE_LLVM "Use LLVM for parsing config files." ON)
option(TENSILE_USE_MSGPACK "Use msgpack for parsing config files." ON)
Expand Down Expand Up @@ -127,7 +129,13 @@ set(test_sources ${test_sources}
)

if(TENSILE_USE_LLVM)
find_package(LLVM 6.0 REQUIRED CONFIG)
find_package(LLVM 13.0 QUIET CONFIG)
if(NOT LLVM_FOUND)
find_package(LLVM 12.0 QUIET CONFIG)
if(NOT LLVM_FOUND)
find_package(LLVM REQUIRED CONFIG)
endif()
endif()

set(test_sources ${test_sources}
ContractionLibraryLoading_test.cpp
Expand Down
3 changes: 2 additions & 1 deletion HostLibraryTests/CachingLibrary_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,8 @@ TEST(Hashing, AMDGPU)
std::vector<AMDGPU::Processor> processors{AMDGPU::Processor::gfx803,
AMDGPU::Processor::gfx900,
AMDGPU::Processor::gfx906,
AMDGPU::Processor::gfx908};
AMDGPU::Processor::gfx908,
AMDGPU::Processor::gfx90a};

std::vector<int> counts{16, 20, 40, 56, 60, 64};

Expand Down
Loading

0 comments on commit 9ff7d7f

Please sign in to comment.