Skip to content

Update gold 2021 to 0.5.0rc2 #202

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 10 commits into from
Dec 5, 2020
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var/
*.egg-info/
.installed.cfg
*.egg
dppl_conda_pkg
dpctl_conda_pkg

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down Expand Up @@ -81,4 +81,4 @@ target/
.python-version

# generated Cython files
_dppl_bindings*
_dpctl_bindings*
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include versioneer.py
recursive-include dpctl/include *.h *.hpp
include dpctl/*.pxd
include dpctl/*DPPL*Interface.*
include dpctl/*DPCTL*Interface.*
include dpctl/tests/input_files/*
global-exclude *.cpp
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,17 @@ Examples
========
See examples in folder `examples`.

Run examples:
Run python examples:
```bash
python examples/create_sycl_queues.py
for script in `ls examples/python/`; do echo "executing ${script}"; python examples/python/${script}; done
```

Examples of building Cython extensions with DPC++ compiler, that interoperate with dpCtl can be found in
folder `cython`.

Each example in `cython` folder can be built using `CC=clang CXX=dpcpp python setup.py build_ext --inplace`.
Please refer to `run.py` script in respective folders to execute extensions.

Tests
=====
See tests in folder `dpctl/tests`.
Expand Down
91 changes: 0 additions & 91 deletions backends/include/dppl_sycl_enum_types.h

This file was deleted.

Loading