We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4fdf77 commit 53f30d9Copy full SHA for 53f30d9
src/cudauvm/bin/main.cc
@@ -88,6 +88,13 @@ int main(int argc, char** argv) {
88
}
89
std::cout << "Found " << numberOfDevices << " devices" << std::endl;
90
91
+#ifdef CUDAUVM_DISABLE_ADVICE
92
+ std::cout << "cudaMemAdvise() calls are disabled" << std::endl;
93
+#endif
94
+#ifdef CUDAUVM_DISABLE_PREFETCH
95
+ std::cout << "cudaMemPrefetchAsync() calls are disabled" << std::endl;
96
97
+
98
// Initialize EventProcessor
99
std::vector<std::string> edmodules;
100
std::vector<std::string> esmodules;
0 commit comments