aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--llama.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llama.cpp b/llama.cpp
index 4a646eb..33ee4fb 100644
--- a/llama.cpp
+++ b/llama.cpp
@@ -1618,8 +1618,8 @@ static void llama_model_quantize_internal(const std::string & fname_inp, const s
// quantize only 2D tensors
quantize &= (tensor.ne.size() == 2);
- // GG: uncomment this to keep the output layer in FP16
- //if (tensor.name.rfind("output")) {
+ // uncomment this to keep the output layer in FP16
+ //if (tensor.name == "output.weight") {
// quantize = false;
//}