This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define WIN32_LEAN_AND_MEAN | |
#include <Windows.h> | |
#include <memory> | |
#include <vector> | |
#include <list> | |
#include <future> | |
#include <atomic> | |
#include <cassert> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <vector> | |
#include <thread> | |
#include <future> | |
#include <iostream> | |
#include <string> | |
#include <algorithm> | |
#include <cuda.h> | |
#pragma comment(lib, "cuda.lib") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Print symstore hash values for PDB amd EXE/DLL files. | |
Usage: | |
python symhash.py [file1 [file2 ...]] | |