mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-08-13 11:57:43 -04:00
Do not close file after mmap (Windows version) (#1034)
This commit is contained in:
@@ -202,7 +202,6 @@ struct llama_mmap {
|
|||||||
|
|
||||||
HANDLE hMapping = CreateFileMappingA(hFile, NULL, PAGE_READONLY, 0, 0, NULL);
|
HANDLE hMapping = CreateFileMappingA(hFile, NULL, PAGE_READONLY, 0, 0, NULL);
|
||||||
DWORD error = GetLastError();
|
DWORD error = GetLastError();
|
||||||
CloseHandle(hFile);
|
|
||||||
|
|
||||||
if (hMapping == NULL) {
|
if (hMapping == NULL) {
|
||||||
throw format("CreateFileMappingA failed: %s", llama_format_win_err(error).c_str());
|
throw format("CreateFileMappingA failed: %s", llama_format_win_err(error).c_str());
|
||||||
|
Reference in New Issue
Block a user