Chris Taylor
Chris Taylor
Sorry about the confusion. I had to go check the code to be sure. _dense_count = D _block_count = N _mix_count = _dense_count + 6 So it looks like the...
Good point. I'll improve it tonight after work On Tue, Aug 27, 2019, 11:16 PM Orson Peters wrote: > @catid Another issue I have with that > particular section of...
You got it. On Wed, Aug 28, 2019, 4:31 PM Orson Peters wrote: > Perhaps also could be added how matrix J is generated. > > — > You are...
If it's segfaulting probably the best way to debug is to build in debug mode and attach a debugger to it. Probably some input is invalid to the C++ code.
I read some ctypes docs. I think what might be missing is this: wirehair.wirehair_encoder_create.restype = ctypes.c_void_p Maybe also need to wrap it like this: c_void_p(wirehair.wirehair_encoder_create(...)) What may be happening is...
On Raspbian OS you are very limited. It's 32-bit and doesn't support ARM NEON by default. If you switch to a 64-bit OS when setting up the SD card it...
You may need to add some more defines to this line in gf256.h: #if defined(ANDROID) || defined(IOS) || defined(LINUX_ARM) || defined(__powerpc__) || defined(__s390__) #define GF256_TARGET_MOBILE #endif // ANDROID
Nice fix thank you for contributing!
Yeah auto-detect should be how it works for sure. Totally agreed. I think for this sort of thing, if it builds it should work because you can trust the intrinsics...
> Hi, when I run Benchmark() on the Ubuntu OS platform, I find that the performance is much lower than that of the windows OS platform (one order of magnitude...