Skip to content

Commit 5e5513f

Browse files
Merge pull request #1862 from IntelPython/backport-gh-1860
Add Intel channel for installing wheels
2 parents 786365e + f686a96 commit 5e5513f

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.18.1] - Oct. 11, 2024
8+
9+
### Changed
10+
11+
* Updated installation instructions [gh-1862](https://github.com/IntelPython/dpctl/pull/1862)
12+
713
## [0.18.0] - Sept. 26, 2024
814

915
This release reaches an important milestone by making offloading fully asynchronous.
@@ -26,7 +32,7 @@ The full list of changes that went into this release are:
2632
* `dpctl::tensor::usm_memory` class defined in `dpctl4pybind11.hpp` adds constructor to create Python USM memory objects viewing into existing USM allocations, which can be made by an external library [gh-1782](https://github.com/IntelPython/dpctl/pull/1782)
2733
* Add support for COVERAGE build type in project's CMake script [gh-1692](https://github.com/IntelPython/dpctl/pull/1692)
2834

29-
### Change
35+
### Changed
3036

3137
* Change ownership of USM allocation by `dpctl.memory` objects, make executions of `dpctl.tensor` operations asynchronous [gh-1705](https://github.com/IntelPython/dpctl/pull/1705)
3238
* Add support for Python scalars by `tensor.where` function [gh-1719](https://github.com/IntelPython/dpctl/pull/1719)

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ conda install dpctl -c https://software.repos.intel.com/python/conda/ -c conda-f
7272

7373
## Pip
7474

75-
The `dpctl` can be installed using `pip` obtaining wheel packages from PyPi.
76-
To install `dpctl` wheel package, run the following command:
75+
The `dpctl` can be installed using `pip` obtaining wheel packages either from PyPi or from Intel(R) channel.
76+
To install `dpctl` wheel package from Intel(R) channel, run the following command:
7777

7878
```bash
79-
python -m pip install dpctl
79+
python -m pip install --index-url https://software.repos.intel.com/python/pypi dpctl
8080
```
8181

8282
Installing the bleeding edge

docs/doc_sources/beginners_guides/installation.rst

+7
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,13 @@ Binary wheels are published with Python Package Index (https://pypi.org/project/
5454
5555
python -m pip install dpctl
5656
57+
58+
Binary wheels of ``dpctl`` and its dependencies are also published on Intel(R) channel. To install from this non-default package index,
59+
use
60+
61+
.. code-block:: bash
62+
python -m pip install --index-url https://software.repos.intel.com/python/pypi dpctl
63+
5764
.. note::
5865
As of April 2024, installation using ``pip`` on Linux* requires
5966
that host operating system had ``libstdc++.so`` library version 6.0.29

0 commit comments

Comments
 (0)