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:
slaren 2023-11-05 18:45:16 +01:00 committed by GitHub
parent d9ccce2e33
commit 2833a6f63c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View file

@ -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;
}