Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def main():
##### Running the file
You can run it using Rust interpreter (Sequential)
```sh
bend run sequential_sum.bend -s
bend run-rs sequential_sum.bend -s
```

Or you can run it using C interpreter (Sequential)
Expand Down Expand Up @@ -168,7 +168,7 @@ In this example, the (3 + 4) sum does not depend on the (1 + 2), meaning that it
##### Running the file
You can run it using Rust interpreter (Sequential)
```sh
bend run parallel_sum.bend -s
bend run-rs parallel_sum.bend -s
```

Or you can run it using C interpreter (Parallel)
Expand All @@ -189,7 +189,7 @@ The code snippet below implements a [bitonic sorter](https://en.wikipedia.org/wi

#### Bitonic Sorter Benchmark

- `bend run`: CPU, Apple M3 Max: 12.15 seconds
- `bend run-rs`: CPU, Apple M3 Max: 12.15 seconds
- `bend run-c`: CPU, Apple M3 Max: 0.96 seconds
- `bend run-cu`: GPU, NVIDIA RTX 4090: 0.21 seconds

Expand Down
Loading