Skip to content

Update README.md #355

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

Merged
merged 1 commit into from
Jun 23, 2025
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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ SPDX-License-Identifier: Apache-2.0

### Using prebuilt version

1. Create conda environment
1. Create conda environment:

```bash
conda create -n dpbench dpbench -c dppy/label/dev -c conda-forge -c https://software.repos.intel.com/python/conda -c nodefaults --override-channels
conda activate dpbench
```

2. Run specific benchmark, e.g. black_scholes
2. Run specific benchmark, e.g. black_scholes:

```bash
dpbench -b black_scholes run
Expand All @@ -54,7 +54,7 @@ SPDX-License-Identifier: Apache-2.0
conda env create -n dpbench -f ./environments/conda-linux-sycl.yml
```

3. Build DPBench
3. Build DPBench:

```bash
pip install --no-index --no-deps --no-build-isolation -e . -v
Expand All @@ -77,27 +77,27 @@ SPDX-License-Identifier: Apache-2.0
CC=icx CXX=icpx DPBENCH_SYCL=1 python setup.py develop
```

4. Run specific benchmark, e.g. black_scholes
4. Run specific benchmark, e.g. black_scholes:

```bash
dpbench -b black_scholes run
```

### Usage

1. Run all benchmarks
1. Run all benchmarks:

```bash
dpbench -a run
```

2. Generate report
2. Generate report:

```bash
dpbench report
```

3. Device Customization
3. Device Customization:

If a framework is SYCL based, an extra configuration option
`sycl_device` may be set in the framework config file or by passing
Expand Down
Loading