Skip to content

Commit 0547e2a

Browse files
committed
remove extra blank
1 parent 0b4decd commit 0547e2a

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.ci/scripts/test_model_cuda_e2e.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Arguments:
1717
hf_model HuggingFace model ID (required)
1818
Supported models:
1919
- mistralai/Voxtral-Mini-3B-2507
20-
- openai/whisper series (whisper-{small, medium, large, large-v2, large-v3, large-v3-turbo})
20+
- openai/whisper series (whisper-{small, medium, large, large-v2, large-v3, large-v3-turbo})
2121
- google/gemma-3-4b-it
2222
2323
quant_name Quantization type (required)

extension/asr/runner/runner.cpp

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,7 @@ Result<std::vector<int64_t>> AsrRunner::transcribe(
192192
Info,
193193
"Conversion complete, first value = %f",
194194
static_cast<float>(
195-
preprocessed_features
196-
->mutable_data_ptr<float>()[0]));
195+
preprocessed_features->mutable_data_ptr<float>()[0]));
197196
}
198197
}
199198

@@ -223,9 +222,7 @@ Result<std::vector<int64_t>> AsrRunner::transcribe(
223222
ET_LOG(
224223
Info,
225224
"Encoder first value: %f",
226-
static_cast<float>(
227-
encoder_output_tensor
228-
.mutable_data_ptr<float>()[0]));
225+
static_cast<float>(encoder_output_tensor.mutable_data_ptr<float>()[0]));
229226

230227
auto encoder_output_ptr = std::make_shared<::executorch::aten::Tensor>(
231228
std::move(encoder_output_tensor));

0 commit comments

Comments
 (0)