You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A recent commit introduced checks for different file extensions (.exe and non-.exe) to support both Linux and Windows environments. However, this change results in a RuntimeError when the required files (llama-quantize, llama-quantize.exe, quantize, or quantize.exe) are not found in the expected directories, causing the llama.cpp installation to fail in Google Colab.
RuntimeError: Unsloth: The file ('llama.cpp/llama-quantize' or 'llama.cpp/llama-quantize.exe' if you are on Windows WSL) or 'llama.cpp/quantize' does not exist. But we expect this file to exist! Maybe the llama.cpp developers changed the name or check extension of the llama-quantize file.
Steps to Reproduce
Install llama.cpp in a Google Colab environment.
Ensure that llama-quantize or quantize files are missing or renamed.
The installation process fails with a RuntimeError.
Expected Behavior
The installation process should complete successfully when the required files are correctly identified and present.
Actual Behavior
The installation fails with a RuntimeError due to missing or misidentified llama-quantize or quantize files in Google Colab.
Consider modifying the file detection logic to accommodate different execution environments, particularly for Google Colab. A fallback mechanism or a clear warning message with resolution steps would improve usability.
The text was updated successfully, but these errors were encountered:
Description
A recent commit introduced checks for different file extensions (
.exe
and non-.exe) to support both Linux and Windows environments. However, this change results in aRuntimeError
when the required files (llama-quantize
,llama-quantize.exe
,quantize
, orquantize.exe
) are not found in the expected directories, causing thellama.cpp
installation to fail in Google Colab.Commit Details
llama-quantize
error on Windows WSL by modifyingsave.py
(fixes GGUF saving issue)..exe
and non-.exe files for Linux and Windows.Pull Request Details
Error Message
Steps to Reproduce
llama.cpp
in a Google Colab environment.llama-quantize
orquantize
files are missing or renamed.RuntimeError
.Expected Behavior
The installation process should complete successfully when the required files are correctly identified and present.
Actual Behavior
The installation fails with a
RuntimeError
due to missing or misidentifiedllama-quantize
orquantize
files in Google Colab.Additional Information
For reference, please see:
Suggested Fix
Consider modifying the file detection logic to accommodate different execution environments, particularly for Google Colab. A fallback mechanism or a clear warning message with resolution steps would improve usability.
The text was updated successfully, but these errors were encountered: