aboutsummaryrefslogtreecommitdiff
path: root/src/trace-driven/turing_opcode.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/trace-driven/turing_opcode.h')
-rw-r--r--src/trace-driven/turing_opcode.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/trace-driven/turing_opcode.h b/src/trace-driven/turing_opcode.h
deleted file mode 100644
index f872070..0000000
--- a/src/trace-driven/turing_opcode.h
+++ /dev/null
@@ -1,25 +0,0 @@
-//developed by Mahmoud Khairy, Purdue Univ
-
-#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