Skip to content

Commit

Permalink
Fix cholesky
Browse files Browse the repository at this point in the history
  • Loading branch information
alekstheod committed Oct 31, 2024
1 parent e373633 commit 15f2f3e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions xla/service/gpu/ir_emitter_unnested.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2898,6 +2898,9 @@ absl::Status IrEmitterUnnested::EmitHloInstruction(
if (instr->custom_call_target() == kNopCustomCallTarget) {
return absl::OkStatus();
}
if (IsCustomCallToCusolver(*instr)) {
return EmitCholeskyThunk(instr);
}
return EmitCustomCallThunk(custom_call);
}
case HloOpcode::kFusion: {
Expand Down

0 comments on commit 15f2f3e

Please sign in to comment.