"test/vscode:/vscode.git/clone" did not exist on "25b2ed078779330c9ccca3fa058aa6fa8151572b"
- 01 Feb, 2024 28 commits
-
-
Antoine Kaufmann authored
-
Antoine Kaufmann authored
-
Marvin Meiers authored
-
Marvin Meiers authored
-
Marvin Meiers authored
Add a new method init_network to NS3E2ENet that does some initialization before the experiment is run. It should be called after all components were added to the network.
-
Marvin Meiers authored
This introduces the E2ELinkAssigner that can automatically create links of given types and create all the necessary NS3E2ENet instances.
-
Antoine Kaufmann authored
-
Antoine Kaufmann authored
-
Antoine Kaufmann authored
Subclasses can override to set up more state before the rest of the initialization for running occurs.
-
Antoine Kaufmann authored
So far NIC sims would directly modify the NetSim's list, not giving the opportunity for subclasses to override. This istead adds a method for this.
-
Antoine Kaufmann authored
-
Antoine Kaufmann authored
-
Antoine Kaufmann authored
Useful for running ns-3 only simulations.
-
Antoine Kaufmann authored
-
Marvin Meiers authored
-
Marvin Meiers authored
This adds a new component E2ESimbricksNetwork to the end-to-end framework, which allows to connect to other simulated networks through Simbricks.
-
Marvin Meiers authored
This avoids issues for parameter strings containing characters that are treated specially while parsing the arguments, e.g. whitespace.
-
Marvin Meiers authored
Instead of passing all parameters using the command line, we write them first into a file and then pass the filename to the end-to-end framework.
-
Marvin Meiers authored
Use the new basic building blocks SwitchNode and SimpleChannel in the ns3 end-to-end framework to build topologies.
-
Marvin Meiers authored
-
Marvin Meiers authored
-
Marvin Meiers authored
-
Marvin Meiers authored
This adds support for configuring and running simulations using the ns3 end-to-end framework.
-
Marvin Meiers authored
-
Marvin Meiers authored
Update to newer ns-3 version and adapt code for changes (mostly renamed files and command line parameters) in the ns-3 submodule.
-
Antoine Kaufmann authored
-
Antoine Kaufmann authored
Also implements support for passing this through to qemu.
-
Antoine Kaufmann authored
-
- 28 Jan, 2024 1 commit
-
-
Hejing Li authored
-
- 25 Jan, 2024 1 commit
-
-
Hejing Li authored
-
- 24 Jan, 2024 1 commit
-
-
Hejing Li authored
-
- 22 Jan, 2024 1 commit
-
-
Hejing Li authored
-
- 18 Jan, 2024 1 commit
-
-
Hejing Li authored
-
- 13 Jan, 2024 3 commits
-
-
Hejing Li authored
-
Jonas Kaufmann authored
This change is mostly about the default semantics of asyncio.wait(). It doesn't forward any exceptions that are raised by any of the coroutines it waits for. This effectively causes exceptions to be swallowed. In contrast, asyncio.gather() forwards exceptions to its calling coroutine.
-
Jonas Kaufmann authored
The reason we didn't spot this earlier is that exceptions were swallowed by the call to `asyncio.wait()` in `runners.py:ExperimentBaseRunner.terminate_collect_sims()` when invoking `int_term_kill()`. Instead, we now use `asyncio.gather()`, which forwards exceptions to the calling coroutine.
-
- 03 Jan, 2024 2 commits
-
-
Antoine Kaufmann authored
Currently --repo, which is used to find simulators etc., defaults to '..', which only works when executing in the 'experiments' directory in the simbricks repo. Instead we make this relative to the run.py-file's path.
-
Antoine Kaufmann authored
So far, simulator instances not connected to any other instances were skipped accidentally when creating the graph.
-
- 07 Dec, 2023 1 commit
-
-
Jonas Kaufmann authored
Currently, when a checkpoint is created in gem5 using the KVM CPU, the simulated tick when the checkpoint is taken will end up in the few seconds or more when the KVM CPU is slow. When the checkpoint is afterwards restored, gem5 will continue the simulation at this tick. This means that other, synchronized simulators first have to catch up, essentially just synchronizing without performing any useful work. Depending on their speed, this can take a lot of time and is especially costly with a RTL simulator in the loop. To avoid this we now, by default, edit the to be restored gem5 checkpoint to start at tick 0 instead.
-
- 05 Dec, 2023 1 commit
-
-
Jonas Kaufmann authored
-