Skip to content

Commit f67d2c6

Browse files
authored
Merge pull request #202 from diptorupd/update-gold-2021-0.5.0rc2
Update gold 2021 to 0.5.0rc2
2 parents bcb0e70 + bbd586a commit f67d2c6

File tree

102 files changed

+4071
-2804
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+4071
-2804
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ var/
4141
*.egg-info/
4242
.installed.cfg
4343
*.egg
44-
dppl_conda_pkg
44+
dpctl_conda_pkg
4545

4646
# PyInstaller
4747
# Usually these files are written by a python script from a template
@@ -81,4 +81,4 @@ target/
8181
.python-version
8282

8383
# generated Cython files
84-
_dppl_bindings*
84+
_dpctl_bindings*

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
include versioneer.py
22
recursive-include dpctl/include *.h *.hpp
33
include dpctl/*.pxd
4-
include dpctl/*DPPL*Interface.*
4+
include dpctl/*DPCTL*Interface.*
55
include dpctl/tests/input_files/*
66
global-exclude *.cpp

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,17 @@ Examples
7676
========
7777
See examples in folder `examples`.
7878

79-
Run examples:
79+
Run python examples:
8080
```bash
81-
python examples/create_sycl_queues.py
81+
for script in `ls examples/python/`; do echo "executing ${script}"; python examples/python/${script}; done
8282
```
8383

84+
Examples of building Cython extensions with DPC++ compiler, that interoperate with dpCtl can be found in
85+
folder `cython`.
86+
87+
Each example in `cython` folder can be built using `CC=clang CXX=dpcpp python setup.py build_ext --inplace`.
88+
Please refer to `run.py` script in respective folders to execute extensions.
89+
8490
Tests
8591
=====
8692
See tests in folder `dpctl/tests`.

backends/include/dppl_sycl_enum_types.h

Lines changed: 0 additions & 91 deletions
This file was deleted.

0 commit comments

Comments
 (0)