Skip to content

Commit

Permalink
hw: Minor fix in hw2 docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
powerjg committed Dec 30, 2024
1 parent 690a8fc commit ddd9cb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assignment-2/components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ def __init__(self):

class DDR4(ChanneledMemory):
"""
HW1DDR4_2400_8x8 models a 1 GiB single channel DDR4 DRAM memory with a data
DDR4 models a 1 GiB single channel DDR4 DRAM memory with a data
bus clocked at 2400MHz.
The theoretical peak bandwidth of DDR3 is 19.2 GB/s.
The theoretical peak bandwidth of DDR4 is 19.2 GB/s.
"""
def __init__(self):
super().__init__(DDR4_2400_8x8, 1, 128, size="1GiB")
Expand Down

0 comments on commit ddd9cb1

Please sign in to comment.