Skip to content

Commit 0df0092

Browse files
author
Yoriyuki Kitta
authored
Merge pull request #152 from fixstars/149-beta1
Releasing v2.1.0b1
2 parents b16f79b + 9fbbbb0 commit 0df0092

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ In other words, ClPy enables softwares written in CuPy to work also on OpenCL de
88
Current ClPy is beta version, forked from [CuPy v2.1.0](https://github.com/cupy/cupy/releases/tag/v2.1.0).
99
ClPy is still under development and works on only limited APIs.
1010

11-
* Basic [ndarray](https://docs-cupy.chainer.org/en/stable/reference/ndarray.html) are supported, but not perfectly
12-
* Basic [universal functions](https://docs-cupy.chainer.org/en/stable/reference/ufunc.html) are supported, but not perfectly
13-
* Most of [custom kernels](https://docs-cupy.chainer.org/en/stable/reference/kernel.html) are supported, but some custom kernel codes might be fail to compile and/or run
14-
* Only SGEMM is supported in BLAS library
11+
* Most of [ndarray](https://docs-cupy.chainer.org/en/v2.5.0/reference/ndarray.html) are supported, but not perfectly
12+
* Most of [universal functions](https://docs-cupy.chainer.org/en/v2.5.0/reference/ufunc.html) are supported, but not perfectly
13+
* All [custom kernel](https://docs-cupy.chainer.org/en/v2.5.0/reference/kernel.html)s are supported.
14+
* All BLAS APIs used by ClPy itself are supported. Other types are currently not.
1515
* Sparse matrix, dnn, rand libraries are not supported
1616
* half and complex are not supported
1717
* Works on only a single device
1818
* No multiple command queue (Stream on CUDA)
1919
* Dockerfile and some other files are just neglected thus don't work well
2020

21-
Original CuPy's tests are not passed perfectly. See current [CuPy's test and example results](https://github.com/fixstars/ClPy/wiki/cupy_test_example_results).
21+
Many original CuPy's tests are passed but not perfectly. See current [CuPy's test and example results](https://github.com/fixstars/ClPy/wiki/cupy_test_example_results).
2222

2323
[Chainer](https://chainer.org/) works with limited situation.
2424
Some examples are confirmed to work. See current [Chainer's test and example results](https://github.com/fixstars/ClPy/wiki/chainer_test_example_results).
@@ -119,10 +119,10 @@ $ python -m pytest test_you_want.py
119119

120120
## Future plan
121121

122-
We are developing v0.2.1beta1 for next release.
122+
We are developing v0.2.1beta2 for next release.
123123

124-
* Map buffer for host memory
125-
* Support all BLAS APIs and accelerate them
124+
* Support all BLAS APIs
125+
* Accelerate chainer's example performance
126126
* Multiple devices
127127
* Multiple CommandQueue (Stream)
128128
* -- and other functions and/or bug fixes that someone develops and/or requests..

clpy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.1.0b0'
1+
__version__ = '2.1.0b1'

0 commit comments

Comments
 (0)