Post

Replies

Boosts

Views

Activity

Reply to TensorFlow on Apple M1 with 27130 bus error python
Same problem here: Metal device set to: Apple M1 Max systemMemory: 64.00 GB maxCacheSize: 24.00 GB 2022-10-14 23:13:24.991991: I tensorflow/core/common_runtime/pluggable_device/pluggable_device_factory.cc:305] Could not identify NUMA node of platform GPU ID 0, defaulting to 0. Your kernel may not have been built with NUMA support. 2022-10-14 23:13:24.992109: I tensorflow/core/common_runtime/pluggable_device/pluggable_device_factory.cc:271] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 0 MB memory) -> physical PluggableDevice (device: 0, name: METAL, pci bus id: <undefined>) zsh: bus error python run_tensorflow_model.py -c test -dt mixed
Oct ’22
Reply to TensorFlow on Apple M1 with 27130 bus error python
Disabling the eager execution: from tensorflow.python.framework.ops import disable_eager_execution disable_eager_execution() helps to move forward a little, until the next issue: 2022-10-14 23:20:22.256440: W tensorflow/python/util/util.cc:368] Sets are not currently considered sequences, but this may change in the future, so consider avoiding using them. 2022-10-14 23:20:28.551177: I tensorflow/core/common_runtime/pluggable_device/pluggable_device_factory.cc:305] Could not identify NUMA node of platform GPU ID 0, defaulting to 0. Your kernel may not have been built with NUMA support. 2022-10-14 23:20:28.551210: I tensorflow/core/common_runtime/pluggable_device/pluggable_device_factory.cc:271] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 0 MB memory) -> physical PluggableDevice (device: 0, name: METAL, pci bus id: <undefined>) 2022-10-14 23:20:28.614180: W tensorflow/core/platform/profile_utils/cpu_utils.cc:128] Failed to get CPU frequency: 0 Hz 2022-10-14 23:20:28.616659: I tensorflow/core/grappler/optimizers/custom_graph_optimizer_registry.cc:113] Plugin optimizer for device_type GPU is enabled. 2022-10-14 23:20:28.695796: I tensorflow/core/grappler/optimizers/custom_graph_optimizer_registry.cc:113] Plugin optimizer for device_type GPU is enabled. zsh: bus error python run_tensorflow_model.py -c test -dt mixed
Oct ’22