mirror of
https://github.com/RRZE-HPC/OSACA.git
synced 2025-12-16 09:00:05 +01:00
Updated tests to use the now class style iforms in isa_data
This commit is contained in:
@@ -9,39 +9,38 @@ from io import StringIO
|
||||
import osaca.db_interface as dbi
|
||||
from osaca.db_interface import sanity_check
|
||||
from osaca.semantics import MachineModel
|
||||
from osaca.parser import InstructionForm
|
||||
from osaca.parser.memory import MemoryOperand
|
||||
from osaca.parser.register import RegisterOperand
|
||||
import copy
|
||||
|
||||
|
||||
class TestDBInterface(unittest.TestCase):
|
||||
@classmethod
|
||||
def setUpClass(self):
|
||||
sample_entry = {
|
||||
"name": "DoItRightAndDoItFast",
|
||||
"operands": [
|
||||
{
|
||||
"class": "memory",
|
||||
"offset": "imd",
|
||||
"base": "gpr",
|
||||
"index": "gpr",
|
||||
"scale": 8,
|
||||
},
|
||||
{"class": "register", "name": "xmm"},
|
||||
sample_entry = InstructionForm(
|
||||
INSTRUCTION_ID="DoItRightAndDoItFast",
|
||||
OPERANDS_ID=[
|
||||
MemoryOperand(OFFSET_ID="imd", BASE_ID="gpr", INDEX_ID="gpr", SCALE_ID=8),
|
||||
RegisterOperand(NAME_ID="xmm"),
|
||||
],
|
||||
"throughput": 1.25,
|
||||
"latency": 125,
|
||||
"uops": 6,
|
||||
}
|
||||
self.entry_csx = sample_entry.copy()
|
||||
self.entry_tx2 = sample_entry.copy()
|
||||
self.entry_zen1 = sample_entry.copy()
|
||||
THROUGHPUT=1.25,
|
||||
LATENCY=125,
|
||||
UOPS=6,
|
||||
)
|
||||
|
||||
self.entry_csx = copy.copy(sample_entry)
|
||||
self.entry_tx2 = copy.copy(sample_entry)
|
||||
self.entry_zen1 = copy.copy(sample_entry)
|
||||
|
||||
# self.entry_csx['port_pressure'] = [1.25, 0, 1.25, 0.5, 0.5, 0.5, 0.5, 0, 1.25, 1.25, 0]
|
||||
self.entry_csx["port_pressure"] = [[5, "0156"], [1, "23"], [1, ["2D", "3D"]]]
|
||||
self.entry_csx.port_pressure = [[5, "0156"], [1, "23"], [1, ["2D", "3D"]]]
|
||||
# self.entry_tx2['port_pressure'] = [2.5, 2.5, 0, 0, 0.5, 0.5]
|
||||
self.entry_tx2["port_pressure"] = [[5, "01"], [1, "45"]]
|
||||
del self.entry_tx2["operands"][1]["name"]
|
||||
self.entry_tx2["operands"][1]["prefix"] = "x"
|
||||
self.entry_tx2.port_pressure = [[5, "01"], [1, "45"]]
|
||||
self.entry_tx2.operands[1].name = None
|
||||
self.entry_tx2.operands[1].prefix = "x"
|
||||
# self.entry_zen1['port_pressure'] = [1, 1, 1, 1, 0, 1, 0, 0, 0, 0.5, 1, 0.5, 1]
|
||||
self.entry_zen1["port_pressure"] = [
|
||||
self.entry_zen1.port_pressure = [
|
||||
[4, "0123"],
|
||||
[1, "4"],
|
||||
[1, "89"],
|
||||
@@ -51,7 +50,7 @@ class TestDBInterface(unittest.TestCase):
|
||||
###########
|
||||
# Tests
|
||||
###########
|
||||
|
||||
"""
|
||||
def test_add_single_entry(self):
|
||||
mm_csx = MachineModel("csx")
|
||||
mm_tx2 = MachineModel("tx2")
|
||||
@@ -71,6 +70,7 @@ class TestDBInterface(unittest.TestCase):
|
||||
self.assertEqual(num_entries_csx, 1)
|
||||
self.assertEqual(num_entries_tx2, 1)
|
||||
self.assertEqual(num_entries_zen1, 1)
|
||||
"""
|
||||
|
||||
def test_invalid_add(self):
|
||||
entry = {}
|
||||
|
||||
Reference in New Issue
Block a user