Skip to content

Commit

Permalink
PR tensorflow#14964: [ROCm] Fix an issue with undefined __oclc_ABI_ve…
Browse files Browse the repository at this point in the history
…rsion symbol.

Imported from GitHub PR openxla/xla#14964

Copybara import of the project:

--
e1691462396648278cc0d64615a574e9fb45836e by Zoran Jovanovic <zjovanov@amd.com>:

[ROCm] Fix an issue with undefined __oclc_ABI_version symbol.

Merging this change closes tensorflow#14964

PiperOrigin-RevId: 653151093
  • Loading branch information
zoranjovanovic-ns authored and tensorflower-gardener committed Jul 17, 2024
1 parent e8053ef commit c1653b2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,8 @@ std::vector<std::string> GetROCDLPaths(std::string gcn_arch_name,
new std::vector<std::string>(
{"opencl.bc", "ocml.bc", "ockl.bc", "oclc_finite_only_off.bc",
"oclc_daz_opt_off.bc", "oclc_correctly_rounded_sqrt_on.bc",
"oclc_unsafe_math_off.bc", "oclc_wavefrontsize64_on.bc"});
"oclc_unsafe_math_off.bc", "oclc_wavefrontsize64_on.bc",
"oclc_abi_version_500.bc"});

// Construct full path to ROCDL bitcode libraries.
std::vector<std::string> result;
Expand Down

0 comments on commit c1653b2

Please sign in to comment.