Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[benchmark] Fixes benchmark README version #1410

Merged
merged 1 commit into from
Dec 9, 2021
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
16 changes: 8 additions & 8 deletions extensions/benchmark/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,25 +48,25 @@ sudo snap alias djlbench djl-bench
- Or download .deb package from S3

```
curl -O https://publish.djl.ai/djl-bench/0.14.0/djl-bench_0.13.0-1_all.deb
sudo dpkg -i djl-bench_0.13.0-1_all.deb
curl -O https://publish.djl.ai/djl-bench/0.14.0/djl-bench_0.14.0-1_all.deb
sudo dpkg -i djl-bench_0.14.0-1_all.deb
```

For centOS or Amazon Linux 2

You can download djl-bench zip file from [here](https://publish.djl.ai/djl-bench/0.14.0/benchmark-0.13.0.zip).
You can download djl-bench zip file from [here](https://publish.djl.ai/djl-bench/0.14.0/benchmark-0.14.0.zip).

```
curl -O https://publish.djl.ai/djl-bench/0.14.0/benchmark-0.13.0.zip
unzip benchmark-0.13.0.zip
rm benchmark-0.13.0.zip
sudo ln -s $PWD/benchmark-0.13.0/bin/benchmark /usr/bin/djl-bench
curl -O https://publish.djl.ai/djl-bench/0.14.0/benchmark-0.14.0.zip
unzip benchmark-0.14.0.zip
rm benchmark-0.14.0.zip
sudo ln -s $PWD/benchmark-0.14.0/bin/benchmark /usr/bin/djl-bench
```

For Windows

We are considering to create a `chocolatey` package for Windows. For the time being, you can
download djl-bench zip file from [here](https://publish.djl.ai/djl-bench/0.14.0/benchmark-0.13.0.zip).
download djl-bench zip file from [here](https://publish.djl.ai/djl-bench/0.14.0/benchmark-0.14.0.zip).

Or you can run benchmark using gradle:

Expand Down