diff options
author | Johannes Gäßler <johannesg@5d6.de> | 2023-06-17 19:15:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-17 19:15:02 +0200 |
commit | 2c9380dd2f77e41149340f3ecb09764d793b16db (patch) | |
tree | 55a8e2cfc2dce879981d9610f499f292a4702b31 /examples | |
parent | 051e1b0e6a6e3aee7d989b47760980e6fda5861c (diff) |
Only one CUDA stream per device for async compute (#1898)
Diffstat (limited to 'examples')
-rw-r--r-- | examples/common.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/common.cpp b/examples/common.cpp index 055383b..fed24e0 100644 --- a/examples/common.cpp +++ b/examples/common.cpp @@ -106,9 +106,6 @@ bool gpt_params_parse(int argc, char ** argv, gpt_params & params) { } if (arg == "-s" || arg == "--seed") { -#if defined(GGML_USE_CUBLAS) - fprintf(stderr, "WARNING: when using cuBLAS generation results are NOT guaranteed to be reproducible.\n"); -#endif if (++i >= argc) { invalid_param = true; break; |