├── .gitattributes ├── .gitignore ├── LICENSE-MIT ├── README.md ├── benchmarks ├── go │ ├── README.md │ └── qsort.go ├── rust │ ├── Cargo.toml │ ├── README.md │ ├── qsort.rs │ └── rayon_qsort.rs └── zig │ ├── README.md │ ├── async.zig │ ├── build.zig │ └── qsort.zig ├── blog.md └── src ├── thread_pool.zig └── thread_pool_go_based.zig /.gitattributes: -------------------------------------------------------------------------------- 1 | *.zig text=auto eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/benchmarks/go/README.md -------------------------------------------------------------------------------- /benchmarks/go/qsort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/benchmarks/go/qsort.go -------------------------------------------------------------------------------- /benchmarks/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/benchmarks/rust/Cargo.toml -------------------------------------------------------------------------------- /benchmarks/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/benchmarks/rust/README.md -------------------------------------------------------------------------------- /benchmarks/rust/qsort.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/benchmarks/rust/qsort.rs -------------------------------------------------------------------------------- /benchmarks/rust/rayon_qsort.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/benchmarks/rust/rayon_qsort.rs -------------------------------------------------------------------------------- /benchmarks/zig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/benchmarks/zig/README.md -------------------------------------------------------------------------------- /benchmarks/zig/async.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/benchmarks/zig/async.zig -------------------------------------------------------------------------------- /benchmarks/zig/build.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/benchmarks/zig/build.zig -------------------------------------------------------------------------------- /benchmarks/zig/qsort.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/benchmarks/zig/qsort.zig -------------------------------------------------------------------------------- /blog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/blog.md -------------------------------------------------------------------------------- /src/thread_pool.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/src/thread_pool.zig -------------------------------------------------------------------------------- /src/thread_pool_go_based.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kprotty/zap/HEAD/src/thread_pool_go_based.zig --------------------------------------------------------------------------------