Skip to content

Commit fecdb91

Browse files
authored
Transit to arrayfire-python-wrapper (#6)
* Finish array creation functions * More backend to arrayfire-python-wrapper * Fix help() * Minor fixes * More changes * Add vector algorithms * Add tones of code * Add signals and images * Add device and array management * Remove data. Fix tests * Fix imports * Fix imports * Fix tests. Move constant creation. FIx imports * Remove implicit dtype from thick wrapper * Fix math functions * Minor fixes
1 parent 3bba4a0 commit fecdb91

Some content is hidden

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

75 files changed

+3928
-6992
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ __pycache__
3535

3636
# testing and continuous integration
3737

38+
coverage.xml
3839
.coverage
3940
.pytest_cache/
4041

Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,7 @@ typecheck :
3737

3838
.PHONY : tests
3939
tests :
40-
pytest --color=yes -v -rf --durations=40 \
41-
--cov-config=.coveragerc \
42-
--cov=$(SRC) \
43-
--cov-report=xml
40+
pytest --color=yes -v -rf --durations=40 --cov-config=.coveragerc --cov=$(SRC) --cov-report=xml
4441

4542
# Cleaning
4643

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,21 @@
11
# arrayfire-py
2+
23
Arrayfire python wrapper
4+
5+
## Coverage
6+
7+
- [x] Computer Vision
8+
- [] Events
9+
- [x] Functions to Create and Modify Arrays
10+
- [x] Functions to Work with Internal Array Layout
11+
- [x] Image Processing
12+
- [x] Features
13+
- [x] Input and Output Functions
14+
- [x] Interface Functions
15+
- [x] Linear Algebra
16+
- [x] Machine Learning
17+
- [x] Mathematical Functions
18+
- [x] Signal Processing
19+
- [x] Statistics
20+
- [x] Unified API Functions
21+
- [x] Vector Algorithms

0 commit comments

Comments
 (0)