This repository is meant to help new users start using the Arm-based AWS Graviton and Graviton2 processors which power the latest generation of Amazon EC2 instances. While it calls out specific features of the Graviton processors themselves, this repository is also generically useful for anyone running code on Arm.
- Building for Graviton
- Optimizing for Graviton
- Recent software updates relevant to Graviton
- Language-specific considerations
- Containers on Graviton
- Operating Systems support
- Third-party Software Vendors
- Finding and managing AMIs for Graviton, with AWS SystemManager or CloudFormation
- DPDK, SPDK, and other datapath software
- TensorFlow
- Known issues and workarounds
- Additional resources
The Graviton CPU (powering A1 instances) supports Arm V8.0 and includes support for CRC and crypto extensions.
The Graviton2 CPU (powering M6g/M6gd, C6g/C6gd/C6gn, R6g/R6gd, and T4g instances) uses the Neoverse-N1 core and supports Arm V8.2 (include CRC and crypto extensions) plus several other architectural extensions. In particular, Graviton2 supports the Large System Extensions (LSE) which improve locking and synchronization performance across large systems. In addition, it has support for fp16 and 8-bit dot productions for machine learning, and relaxed consistency-processor consistent (RCpc) memory ordering.
In addition, to make it easier to develop, test, and run your applications on T4g instances, all AWS customers are automatically enrolled in a free trial on the t4g.micro size. Starting September 2020 until March 31st 2021, you can run a t4g.micro instance and automatically get 750 free hours per month deducted from your bill, including any CPU credits during the free 750 hours of usage. The 750 hours are calculated in aggregate across all regions. For details on terms and conditions of the free trial, please refer to the EC2 FAQs.
Please refer here for debugging and profiling information.
There is a huge amount of activity in the Arm software ecosystem and improvements are being made on a daily basis. As a general rule later versions of compilers and language runtimes should be used whenever possible. The table below includes known recent changes to popular packages that improve performance (if you know of others please let us know).
Package | Version | Improvements |
---|---|---|
bazel | 3.4.1+ | Pre-built bazel binary for Graviton/Arm64. See below for installation. |
ffmpeg | 4.3+ | Improved performance of libswscale by 50% with better NEON vectorization which improves the performance and scalability of ffmpeg multi-thread encoders. The changes are available in FFMPEG version 4.3. |
HAProxy | 2.4+ | A serious bug was fixed. Additionally, building with -march=armv8.2-a improves HAProxy performance by 4x so please rebuild your code with this flag. |
OpenH264 | 2.1.1+ | Pre-built Cisco OpenH264 binary for Graviton/Arm64. |
PCRE2 | 10.34+ | Added NEON vectorization to PCRE's JIT to match first and pairs of characters. This may improve performance of matching by up to 8x. This fixed version of the library now is shipping with Ubuntu 20.04 and PHP 8. |
PHP | 7.4+ | PHP 7.4 includes a number of performance improvements that increase perf by up to 30% |
pip | 19.3+ | Enable installation of python wheel binaries on Graviton |
PyTorch | 1.7+ | Enable Arm64 compilation, Neon optimization for fp32. Install from source. Note: Requires GCC9 or later for now. recommend to use Ubuntu 20.xx |
ruby | 3.0+ | Enable arm64 optimizations that improve performance by as much as 40%. These changes have also been back-ported to the Ruby shipping with AmazonLinux2, Fedora, and Ubuntu 20.04. |
zlib | 1.2.8+ | For the best performance on Graviton2 please use zlib-cloudflare. |
You can run Docker, Kubernetes, Amazon ECS, and Amazon EKS on Graviton. Amazon ECR supports multi-arch containers. Please refer here for information about running container-based workloads on Graviton.
Please check here for more information about which operating system to run on Graviton based instances.
The default installation of pip on some Linux distributions is old (<19.3) to install binary wheel packages released for Graviton. To work around this, it is recommended to upgrade your pip installation using:
sudo python3 -m pip install --upgrade pip
The Bazel build tool now releases a pre-built binary for arm64. As of October 2020, this is not available in their custom Debian repo, and Bazel does not officially provide an RPM. Instead, we recommend using the Bazelisk installer, which will replace your bazel
command and keep bazel up to date.
Below is an example using the latest Arm binary release of Bazelisk as of October 2020:
wget https://github.com/bazelbuild/bazelisk/releases/download/v1.7.1/bazelisk-linux-arm64
chmod +x bazelisk-linux-arm64
sudo mv bazelisk-linux-arm64 /usr/local/bin/bazel
bazel
Bazelisk itself should not require further updates, as its only purpose is to keep Bazel updated.
Linux distributions, in general, use the original zlib without any optimizations. zlib-cloudflare has been updated to provide better and faster compression on Arm and x86. To use zlib-cloudflare:
git clone https://github.com/cloudflare/zlib.git
cd zlib
./configure --prefix=$HOME
make
make install
Make sure to have the full path to your lib at $HOME/lib in /etc/ld.so.conf and run ldconfig.
For users of Amazon Corretto, you can specify the library to be used for compression and decompression as:
-XX:ZlibImplementationDeflate=cloudflare
-XX:ZlibImplementationInflate=cloudflare
Linaro and Arm maintain a tool (Sandpiper) to search for packages across multiple OSes and Docker official images. This can be useful to see which versions of a package exist in distributions -- especially when there is a performance improvement in a particular version.
Some specific resources:
Feedback? ec2-arm-dev-feedback@amazon.com