Skip to content

Commit d32cf38

Browse files
committed
bugfix
1 parent 5e20cb8 commit d32cf38

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

ggml/src/ggml-cuda.cu

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3119,6 +3119,11 @@ GGML_CALL static void ggml_backend_cuda_synchronize(ggml_backend_t backend) {
31193119
GGML_UNUSED(backend);
31203120
}
31213121

3122+
#ifdef USE_CUDA_GRAPH
3123+
// THIREUS
3124+
GGML_LOG_INFO("Thireus: USE_CUDA_GRAPH ON\n");
3125+
#endif
3126+
31223127
#ifdef USE_CUDA_GRAPH
31233128
static bool check_node_graph_compatibility_and_refresh_copy_ops(ggml_backend_cuda_context * cuda_ctx, ggml_cgraph * cgraph,
31243129
bool use_cuda_graph) {

ggml/src/ggml-cuda/common.cuh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -806,8 +806,6 @@ struct ggml_tensor_extra_gpu {
806806

807807
#if ((CUDART_VERSION >= 12000) && defined(GGML_CUDA_USE_GRAPHS) || GGML_USE_HIP)
808808
#define USE_CUDA_GRAPH
809-
// THIREUS
810-
fprintf(stderr, "Thireus: USE_CUDA_GRAPH ON\n");
811809
#endif
812810

813811
struct ggml_graph_node_properties {

0 commit comments

Comments
 (0)