@@ -24,42 +24,69 @@ libnpy is a header only library. You only need to download `npy.hpp` into your i
24
24
25
25
Optional: If you use meson, you can use the provided ` meson.build ` file to declare the dependency on libnpy.
26
26
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:
28
30
``` c++
29
31
#include " npy.hpp"
30
32
#include < vector>
31
33
#include < string>
32
34
33
35
int main () {
34
- std::vector<unsigned long > shape {};
35
- bool fortran_order;
36
- std::vector<double > data;
37
36
38
37
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;
40
43
}
41
44
42
45
```
43
46
44
- Writing data:
47
+ ### Writing data:
45
48
``` c++
46
49
#include " npy.hpp"
47
50
#include < vector>
48
51
#include < string>
49
52
50
53
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
+
53
61
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.
54
68
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);
57
84
}
58
85
59
86
```
60
87
61
88
See ` test/ ` for further examples.
62
- C++11 is required. If you use g++, use ` -std=c++11 ` .
89
+ C++14 is required.
63
90
64
91
## Tests
65
92
The tests can be build with ` meson>=0.55 ` and depend on catch2.
@@ -69,7 +96,6 @@ meson setup builddir
69
96
meson test -Cbuilddir
70
97
```
71
98
72
-
73
99
## Known limitations
74
100
1 . Only a few data types are supported.
75
101
@@ -78,5 +104,14 @@ meson test -Cbuilddir
78
104
## Contributing
79
105
Feel free to send me a pull request, open an issue, or contact me directly.
80
106
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
+
81
116
## License
82
117
The project is licensed under the [ MIT] ( LICENSE ) license
0 commit comments