The M1 Mac with it's own non-Intel processor was released ten months ago but is still not supported by the libTensorFlow C++ library https://www.tensorflow.org/install/lang_c. It would be good to get that done so that we can release apps for the Mac. As far as I know TensorFlow does work for the M1 Mac in Python.
You can test the library file compatibility by running xcrun as follows:-
Run the XCode command: xcrun lipo -info "libtensorflow.dylib" and it returns "libtensorflow.dylib is architecture x86_64".
For it to support the Intel Mac and the M1 Mac it should return "libtensorflow.dylib are: arm64 x86_64" (ie. both formats so that the compiler can build the app for Intel, Arm or both (the default)).
The M1 Mac with it's own non-Intel processor was released ten months ago but is still not supported by the libTensorFlow C++ library https://www.tensorflow.org/install/lang_c. It would be good to get that done so that we can release apps for the Mac. As far as I know TensorFlow does work for the M1 Mac in Python.
You can test the library file compatibility by running xcrun as follows:-
Run the XCode command: xcrun lipo -info "libtensorflow.dylib" and it returns "libtensorflow.dylib is architecture x86_64".
For it to support the Intel Mac and the M1 Mac it should return "libtensorflow.dylib are: arm64 x86_64" (ie. both formats so that the compiler can build the app for Intel, Arm or both (the default)).