RCIIIcm

Results 7 comments of RCIIIcm

I have this same issue, though I don't get an error when I put a timestamp in the entry like your "ljetni kamp" example. The README is a little confusing...

I'm having the same issue. The file is 12GB uncompressed, the machine has 48GB RAM. How can I check to see where the error is coming from? Install CNPy and...

The following loads the file fine and dumps a bunch of the first row onto the screen. ``` #include "cnpy.h" int main() { cnpy::NpyArray arr = cnpy::npy_load("restframe.npy"); float* loaded_data =...

I just did what I needed to do in C++, so I no longer have an outstanding issue. I tried importing with "dotranspose=F" and had the same error. I also...

Ah! I have been working with single-precision floats this whole time (i.e. `numpy.float32`). I wonder if that is the source of the trouble, rather than the size of the array?...

What about failing with a message if an incorrect type is passed? Maybe right after checking for endianness on line 94 in `cnpy.cpp` while parsing the header there could be...

Ah, I see. I hadn't noticed that was a replica of the original `cnpy.cpp`. We can still see that word size in the `cnpy::NpyArray` struct that's hanging around in `cnpyMod.cpp`,...