We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the raid.py simulator, we tried the following: python raid.py -L 1 -c
python raid.py -L 1 -c
One address to compute were 6183. With our understanding, you are supposed to compute the disc number with address % number_of_discs
address % number_of_discs
Following addresses are located on other discs as computed:
4205 1 LOGICAL READ from addr:4205 size:4096 read [disk 2, offset 2102] ----> 4205 % 4 = 1 9097 1 LOGICAL READ from addr:9097 size:4096 read [disk 2, offset 4548] ----> 9097 % 4 = 1
Are we calculating wrong?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the raid.py simulator, we tried the following:
python raid.py -L 1 -c
One address to compute were 6183. With our understanding, you are supposed to compute the disc number with
address % number_of_discs
Following addresses are located on other discs as computed:
Are we calculating wrong?
The text was updated successfully, but these errors were encountered: