python is version 3.10 on my system.
Using the command
python exercise_runner.py --lecture 0 --algorithm PingPong --type async --devices 3
Gives the following backtrace:
Traceback (most recent call last):
File "/home/mads/GitHub/DistributedExercisesAAU/exercise_runner.py", line 100, in <module>
run_exercise(args.lecture[0], args.algorithm[0], args.type[0], args.devices[0], False)
File "/home/mads/GitHub/DistributedExercisesAAU/exercise_runner.py", line 79, in run_exercise
instance.shell.start()
^^^^^^^^^^^^^^
AttributeError: 'AsyncEmulator' object has no attribute 'shell'
It seems that only the SteppingEmulator has this attribute.
It seems to run anyway, though.
pythonis version 3.10 on my system.Using the command
Gives the following backtrace:
It seems that only the
SteppingEmulatorhas this attribute.It seems to run anyway, though.