Skip to content

Commit

Permalink
Removing debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
khuck committed Oct 28, 2024
1 parent f6df10a commit 98ebff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apex/apex_opencl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2037,7 +2037,7 @@ double sync_clocks(queueData& qData) {
};
size_t resolution;
err = clGetDeviceInfo_noinst(qData.device, CL_DEVICE_PROFILING_TIMER_RESOLUTION, sizeof(size_t), &resolution, NULL);
std::cout << "Resolution: " << resolution << std::endl;
//std::cout << "Resolution: " << resolution << std::endl;
checkError("Error getting device info.\n");
buffer = clCreateBuffer_noinst(qData.context, CL_MEM_READ_WRITE|CL_MEM_ALLOC_HOST_PTR, sizeof(void*), NULL, &err);
checkError("Cannot Create Sync Buffer.\n");
Expand Down

0 comments on commit 98ebff4

Please sign in to comment.