mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-06-29 12:35:16 +00:00
rpc : fix cache directory initialization (#13188)
Signed-off-by: xiaofei <hbuxiaofei@gmail.com>
This commit is contained in:
@ -304,8 +304,9 @@ int main(int argc, char * argv[]) {
|
|||||||
get_backend_memory(&free_mem, &total_mem);
|
get_backend_memory(&free_mem, &total_mem);
|
||||||
}
|
}
|
||||||
const char * cache_dir = nullptr;
|
const char * cache_dir = nullptr;
|
||||||
std::string cache_dir_str = fs_get_cache_directory() + "rpc/";
|
std::string cache_dir_str;
|
||||||
if (params.use_cache) {
|
if (params.use_cache) {
|
||||||
|
cache_dir_str = fs_get_cache_directory() + "rpc/";
|
||||||
if (!fs_create_directory_with_parents(cache_dir_str)) {
|
if (!fs_create_directory_with_parents(cache_dir_str)) {
|
||||||
fprintf(stderr, "Failed to create cache directory: %s\n", cache_dir_str.c_str());
|
fprintf(stderr, "Failed to create cache directory: %s\n", cache_dir_str.c_str());
|
||||||
return 1;
|
return 1;
|
||||||
|
Reference in New Issue
Block a user