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