https://github.com/bobankh/ns3-parallel
A Multitask Parallel Executor for ns-3 (network simulator).
https://github.com/bobankh/ns3-parallel
concurrency network networking ns3 ns3-simulator rust
Last synced: 3 months ago
JSON representation
A Multitask Parallel Executor for ns-3 (network simulator).
- Host: GitHub
- URL: https://github.com/bobankh/ns3-parallel
- Owner: BobAnkh
- License: apache-2.0
- Created: 2022-01-21T08:46:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-08T11:59:19.000Z (3 months ago)
- Last Synced: 2025-04-08T12:45:33.717Z (3 months ago)
- Topics: concurrency, network, networking, ns3, ns3-simulator, rust
- Language: Rust
- Homepage: https://crates.io/crates/ns3-parallel
- Size: 53.7 KB
- Stars: 14
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# ns3-parallel
[](https://github.com/BobAnkh/ns3-parallel)
[](https://crates.io/crates/ns3-parallel)
[](https://docs.rs/ns3-parallel)
[](https://github.com/BobAnkh/ns3-parallel/blob/main/LICENSE)A Multitask Parallel Concurrent Executor for ns-3 (network simulator).
## Usage
Define your config struct and param struct, implement trait `BuildParam` for the first and trait `BuildCmd` for the second.
Then call the `ExecutorBuilder` to build a `Executor`. Then launch the tasks, wait for the results.
Examples see `examples/simple.rs`.
To run the example, you can first execute the script `setup-ns3.sh` then execute `cargo run --example simple` in the root directory.
Currently support 4 config file formats: toml, ron, json, yaml. Example config files can see `config.toml` and `config.ron` under root. **Welcome contributions for any new config format**.
## Maintainer
[@BobAnkh](https://github.com/BobAnkh)
## How to contribute
You should follow our [Code of Conduct](/CODE_OF_CONDUCT.md).
See [CONTRIBUTING GUIDELINES](/CONTRIBUTING.md) for contributing conventions.
Make sure to pass all the tests before submitting your code.
### Contributors
## LICENSE
[Apache-2.0](LICENSE) © BobAnkh