Skip to content

Commit

Permalink
Don't generate 'is_rdimm' field
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Dudek <[email protected]>
  • Loading branch information
mtdudek committed Nov 28, 2024
1 parent b6cc204 commit f6add2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rowhammer_tester/targets/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ def get_sim_kwargs(args, interface='litex-sim'):
class LiteDRAMSettingsEncoder(json.JSONEncoder):
def default(self, o):
if isinstance(o, (ControllerSettings, GeomSettings, PhySettings, TimingSettings)):
ignored = ['self', 'refresh_cls']
ignored = ['self', 'refresh_cls', 'is_rdimm']
return {k: v for k, v in vars(o).items() if k not in ignored}
elif isinstance(o, Signal) and isinstance(o.reset, Constant):
return o.reset
Expand Down

0 comments on commit f6add2d

Please sign in to comment.