Comment out a debug output

This commit is contained in:
Yutaka Sawada
2024-11-30 11:08:13 +09:00
committed by GitHub
parent a9fa31c99b
commit 4545803963

View File

@@ -1,5 +1,5 @@
// lib_opencl.c
// Copyright : 2024-01-21 Yutaka Sawada
// Copyright : 2024-11-30 Yutaka Sawada
// License : GPL
#ifndef _WIN32_WINNT
@@ -706,7 +706,9 @@ int init_OpenCL(unsigned int unit_size, int *src_max)
}
if (OpenCL_group_num > data_size){
OpenCL_group_num = data_size;
#ifdef DEBUG_OUTPUT
printf("Number of work groups is reduced to %zd\n", OpenCL_group_num);
#endif
}
// データへのアクセス方法をデバイスによって変える