mirror of
https://github.com/ggml-org/whisper.cpp.git
synced 2026-07-31 15:11:29 -05:00
Fix memory sizes
This commit is contained in:
10
whisper.cpp
10
whisper.cpp
@@ -156,11 +156,11 @@ static const std::map<e_model, size_t> MEM_REQ_ENCODE_LAYER = {
|
||||
};
|
||||
|
||||
static const std::map<e_model, size_t> MEM_REQ_DECODE = {
|
||||
{ MODEL_TINY, 94ull*MB },
|
||||
{ MODEL_BASE, 96ull*MB },
|
||||
{ MODEL_SMALL, 98ull*MB },
|
||||
{ MODEL_MEDIUM, 100ull*MB },
|
||||
{ MODEL_LARGE, 102ull*MB },
|
||||
{ MODEL_TINY, 200ull*MB },
|
||||
{ MODEL_BASE, 202ull*MB },
|
||||
{ MODEL_SMALL, 204ull*MB },
|
||||
{ MODEL_MEDIUM, 206ull*MB },
|
||||
{ MODEL_LARGE, 208ull*MB },
|
||||
};
|
||||
|
||||
static const std::map<e_model, size_t> MEM_REQ_DECODE_LAYER = {
|
||||
|
||||
Reference in New Issue
Block a user