blob: 4df44d9c0db62237c2bc93170611a2343b94a817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//developed by Mahmoud Khairy, Purdue Univ
//[email protected]
#ifndef TURING_OPCODE_H
#define TURING_OPCODE_H
#include "trace_opcode.h"
#include <unordered_map>
#include <string>
//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
|