summaryrefslogtreecommitdiff
path: root/src/trace-driven/turing_opcode.h
diff options
context:
space:
mode:
authorMahmoud <[email protected]>2019-10-25 12:51:05 -0400
committerMahmoud <[email protected]>2019-10-25 12:51:05 -0400
commit55cb268d854b448107ce9d7eea8b221a68f449cb (patch)
tree8ad903f9623d299d546eba456b76ff3aff962e32 /src/trace-driven/turing_opcode.h
parent51ef2c4ad87a46c7a640245cca9238514ccd15b8 (diff)
adding binary version and remove core id from the trace parsing
Diffstat (limited to 'src/trace-driven/turing_opcode.h')
-rw-r--r--src/trace-driven/turing_opcode.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/trace-driven/turing_opcode.h b/src/trace-driven/turing_opcode.h
new file mode 100644
index 0000000..5fe9740
--- /dev/null
+++ b/src/trace-driven/turing_opcode.h
@@ -0,0 +1,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