Skip to content
Closed
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
2 changes: 2 additions & 0 deletions third_party/gpus/rocm/BUILD.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ rocm_lib_import(
data = glob(
[
"%{rocm_root}/lib/libamdhip64.so*",
"%{rocm_root}/lib/librocm_kpack.so*",
],
),
interface_library = "%{rocm_root}/lib/libamdhip64.so",
Expand Down Expand Up @@ -195,6 +196,7 @@ cc_library(
"%{rocm_root}/lib/libamd_comgr_loader.so*",
"%{rocm_root}/lib/libamd_comgr.so*",
"%{rocm_root}/lib/llvm/lib/libLLVM.so*",
"%{rocm_root}/lib/llvm/lib/libclang-cpp.so*",
],
),
deps = [
Expand Down
2 changes: 1 addition & 1 deletion xla/stream_executor/rocm/rocm_blas.cc
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ namespace {

#define ROCBLAS_API_WRAPPER(__name) \
struct WrapperShim__##__name { \
constexpr static const char* kName = #__name; \
constexpr static const char *kName = #__name; \
template <typename... Args> \
rocblas_status operator()(Args... args) { \
return (::__name)(args...); \
Expand Down
1 change: 0 additions & 1 deletion xla/tsl/platform/default/dso_loader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ absl::string_view GetCusparseVersion() { return TF_CUSPARSE_VERSION; }
absl::string_view GetNcclVersion() { return TF_NCCL_VERSION; }
absl::string_view GetTensorRTVersion() { return TF_TENSORRT_VERSION; }
absl::string_view GetNvshmemVersion() { return XLA_NVSHMEM_VERSION; }

absl::StatusOr<void*> GetDsoHandle(const std::string& name,
absl::string_view version) {
auto filename =
Expand Down
Loading