diff options
author | slaren <slarengh@gmail.com> | 2023-11-05 18:45:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-05 18:45:16 +0100 |
commit | 2833a6f63c1b87c7f4ac574bcf7a15a2f3bf3ede (patch) | |
tree | 2d063c1aa363c6b615daa44c877e6ba78bab122b /common | |
parent | d9ccce2e339ca0396560d18b8637f2c848d72a08 (diff) |
ggml-cuda : fix f16 mul mat (#3961)
* ggml-cuda : fix f16 mul mat
ggml-ci
* silence common.cpp warning (bonus)
Diffstat (limited to 'common')
-rw-r--r-- | common/common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/common.cpp b/common/common.cpp index 37e3ace8..6a711420 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -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; } |