Skip to content

Commit 754166d

Browse files
committed
clang
1 parent 1f34958 commit 754166d

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

shared/api/speech_features.hpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -662,9 +662,4 @@ class Phi4AudioEmbed {
662662
int64_t qformer_compression_rate_{1};
663663
};
664664

665-
// PerFeatureNormalize and NemoLogMel have been moved to
666-
// "speech_features_normalize.hpp" (included above). They remain available
667-
// to consumers of this header unchanged.
668-
669-
670665
} // namespace ort_extensions

shared/api/speech_features_normalize.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ class PerFeatureNormalize {
4545
num_features = feature_first_ ? shape[1] : shape[2];
4646
num_frames = feature_first_ ? shape[2] : shape[1];
4747
} else {
48-
return {kOrtxErrorInvalidArgument, "[PerFeatureNormalize]: Expected input shape [features, frames] or [1, features, frames]."};
48+
return {kOrtxErrorInvalidArgument,
49+
"[PerFeatureNormalize]: Expected input shape [features, frames] or [1, features, frames]."};
4950
}
5051

5152
const float* in_data = input.Data();

0 commit comments

Comments
 (0)