summaryrefslogtreecommitdiff
path: root/src/trace-driven/turing_opcode.h
blob: 5fe974049c7d5175b035114bed53e22b7966729e (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


#ifndef TURING_OPCODE_H
#define TURING_OPCODE_H

#include "../abstract_hardware_model.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