I am unable to identify this Warning Below. I am using M1 MacBook Air
CODE
from keras import models from keras.layers import Dense model=models.Sequential() model.add(Dense(16,activation='relu',input_shape=(10000,))) model.add(Dense(16,activation='relu')) model.add(Dense(16,activation='sigmoid')) OUTPUT
Metal device set to: Apple M1 2021-09-24 18:18:51.205006: 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. 2021-09-24 18:18:51.205728: 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>) Does it mean I am not using GPU of m1 ?