Skip to content
Merged
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: 1 addition & 1 deletion src/libtorchaudio/rnnt/cpu/compute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ std::tuple<Tensor, Tensor> compute(
Tensor target_lengths,
int64_t blank,
double clamp,
bool fused_log_softmax = true) {
bool fused_log_softmax) {
STD_TORCH_CHECK(logits.is_cpu(), "logits must be on CPU");

STD_TORCH_CHECK(
Expand Down
2 changes: 1 addition & 1 deletion src/libtorchaudio/rnnt/gpu/compute.cu
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ std::tuple<Tensor, Tensor> compute(
Tensor target_lengths,
int64_t blank,
double clamp,
bool fused_log_softmax = true) {
bool fused_log_softmax) {
STD_TORCH_CHECK(logits.is_cuda(), "logits must be on CUDA");

STD_TORCH_CHECK(
Expand Down
Loading