DoDo

Results 51 comments of DoDo

Another Raspberry Pi 4B user here (ArchLinux ARM64). Currently using Chromium that annoys me because I need lots of extensions to achieve brave-browser feature parity. And since all those extensions...

In general, it would suffice to simply display TF func's as key-value maps, as [this is the way they are written in the protobuf file](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/framework/attr_value.proto#L46). Furthermore, we also use [list...

I did what you suggested (added `-msse -msse2 -msse3 -msse4` to compile flags and included `` and now I'm getting following compile errors: ``` || In file included from /Users/dodo/Work/Microblink/core-eve/jfalcou-eveTest/Source/EveTest.cpp:39:...

Possibly. I've created a little test like this: ``` TEST( EveTest, supportsSIMD ) { #if defined( __EMSCRIPTEN__ ) && !defined( __wasm_simd128__ ) EXPECT_EQ( eve::current_api, spy::undefined_simd_ ); EXPECT_FALSE( eve::supports_simd ); #else...

If I build without `-msse2`, the `eve::current_api` prints `Undefined SIMD instructions set`. If I build with `-msse2`, but comment-out all usages of `eve::wide`, it prints `X86 SSE2`. If I don't...

Btw, emscripten 2.0.31, which I'm using, is based on LLVM 14, but it still uses libc++ from LLVM 12, which doesn't provide support for concepts STL library. I've worked around...

> Or it means the WASM SIMD files are not made to support post SSE types ? Yes. From the [Emscripten documentation](https://emscripten.org/docs/porting/simd.html#compiling-simd-code-targeting-x86-sse-instruction-set): > Only the 128-bit wide instructions from AVX...

@DenisYaroshevskiy , [this](https://github.com/microblink/eve/commit/a3b36321abc3e70044a60b0db608192010984dad) appears to be working for me at the moment. It compiles and runs and actually uses WASM SIMD (tested on Browser that doesn't support SIMD (Safari) and...

Hi @sveres , this could possibly be a bug in Chrome triggered by advanced usage of its engine by our SDK. Can you tell us what is the value of...

Obviously this project is dead. [Xcode 15 support](https://github.com/fastlane/fastlane/issues/21475) has not been ported here.