Skip to content

Commit 7d90f74

Browse files
authored
Merge pull request #31 from llohse/object-interface
New C++-style API
2 parents 97baef8 + 099993c commit 7d90f74

File tree

10 files changed

+423
-303
lines changed

10 files changed

+423
-303
lines changed

.clang-format

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
BasedOnStyle: Google
2+
ColumnLimit: 120

.github/workflows/ci.yml

+9
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@ on:
99
- master
1010

1111
jobs:
12+
formatting-check:
13+
name: Formatting Check
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v3
17+
- name: Run clang-format style check for C++ sources.
18+
uses: jidicula/[email protected]
19+
with:
20+
clang-format-version: '16'
1221

1322
linux:
1423
runs-on: ubuntu-latest

README.md

+47-12
Original file line numberDiff line numberDiff line change
@@ -24,42 +24,69 @@ libnpy is a header only library. You only need to download `npy.hpp` into your i
2424

2525
Optional: If you use meson, you can use the provided `meson.build` file to declare the dependency on libnpy.
2626

27-
Reading data:
27+
The API has changed in the last release. The old C-style API is still available, but might get removed in the future.
28+
29+
### Reading data:
2830
```c++
2931
#include "npy.hpp"
3032
#include <vector>
3133
#include <string>
3234

3335
int main() {
34-
std::vector<unsigned long> shape {};
35-
bool fortran_order;
36-
std::vector<double> data;
3736

3837
const std::string path {"data.npy"};
39-
npy::LoadArrayFromNumpy(path, shape, fortran_order, data);
38+
npy::npy_data d = npy::read_npy<double>(path);
39+
40+
std::vector<double> data = d.data;
41+
std::vector<unsigned long> shape = d.shape;
42+
bool fortran_order = d.fortran_order;
4043
}
4144

4245
```
4346

44-
Writing data:
47+
### Writing data:
4548
```c++
4649
#include "npy.hpp"
4750
#include <vector>
4851
#include <string>
4952

5053
int main() {
51-
const std::vector<long unsigned> shape{2, 3};
52-
const bool fortran_order{false};
54+
const std::vector<double> data{1, 2, 3, 4, 5, 6};
55+
56+
npy::npy_data d;
57+
d.data = data;
58+
d.shape = {2, 3};
59+
d.fortran_order = false; // optional
60+
5361
const std::string path{"out.npy"};
62+
write_npy(path, d);
63+
}
64+
65+
```
66+
67+
This will involve an additional copy of the data, which might be undesireable for larger data. The copy can be avoided by using `npy::npy_data_ptr` as follows.
5468

55-
const std::vector<double> data1{1, 2, 3, 4, 5, 6};
56-
npy::SaveArrayAsNumpy(path, fortran_order, shape.size(), shape.data(), data1);
69+
```c++
70+
#include "npy.hpp"
71+
#include <vector>
72+
#include <string>
73+
74+
int main() {
75+
const std::vector<double> data{1, 2, 3, 4, 5, 6};
76+
77+
npy::npy_data_ptr d;
78+
d.data_ptr = data.data();
79+
d.shape = {2, 3};
80+
d.fortran_order = false; // optional
81+
82+
const std::string path{"out.npy"};
83+
write_npy(path, d);
5784
}
5885

5986
```
6087

6188
See `test/` for further examples.
62-
C++11 is required. If you use g++, use `-std=c++11`.
89+
C++14 is required.
6390

6491
## Tests
6592
The tests can be build with `meson>=0.55` and depend on catch2.
@@ -69,7 +96,6 @@ meson setup builddir
6996
meson test -Cbuilddir
7097
```
7198

72-
7399
## Known limitations
74100
1. Only a few data types are supported.
75101

@@ -78,5 +104,14 @@ meson test -Cbuilddir
78104
## Contributing
79105
Feel free to send me a pull request, open an issue, or contact me directly.
80106

107+
The code is formatted with clang-format.
108+
Please test your changes by running the tests and static analysis.
109+
Meson automatically builds a target for clang-tidy:
110+
```
111+
cd tests
112+
meson setup builddir
113+
ninja -C builddir clang-tidy
114+
```
115+
81116
## License
82117
The project is licensed under the [MIT](LICENSE) license

0 commit comments

Comments
 (0)