blob: 97921ca4de3ed31e5acc9ab1abc961528615e5af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// developed by Mahmoud Khairy, Purdue Univ
// [email protected]
#ifndef TURING_OPCODE_H
#define TURING_OPCODE_H
#include <string>
#include <unordered_map>
#include "trace_opcode.h"
// TO DO: moving this to a yml or def files
#define TURING_BINART_VERSION 72
/// Tuing SM_72 ISA
// see: https://docs.nvidia.com/cuda/cuda-binary-utilities/index.html
static const std::unordered_map<std::string, OpcodeChar> Turing_OpcodeMap = {
// TO fill
};
#endif
|