Skip to content

Instantly share code, notes, and snippets.

@satojkovic
Created October 18, 2017 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save satojkovic/91720a3b01c49be9f00ad545f6c42947 to your computer and use it in GitHub Desktop.
Save satojkovic/91720a3b01c49be9f00ad545f6c42947 to your computer and use it in GitHub Desktop.
print installed cudnn version
#include <cudnn.h>
#include <iostream>
int main(int argc, char** argv) {
std::cout << "CUDNN_VERSION: " << CUDNN_VERSION << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment