Skip to content

Commit

Permalink
Merge pull request #16 from oleksandr-pavlyk/update-readme
Browse files Browse the repository at this point in the history
Update readme
  • Loading branch information
oleksandr-pavlyk authored Nov 4, 2024
2 parents 1916591 + a827ef7 commit a3ccc29
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 8 deletions.
24 changes: 17 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
path: /usr/share/miniconda/conda-bld/linux-64/${{ env.PACKAGE_NAME }}-*.tar.bz2

build_and_test_windows:
runs-on: windows-latest
runs-on: windows-2019

strategy:
matrix:
Expand All @@ -61,15 +61,25 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: conda-incubator/setup-miniconda@v2

- uses: conda-incubator/setup-miniconda@v3
with:
auto-activate-base: true
conda-build-version: "*"
activate-environment: true
miniforge-variant: Miniforge3
miniforge-version: latest
activate-environment: build
channels: conda-forge
python-version: ${{ matrix.python }}


- name: Install conda build
run: |
conda activate
conda install -y conda-build
conda list -n base
- name: Build conda package
run: conda build --python ${{ matrix.python }} -c conda-forge --override-channels conda-recipe
run: |
conda activate
conda build --python ${{ matrix.python }} -c conda-forge --override-channels conda-recipe
- name: Upload artifact
uses: actions/upload-artifact@v3
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Provide the `build_ext` step with the path to the root VTune install directory.
For instance, on Linux:

export ITT_INCLUDE_DIR=$VTUNE_PROFILER_DIR/include
export ITT_LIBRARY_DIR=$VTUNE_PROFILE_DIR/lib64
export ITT_LIBRARY_DIR=$VTUNE_PROFILER_DIR/lib64
python setup.py install

The build assumes:
Expand Down Expand Up @@ -127,6 +127,13 @@ Call `itt_pt_region_end()` on same thread to end current pt region instance.
* [Intel Distribution for Python](https://software.intel.com/en-us/intel-distribution-for-python)
* [ITT Task API Reference](https://software.intel.com/en-us/node/544206)

## Related projects

Intel(R) Instrumentation and Tracing API [project](https://github.com/intel/ittapi) now provides Python bindings
in [pyitt](https://pypi.org/project/pyitt/) package available on PyPI. It provides `pyitt.compatibility_layers.itt_python`
submodule which fully implements the public API of itt-python.

Users of `itt` are advised to transition to using `pyitt`.

## Thanks

Expand Down

0 comments on commit a3ccc29

Please sign in to comment.