Sacha
Sacha
Android now has a neural network API that delegates to NPU/DSP/GPU or falls back to CPU, on devices running Android 8.1 or higher. https://developer.android.com/ndk/guides/neuralnetworks/ Ideally there would be a backend...
Would it be possible to have CUDNN as a runtime detection so that if the user does not have an NVidia video card, it falls back to CPU-based BLAS libraries...
fp16/psimd.h(14): error C2433: 'psimd_f32': '__forceinline' not permitted on data declarations [C:\projects\hunter-h4uji\_testing\_builds\vs-14-2015-sdk-8-1\boo.vcxproj] See: https://ci.appveyor.com/project/xsacha/hunter-h4uji/builds/23144758/job/5x56s69avyxef1m3 Seems to be complaining about the usage of __forceinline when used in PSIMD_INTRINSIC for fp16/psimd.h From here:...
Asked for in #11
What is the purpose of the fp16.h (https://github.com/Maratyszcza/FP16/blob/master/include/fp16.h) install when it seems to only include fp16/fp16.h and (optionally) fp16/psimd.h? It isn't in a subfolder and the user could just as...
Is it possible for a config to be installed in the CMake so we can link to it from other projects?
Will allow you to find with find_package(sleef) and use with target_link_libraries(${TARGET_NAME} sleef::sleef). Only basic right now as I am unfamilar with the project and not sure if there are any...
COMMON_TARGET_DEFINITIONS needs to be PUBLIC on the built libraries so that it is exported to the sleefConfig.cmake. Otherwise, the sleef.h header does not work properly. SLEEF_STATIC_LIBS and ENABLEFLOAT128 are two...
I feel there's something wrong with the usage of the build tool when I have to make a complete native build prior to cross compiling. I found this script which...
This is the first step in a slightly long path of removing compiled binaries used as part of the build process. This performs the generation of mkalias and most of...