Matthieu Garrigues

Results 79 comments of Matthieu Garrigues

Hello fish2000, Thanks for the proposition. I do not need these bridge today but if you do, your contributions are welcome. I suggest that we follow this convention: The code...

Make sure your Clang version suport c++14 http://clang.llvm.org/cxx_status.html Here is your compiler version from your gist: ``` -- The CXX compiler identification is AppleClang 6.0.0.6000056 ``` Do you know which...

I upgraded to 2.9.1 and fixed arm64-osx in this PR: https://github.com/microsoft/vcpkg/pull/25250 It is inspired from this PR but fixes other things, feel free to copy it in this PR or...

> BTW, why is optimization O3 set in this context? > > ``` > if(VCPKG_TARGET_ARCHITECTURE STREQUAL "x86_64") > set(ENV{CC_OPT_FLAGS} "/arch:AVX") > else() > set(ENV{CC_OPT_FLAGS} "-O3") > endif() > ``` arch...

Could you add this to `tensorflow-common.cmake` to support cross compilation on osx ? if(VCPKG_TARGET_IS_OSX AND VCPKG_TARGET_ARCHITECTURE STREQUAL "x64" ) list(APPEND BUILD_OPTS --cpu=darwin) endif() if(VCPKG_TARGET_IS_OSX AND VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64") list(APPEND BUILD_OPTS...

> Have you tried to cross-compile with these diff? I think cross-compile tensorflow might not be trivial. yes, I works on my macos machine.

> `x64-osx` failed, error message: Are you sure you have the right setup to do cross compilation on your mac m1 ? More info here: https://developer.apple.com/documentation/apple-silicon/building-a-universal-macos-binary

Here is what I understand right now: Only in the update test, we cannot batch updates commands since all of them will be rolled back in anyone fails (this is...

Seems like as it is, people can have different interpretation of this new rule. Can we make it more concrete and less subject to interpretation ? If batching is forbidden,...

> Do we need to add: > > > If using PostgreSQL's extended query protocol, each query must be separated by a Sync message. Yes, I guess this will help...