mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-09 15:29:43 +00:00
Initial windows support (untested)
This commit is contained in:
parent
ac184d5147
commit
a017390358
1 changed files with 31 additions and 3 deletions
34
llama.cpp
34
llama.cpp
|
@ -12,11 +12,15 @@
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
|
||||||
// headers for POSIX mmap
|
// mmap
|
||||||
#if defined (__unix__) || defined (__APPLE__)
|
#if defined (__unix__) || defined (__APPLE__)
|
||||||
# include <sys/mman.h>
|
# include <sys/mman.h>
|
||||||
# include <fcntl.h>
|
# include <fcntl.h>
|
||||||
# include <unistd.h>
|
# include <unistd.h>
|
||||||
|
#elif defined(_WIN32)
|
||||||
|
# define WIN32_LEAN_AND_MEAN
|
||||||
|
# include <Windows.h>
|
||||||
|
//#include <Memoryapi.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LLAMA_USE_SCRATCH
|
#define LLAMA_USE_SCRATCH
|
||||||
|
@ -312,8 +316,31 @@ static void mmap_file(const char* fname, void * &mm_addr, size_t &mm_length) {
|
||||||
mm_addr = NULL;
|
mm_addr = NULL;
|
||||||
mm_length = 0;
|
mm_length = 0;
|
||||||
}
|
}
|
||||||
|
#elif defined(_WIN32)
|
||||||
|
mm_addr = NULL;
|
||||||
|
|
||||||
|
HANDLE hFile = CreateFileA(filename, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
|
||||||
|
if (hFile == INVALID_HANDLE_VALUE) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// not really necessary
|
||||||
|
LARGE_INTEGER fileSize;
|
||||||
|
GetFileSizeEx(hFile, &fileSize);
|
||||||
|
mm_length = fileSize;
|
||||||
|
|
||||||
|
HANDLE hMapping = CreateFileMappingA(hFile, NULL, PAGE_READONLY, 0, 0, NULL);
|
||||||
|
CloseHandle(hFile);
|
||||||
|
|
||||||
|
if (hMapping == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
mm_addr = MapViewOfFile(hMapping, FILE_MAP_READ, 0, 0, 0);
|
||||||
|
CloseHandle(hMapping);
|
||||||
#else
|
#else
|
||||||
// TODO: windows support
|
mm_addr = NULL;
|
||||||
|
mm_length = 0;
|
||||||
(void)(fname); // suppress warnings
|
(void)(fname); // suppress warnings
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -322,8 +349,9 @@ static void munmap_file(void * addr, size_t length) {
|
||||||
#if defined(MAP_FAILED)
|
#if defined(MAP_FAILED)
|
||||||
// POSIX
|
// POSIX
|
||||||
munmap(addr, length);
|
munmap(addr, length);
|
||||||
|
#elif defined(_WIN32)
|
||||||
|
UnmapViewOfFile(addr);
|
||||||
#else
|
#else
|
||||||
// TODO: windows support
|
|
||||||
(void)(addr); // suppress warnings
|
(void)(addr); // suppress warnings
|
||||||
(void)(length);
|
(void)(length);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue