|
|
|
|
Xavier NX | Nano | |
性能比 | 6~30倍 | 1 |
AI性能比 | 21 TOPs | 472 GFLOPs |
メモリ | 8GB | 4GB |
M.2 SSD | 対応 | 非対応 |
電源 | 付属 | 別売り |
ファン | 内蔵 | 別売り |
SDカード | 別売り | 別売り |
ケース | 別売り | 別売り |
消費電力 | 10W / 15W | 5W / 10W |
![]() NVIDIA Jetson Xavier NX Developer Kit 開発キット クラウドネイティブ AIコンピュータ ディープラーニング ASIN: B088TTD1QT ※ 低価格のハイエンドモデル |
![]() NVIDIA Jetson Nano Development Kit B01 開発キット AI コンピュータ 人工知能 エッジコンピューティング ASIN: B085NQTKS9 ※ 入門用の低価格 4GB版 |
![]() GeeekPi Jetson Nanoケース(Jetson Nano B01およびA02バージョンをサポート)NVIDIA Jetson Nano開発者キットに適したファン付きJetson NanoケースSmall AI Powerful Computer ASIN: B085PZ4F3X |
![]() SanDisk ( サンディスク ) 128GB microSD Extreme PRO microSDXC A2 SDSQXCY-128G-GN6MA [ 海外パッケージ品 ] ASIN: B07G3H5RBT ※ 高速、大容量 SDカード |
# NVIDIA Jetson JetPack 4.5.1 N jetson@ubuntu:~ $ gcc --version gcc (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) 7.5.0 Copyright (C) 2017 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. N jetson@ubuntu:~ $ g++ --version g++ (Ubuntu/Linaro 7.5.0-3ubuntu1~18.04) 7.5.0 Copyright (C) 2017 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
sudo apt update sudo apt install -y gcc-8 g++-8 # sudo apt install -y gcc-9 g++-9 # E: Unable to locate package gcc-9 # update-alternatives: error: no alternatives for gcc # update-alternativesでデフォルトのバージョンを gcc 8系にします sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 7 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 7 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 8 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 8 # update-alternativesでデフォルトのバージョンを変更できます sudo update-alternatives --config gcc sudo update-alternatives --config g++ N jetson@ubuntu:~ $ sudo update-alternatives --config gcc There are 2 choices for the alternative gcc (providing /usr/bin/gcc). Selection Path Priority Status ------------------------------------------------------------ * 0 /usr/bin/gcc-8 8 auto mode 1 /usr/bin/gcc-7 7 manual mode 2 /usr/bin/gcc-8 8 manual mode Press <enter> to keep the current choice[*], or type selection number: N jetson@ubuntu:~ $ sudo update-alternatives --config g++ There are 2 choices for the alternative g++ (providing /usr/bin/g++). Selection Path Priority Status ------------------------------------------------------------ * 0 /usr/bin/g++-8 8 auto mode 1 /usr/bin/g++-7 7 manual mode 2 /usr/bin/g++-8 8 manual mode Press <enter> to keep the current choice[*], or type selection number:
N jetson@ubuntu:~ $ gcc --version gcc (Ubuntu/Linaro 8.4.0-1ubuntu1~18.04) 8.4.0 Copyright (C) 2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. N jetson@ubuntu:~ $ g++ --version g++ (Ubuntu/Linaro 8.4.0-1ubuntu1~18.04) 8.4.0 Copyright (C) 2018 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# clang == clang-6 # sudo apt install -y clang # sudo apt install -y clang-6 # E: Unable to locate package clang-6 # sudo apt install -y clang-7 # sudo apt install -y clang-8 # sudo apt install -y clang-9 sudo apt install -y clang-10 # sudo apt install -y clang-11 # E: Unable to locate package clang-11 clang-10 --version clang++-10 --version # clang version 10.0.0-4ubuntu1~18.04.2 # Target: aarch64-unknown-linux-gnu # Thread model: posix # InstalledDir: /usr/bin
2018年 3月 8日 | Clang 6.0.0 |
2018年 9月19日 | Clang 7.0.0 |
2019年 3月20日 | Clang 8.0.0 |
2019年 9月19日 | Clang 9.0.0 |
2020年 3月24日 | Clang 10.0.0 |
2020年10月12日 | Clang 11.0.0 |