From d6f4d7a0a1aa28cf380c19129dd8cd21cfa64a21 Mon Sep 17 00:00:00 2001 From: Dener Stassun Date: Thu, 14 Dec 2023 14:22:33 -0300 Subject: [PATCH] whisper: fix typo on alignment heads enum --- whisper.cpp | 2 +- whisper.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/whisper.cpp b/whisper.cpp index 421adbb8f4e..e2d7be80749 100644 --- a/whisper.cpp +++ b/whisper.cpp @@ -368,7 +368,7 @@ static const std::map g_aheads { { WHISPER_AHEADS_MEDIUM_EN, {18, g_aheads_medium_en} }, { WHISPER_AHEADS_MEDIUM, {6, g_aheads_medium} }, { WHISPER_AHEADS_LARGE_V1, {9, g_aheads_large_v1} }, - { WHISPER_AHEADS_LARVE_V2, {23, g_aheads_large_v2} }, + { WHISPER_AHEADS_LARGE_V2, {23, g_aheads_large_v2} }, { WHISPER_AHEADS_LARGE_V3, {10, g_aheads_large_v3} }, }; diff --git a/whisper.h b/whisper.h index e3864b3b40a..8715653a00b 100644 --- a/whisper.h +++ b/whisper.h @@ -162,7 +162,7 @@ extern "C" { WHISPER_AHEADS_MEDIUM_EN, WHISPER_AHEADS_MEDIUM, WHISPER_AHEADS_LARGE_V1, - WHISPER_AHEADS_LARVE_V2, + WHISPER_AHEADS_LARGE_V2, WHISPER_AHEADS_LARGE_V3, };