Add forgotten fclose()

This commit is contained in:
JohannesGaessler 2023-05-20 14:16:40 +02:00
parent a4da072d39
commit 37f2c6c251

View file

@ -921,4 +921,5 @@ void ggml_cuda_load_data(const char * fname, struct ggml_tensor * tensor, const
tensor->data = buf;
free(buf_host);
fclose(fp);
}