├── .gitattributes ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── analyze.py ├── inter_latencies ├── async │ └── .gitignore └── busy │ └── .gitignore ├── intra_latencies ├── async_multi_thread │ └── .gitignore └── async_single_thread │ └── .gitignore └── src ├── main.rs └── utils └── mod.rs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xDub/rust-channel-benchmark/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xDub/rust-channel-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xDub/rust-channel-benchmark/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xDub/rust-channel-benchmark/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xDub/rust-channel-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xDub/rust-channel-benchmark/HEAD/analyze.py -------------------------------------------------------------------------------- /inter_latencies/async/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt -------------------------------------------------------------------------------- /inter_latencies/busy/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt -------------------------------------------------------------------------------- /intra_latencies/async_multi_thread/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt -------------------------------------------------------------------------------- /intra_latencies/async_single_thread/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xDub/rust-channel-benchmark/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xDub/rust-channel-benchmark/HEAD/src/utils/mod.rs --------------------------------------------------------------------------------