We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2e64915 + a352821 commit 9b922f6Copy full SHA for 9b922f6
private.h
@@ -7,7 +7,7 @@
7
8
#define INFO(...) do { if (verbosity > 0) { printf(__VA_ARGS__); } } while (false)
9
#define DEBUG(...) do { if (verbosity > 1) { printf(__VA_ARGS__); } } while (false)
10
-#define TRACE(...) do { if (verbosity > 1) { printf(__VA_ARGS__); } } while (false)
+#define TRACE(...) do { if (verbosity > 2) { printf(__VA_ARGS__); } } while (false)
11
12
#define CUERRSTR() cudaGetErrorString(cudaGetLastError())
13
setup.py
@@ -46,7 +46,7 @@ def is_pure(self):
46
setup(
47
name="libKMCUDA",
48
description="Accelerated K-means on GPU",
49
- version="4.0.3",
+ version="4.0.4",
50
license="MIT",
51
author="Vadim Markovtsev",
52
author_email="[email protected]",
0 commit comments