Browse Source

ggml-cuda: remove unneccesary prints on ggml_cuda_init (#18502)

Aman Gupta 4 weeks ago
parent
commit
26831bded9
1 changed files with 0 additions and 10 deletions
  1. 0 10
      ggml/src/ggml-cuda/ggml-cuda.cu

+ 0 - 10
ggml/src/ggml-cuda/ggml-cuda.cu

@@ -201,16 +201,6 @@ static ggml_cuda_device_info ggml_cuda_init() {
     GGML_ASSERT(info.device_count <= GGML_CUDA_MAX_DEVICES);
     GGML_ASSERT(info.device_count <= GGML_CUDA_MAX_DEVICES);
 
 
     int64_t total_vram = 0;
     int64_t total_vram = 0;
-#ifdef GGML_CUDA_FORCE_MMQ
-    GGML_LOG_INFO("%s: GGML_CUDA_FORCE_MMQ:    yes\n", __func__);
-#else
-    GGML_LOG_INFO("%s: GGML_CUDA_FORCE_MMQ:    no\n", __func__);
-#endif // GGML_CUDA_FORCE_MMQ
-#ifdef GGML_CUDA_FORCE_CUBLAS
-    GGML_LOG_INFO("%s: GGML_CUDA_FORCE_CUBLAS: yes\n", __func__);
-#else
-    GGML_LOG_INFO("%s: GGML_CUDA_FORCE_CUBLAS: no\n", __func__);
-#endif // GGML_CUDA_FORCE_CUBLAS
     GGML_LOG_INFO("%s: found %d " GGML_CUDA_NAME " devices:\n", __func__, info.device_count);
     GGML_LOG_INFO("%s: found %d " GGML_CUDA_NAME " devices:\n", __func__, info.device_count);
 
 
     std::vector<std::pair<int, std::string>> turing_devices_without_mma;
     std::vector<std::pair<int, std::string>> turing_devices_without_mma;