Skip to content

Commit c5541ca

Browse files
committed
fix: export names
1 parent ad5bda9 commit c5541ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/enzyme_ad/jax/Passes/LowerEnzymeXLALapack.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2008,10 +2008,10 @@ LogicalResult lowerSVDAlgorithmCPU(OpTy op, PatternRewriter &rewriter,
20082008
std::string fn;
20092009
if constexpr (std::is_same_v<OpTy, enzymexla::GesvdOp>) {
20102010
algorithm = enzymexla::SVDAlgorithm::QRIteration;
2011-
fn = "gesvd";
2011+
fn = "gesvd_";
20122012
} else if constexpr (std::is_same_v<OpTy, enzymexla::GesddOp>) {
20132013
algorithm = enzymexla::SVDAlgorithm::DivideAndConquer;
2014-
fn = "gesdd";
2014+
fn = "gesdd_";
20152015
} else {
20162016
op->emitOpError() << "Unsupported algorithm";
20172017
return failure();

0 commit comments

Comments
 (0)