mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-07-02 05:15:47 +00:00
ggml-cuda : fix f16 mul mat (#3961)
* ggml-cuda : fix f16 mul mat ggml-ci * silence common.cpp warning (bonus)
This commit is contained in:
@ -101,8 +101,8 @@ void process_escapes(std::string& input) {
|
||||
input[output_idx++] = char(val);
|
||||
break;
|
||||
}
|
||||
// Intentionally fall through to default.
|
||||
}
|
||||
// fall through
|
||||
default: input[output_idx++] = '\\';
|
||||
input[output_idx++] = input[input_idx]; break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user