AI - Apple Silicon Mac M1 原生支持 TensorFlow 2.6 GPU 加速(tensorflow-metal PluggableDevice)

原文:http://makeoptim.com/deep-learning/tensorflow-metal

前言

幾天前护桦,見到 https://github.com/apple/tensorflow_macos 已經(jīng) Archived,并在 README 中看到了 TensorFlow v2.5 原生支持了 M1。

You can now leverage Apple’s tensorflow-metal PluggableDevice in TensorFlow v2.5 for accelerated training on Mac GPUs directly with Metal. Learn more here.

本文作為Apple Silicon Mac M1 機(jī)器學(xué)習(xí)環(huán)境 (TensorFlow, JupyterLab, VSCode)的更新篇,為大家詳細(xì)介紹如何安裝最新支持 GPU 加速版本的 TensorFlow。

系統(tǒng)要求

  • macOS 12.0+

當(dāng)前不支持

  • 多 GPU 支持
  • 英特爾 GPU 的加速
  • V1 TensorFlow 網(wǎng)絡(luò)

Xcode

從 App Store 安裝 Xcode销斟。

image

Command Line Tools

Apple Developer 下載安裝 Xcode Command Line Tools 或者執(zhí)行以下命令。

catchzeng@m1 ~ % xcode-select --install

Homebrew

catchzeng@m1 ~ % /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Miniforge

Anaconda 無法在 M1 上運(yùn)行, Miniforge 是用來替代它的。

https://github.com/conda-forge/miniforge 下載 Miniforge3-MacOSX-arm64馁害。

image

執(zhí)行以下命令,安裝 Miniforge

catchzeng@m1 ~ % bash Miniforge3-MacOSX-arm64.sh

重啟終端并檢查 Python 安裝情況以故。

(base) catchzeng@m1 ~ % which python
/Users/catchzeng/miniforge3/bin/python
(base) catchzeng@m1 ~ % which pip
/Users/catchzeng/miniforge3/bin/pip

創(chuàng)建虛擬環(huán)境

創(chuàng)建一個(gè) conda 創(chuàng)建虛擬環(huán)境蜗细,這里使用 python 3.9.5 (TensorFlow 2.5 需要)。

(base) catchzeng@m1 ~ % conda create -n tensorflow python=3.9.5
(base) catchzeng@m1 ~ % conda activate tensorflow
(tensorflow) catchzeng@m1 ~ %

安裝 Tensorflow dependencies

首次安裝

(tensorflow) catchzeng@m1 ~ % conda install -c apple tensorflow-deps

注:tensorflow-deps 的版本是基于 TensorFlow 的怒详,因此可以根據(jù)自己的需求指定版本安裝:

v2.5

(tensorflow) catchzeng@m1 ~ % conda install -c apple tensorflow-deps==2.5.0

v2.6

(tensorflow) catchzeng@m1 ~ % conda install -c apple tensorflow-deps==2.6.0

升級(jí)安裝

如果之前已經(jīng)安裝了 v2.5炉媒,想要更新 v2.6 的,可以執(zhí)行以下命令安裝昆烁。

# 卸載已安裝的 tensorflow-macos 和 tensorflow-metal
(tensorflow) catchzeng@m1 ~ % python -m pip uninstall tensorflow-macos
(tensorflow) catchzeng@m1 ~ % python -m pip uninstall tensorflow-metal
# 升級(jí) tensorflow-deps
(tensorflow) catchzeng@m1 ~ % conda install -c apple tensorflow-deps --force-reinstall
# 后者指向特定的 conda 環(huán)境
(tensorflow) catchzeng@m1 ~ % conda install -c apple tensorflow-deps --force-reinstall -n tensorflow

安裝 Tensorflow

(tensorflow) catchzeng@m1 ~ % python -m pip install tensorflow-macos

安裝 metal plugin

(tensorflow) catchzeng@m1 ~ % python -m pip install tensorflow-metal

安裝必須的包

(tensorflow) catchzeng@m1 ~ % brew install libjpeg
(tensorflow) catchzeng@m1 ~ % conda install -y pandas matplotlib scikit-learn jupyterlab

注意: libjpeg 是 matplotlib 需要依賴的庫吊骤。

測試

TensorFlow

(tensorflow) catchzeng@m1 ~ % python
Python 3.9.5 | packaged by conda-forge | (default, Oct 19 2021, 17:32:20)
[Clang 11.1.0 ] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow as tf
Init Plugin
Init Graph Optimizer
Init Kernel
>>> print(tf.__version__)
2.6.0
>>>

JupyterLab

(tensorflow) catchzeng@m1 ~ % jupyter lab
image
from tensorflow.keras import layers
from tensorflow.keras import models
model = models.Sequential()
model.add(layers.Conv2D(32, (3, 3), activation='relu', input_shape=(28, 28, 1)))
model.add(layers.MaxPooling2D((2, 2)))
model.add(layers.Conv2D(64, (3, 3), activation='relu'))
model.add(layers.MaxPooling2D((2, 2)))
model.add(layers.Conv2D(64, (3, 3), activation='relu'))
model.add(layers.Flatten())
model.add(layers.Dense(64, activation='relu'))
model.add(layers.Dense(10, activation='softmax'))
model.summary()
image
from tensorflow.keras.datasets import mnist
from tensorflow.keras.utils import to_categorical
(train_images, train_labels), (test_images, test_labels) = mnist.load_data()
train_images = train_images.reshape((60000, 28, 28, 1))
train_images = train_images.astype('float32') / 255
test_images = test_images.reshape((10000, 28, 28, 1))
test_images = test_images.astype('float32') / 255
train_labels = to_categorical(train_labels)
test_labels = to_categorical(test_labels)
model.compile(optimizer='rmsprop',
              loss='categorical_crossentropy',
              metrics=['accuracy'])
model.fit(train_images, train_labels, epochs=5, batch_size=64)
test_loss, test_acc = model.evaluate(test_images, test_labels)
test_acc
image

打開活動(dòng)監(jiān)視器,可以看到 Python 正在使用 GPU 資源静尼。

image

VSCode

安裝 Python 支持

image

選擇虛擬環(huán)境并信任 notebook

image

運(yùn)行 notebook

image

延伸閱讀

參考

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末白粉,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子鼠渺,更是在濱河造成了極大的恐慌鸭巴,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,968評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件拦盹,死亡現(xiàn)場離奇詭異鹃祖,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)普舆,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評論 2 382
  • 文/潘曉璐 我一進(jìn)店門恬口,熙熙樓的掌柜王于貴愁眉苦臉地迎上來校读,“玉大人,你說我怎么就攤上這事祖能∏革” “怎么了?”我有些...
    開封第一講書人閱讀 153,220評論 0 344
  • 文/不壞的土叔 我叫張陵养铸,是天一觀的道長雁芙。 經(jīng)常有香客問我,道長揭厚,這世上最難降的妖魔是什么却特? 我笑而不...
    開封第一講書人閱讀 55,416評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮筛圆,結(jié)果婚禮上裂明,老公的妹妹穿的比我還像新娘。我一直安慰自己太援,他們只是感情好闽晦,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著提岔,像睡著了一般仙蛉。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上碱蒙,一...
    開封第一講書人閱讀 49,144評論 1 285
  • 那天荠瘪,我揣著相機(jī)與錄音,去河邊找鬼赛惩。 笑死哀墓,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的喷兼。 我是一名探鬼主播篮绰,決...
    沈念sama閱讀 38,432評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼季惯!你這毒婦竟也來了吠各?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,088評論 0 261
  • 序言:老撾萬榮一對情侶失蹤勉抓,失蹤者是張志新(化名)和其女友劉穎贾漏,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體藕筋,經(jīng)...
    沈念sama閱讀 43,586評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡纵散,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片困食。...
    茶點(diǎn)故事閱讀 38,137評論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖翎承,靈堂內(nèi)的尸體忽然破棺而出硕盹,到底是詐尸還是另有隱情,我是刑警寧澤叨咖,帶...
    沈念sama閱讀 33,783評論 4 324
  • 正文 年R本政府宣布瘩例,位于F島的核電站,受9級(jí)特大地震影響甸各,放射性物質(zhì)發(fā)生泄漏垛贤。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評論 3 307
  • 文/蒙蒙 一趣倾、第九天 我趴在偏房一處隱蔽的房頂上張望聘惦。 院中可真熱鬧,春花似錦儒恋、人聲如沸善绎。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽禀酱。三九已至,卻和暖如春牧嫉,著一層夾襖步出監(jiān)牢的瞬間剂跟,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評論 1 262
  • 我被黑心中介騙來泰國打工酣藻, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留曹洽,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,595評論 2 355
  • 正文 我出身青樓臊恋,卻偏偏與公主長得像衣洁,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子抖仅,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評論 2 345

推薦閱讀更多精彩內(nèi)容