SlideShare ist ein Scribd-Unternehmen logo
1 von 17
Downloaden Sie, um offline zu lesen
SFO17-509
Deep Learning on ARM Platforms
- from the platform angle
Jammy Zhou - Linaro
ENGINEERS
AND DEVICES
WORKING
TOGETHER
Agenda
● Deep learning basics
● Platform overview
● Gaps and challenges
ENGINEERS AND DEVICES
WORKING TOGETHER
Basic Elements
Algorithms & Models
CNN, R-CNN, RNN, LSTM, Feed
Forward, BP, SGD, Deep
Reinforcement learning, etc
AlexNet, VGG, GoogLeNet,
ResNet, SqueezeNet, SyntaxNet,
MobileNet, SSD, YOLO, etc
Computing Platforms
CPU, GPU, FPGA, TPU, etc
Deep learning software stack
Datasets
MNIST, ImageNet, CIFAR10,
CIFAR100, AudioSet, DET,
CLS-LOC, ActivityNet, etc
+ +
Deep Learning
ENGINEERS AND DEVICES
WORKING TOGETHER
● Training on cloud & data center (desktop workstation can be used as well for development)
● Inference on cloud & data center or edge device
Training & Inference
Cloud and Data Center Edge Devices
Dataset
& Labels
DL Framework Trained Model
Device1
Device2
New Data
Inference Result
Trained
Model DL Framework
New Data
Inference Result
Batch
processing
for large
dataset
Untrained Model
DL Framework
ENGINEERS AND DEVICES
WORKING TOGETHER
Platform Overview
Python Apps
Frameworks
Drivers
Libraries
Hardware Accelerators
TensorFlowCaffe MXNet Theano
Caffe2 Torch7 CNTK Paddle...
C++ Apps Go Apps Java Apps...
BLAS FFT RNG SPARSE Eigen...
Application support for
multiple frameworks?
Framework support for
multiple accelerator
solutions?
ENGINEERS AND DEVICES
WORKING TOGETHER
Heterogeneous Accelerators
● Nvidia
○ Tesla, Quadro, GeForce, and etc
○ Drive PX for self driving
○ Jetson TK1/TX1/TX2 for embedded
● AMD
○ Radeon Instinct, Radeon Pro
○ Embedded G series
● Mobile GPUs
○ ARM Mali
○ Qualcomm Adreno
○ Imagination PowerVR
○ VeriSilicon Vivante
● Google TPU
● Intel Nervana
● Nvidia Xavier DLA
● Horizon Robotics (地平线) BPU
● Cambricon (寒武纪) NPU
● Fujitsu DLU
● GraphCore IPU
● Intel/Altera Stratix, Arria, Cyclone
● Xilinx Ultrascale, Ultrascale+
● Deephi Tech (深鉴科技) DPU (Xilinx based)
● Baidu XPU (Xilinx based)
● Qualcomm Hexagon
● CEVA XM
● TI C66x
● Cadence Tensilica Vision
GPU ASIC
FPGA DSP
ENGINEERS AND DEVICES
WORKING TOGETHER
Interface & Libraries
● Nvidia CUDA
○ Proprietary (including the driver stack)
○ Widely supported by the DL frameworks and
the industry
● AMD HIP
○ Fully open source together with the ROCm
driver stack
○ Support both NVCC (for CUDA) and HCC
compiler backends
● Khronos Standards
○ OpenCL
■ Support not only GPU, but also FPGA,
DSP and other accelerators
○ OpenVX with Neural Network Extension
■ Acceleration for image processing and
computer vision applications
○ Vulkan
■ Designed for both graphics and
compute, mainly used for graphics now
● Nvidia
○ cuDNN, cuBLAS, cuSPARSE, etc
● AMD
○ MIOpen, hipBLAS/rocBLAS, hcRNG,
hcFFT/rocFFT, etc
● OpenCL
○ AMD clBLAS, clFFT, clRNG, clSPARSE
○ ARM Compute Library, requires:
■ cl_arm_non_uniform_work_group_size
■ cl_khr_fp16
○ Qualcomm Neural Processing Engine
● Others
○ Eigen - C++ template library for LA
○ OpenBLAS, NNPack, MKL, etc
○ OpenCV - Open source CV library
■ Have Halide based DNN module
○ Xilinx DNN and GEMM libraries
ENGINEERS AND DEVICES
WORKING TOGETHER
Frameworks
Vendor Languages CUDA HIP OpenCL ACL NPE[1]
Caffe BVLC C++, Python, Matlab Yes Yes [2]
Yes [2]
Yes [2]
Yes
Caffe2 Facebook C++, Python Yes Yes [2]
No No Yes
TensorFlow Google Python, C++, JAVA, Go, etc Yes No [3]
Yes [2]
No Yes
MXNet Apache Python, R, C++, Perl, etc Yes Yes [2]
No Yes [2]
No
Torch Community Lua, Python, Matlab Yes Yes [2]
Yes [2]
No No
Theano Montreal Python Yes No Yes [4]
No No
CNTK Microsoft Python, C++, C#, .Net, etc Yes No [3]
No No No
Paddle Baidu Python, Go Yes No No No No
[1] The trained models are converted to DLC format for execution
[2] Out-of-tree support, by vendors and community
[3] Under development
[4] Seems incomplete and buggy
ENGINEERS AND DEVICES
WORKING TOGETHER
Benchmark and Testing
● Collective Knowledge SDK for AI
○ Automate benchmarking, optimization, co-design the
whole deep learning stack to satisfy different
requirements (e.g, execution time, accuracy, power
consumption, memory usage, etc)
○ Have portable and customizable workflow framework
○ CK modules with open & unified JSON APIs are used to
abstract access to changing SW & HW
○ Image classification and compiler flag prediction are
supported now
● DeepBench from Baidu
○ Benchmark basic low-level operations on different
hardwares for deep learning
● Convnet-benchmarks
ENGINEERS AND DEVICES
WORKING TOGETHER
Gaps and Challenges - Arch Agnostic
● Vendor specific APIs are used for heterogeneous accelerators
○ Nvidia CUDA, AMD HIP, Google TPU StreamExecutor, and etc
○ Can OpenCL or something else be a competitive solution to rule the other world?
● OpenCL support is quited limited so far
○ There is no official OpenCL acceleration support by default for almost all major DL frameworks,
although some of them have out-of-tree experimental support.
■ Can we get OpenCL support in upstream DL frameworks to reduce maintain effort?
■ Shall we enable and optimize OpenCL support for more DL frameworks?
○ Can Coriander be a solution to use existing CUDA backend of DL frameworks on OpenCL?
■ AMD HIP has similar mechanism to support CUDA on HIP
■ Coriander is still a research project with limited DL framework and HW support
ENGINEERS AND DEVICES
WORKING TOGETHER
Coriander - CUDA on OpenCL
http://www.iwocl.org/wp-content/uploads/iwocl2017-hugh-perkins-cuda-cl.pdf
Compile time Run time
ENGINEERS AND DEVICES
WORKING TOGETHER
Gaps and Challenges - Arch Agnostic (Cont.)
● The DL frameworks are fragmented
○ It is not easy to add new accelerator support, and it has to be done for each framework
■ Unified graph IR and tensor IR support for DL frameworks will be helpful
● See next page for several major graph IR implementations
○ There is no good interoperability between different DL frameworks
■ Operator and tensor sharing
● DLPack proposal seems promising, adopted by MXNet, PyTorch, Caffe2, tiny-dnn
■ Model translations between different DL frameworks
○ Applications need unified APIs for portability and flexibility
■ Keras: a Python DL library supporting TensorFlow, CNTK, Theano and MXNet backends
■ TensorFlow Lite and Neural Network API support on Android
● To support pre-trained models with other DL frameworks, translation will be
required
ENGINEERS AND DEVICES
WORKING TOGETHER
Computation Graph IR & Tensor IR
● Google XLA
○ A domain-specific compiler, which makes it easier to add
custom backends, LLVM backends can be reused
○ JIT to analyse TF graph, fuse operators at runtime
○ AOT to support TF models on memory restricted devices -
helpful for ARM devices
● MXNet NNVM & TVM
○ NNVM-Fusion plugin for GPU kernel optimization (e.g, ops
fusion, runtime compilation)
○ TinyFlow: TF Front-End + NNVM + Torch7 Back-End
○ TVM: a tensor IR/DSL stack
■ It is DLpack compatible, and reuses Halide IR
● Intel/Nervana NGraph
○ Neon is supported, integrations with TF XLA and Caffe are
ongoing
● ONNX (Open Neural Network Exchange)
○ Initiated by Facebook and Microsoft
○ Caffe2, PyTorch and CNTK will support it
Who will become the ‘LLVM’ for DL?
ENGINEERS AND DEVICES
WORKING TOGETHER
Gaps and Challenges - ARM Specific
● There are seldom ARM boards with good PCIe capability in the community
○ AMD ROCm requires PCIe Gen3 x8 or x16 with PCIe Atomics
○ High-end FPGA cards requires PCIe Gen3 x16 or Gen4 x8 (e.g, Virtex Ultrascale+ from Xilinx)
● Discrete graphics driver support on ARM platforms is quite limited
○ Nvidia Proprietary Linux GPU driver only supports Aarch32
○ AMD ROCm has support for Cavium ThunderX, but no generic ARM support
○ GPU virtualization support is also needed by ARM data centers
● There is no good OpenCL driver distribution for mobile GPUs
○ OpenCL support for 96Boards needs improving
● Optimizations for edge devices
○ Memory footprint optimization for DL frameworks
■ e.g, quantization and low precision inference support being done by Google for TensorFlow
○ Power efficiency with different accelerators
● Anything else?
ENGINEERS
AND DEVICES
WORKING
TOGETHER
Backup
ENGINEERS AND DEVICES
WORKING TOGETHER
96Boards with OpenCL support
96Boards Accelerators OpenCL version Driver Public Availability
Qualcomm DB410c Adreno 306, Hexagon QDSP6 V5 OpenCL 1.1 EP Yes for Android?
Bubblegum-96(*)
PowerVR G6230 OpenCL 1.2 EP Yes for Linux
Mediatek X20 Mali T880 MP4 OpenCL 1.2 TBD
Hisilicon Hikey960 Mali G71 MP8 OpenCL 2.0 Ongoing for Android
Hisilicon Poplar Mali T720 OpenCL 1.2 TBD
Qualcomm SD600eval Adreno 320, Hexagon QDSP6 V4 OpenCL 1.1 TBD
Socionext F-Cue Mali T624 OpenCL 1.1 TBD
Mavell Andromeda Vivante GC7000UL OpenCL 1.2 TBD
MStar Kava Mali T820 OpenCL 1.2 TBD
Altera Chameleon96 Cyclone V SoC FPGA OpenCL 1.0 EP TBD
* ACL cannot be used on Bubblegum-96 for missing required OpenCL extensions
Thank You
#SFO17
SFO17 keynotes and videos on: connect.linaro.org
For further information: www.linaro.org

Weitere ähnliche Inhalte

Was ist angesagt?

LAS16-207: Bus scaling QoS
LAS16-207: Bus scaling QoSLAS16-207: Bus scaling QoS
LAS16-207: Bus scaling QoSLinaro
 
LAS16-405:OpenDataPlane: Software Defined Dataplane leader
LAS16-405:OpenDataPlane: Software Defined Dataplane leaderLAS16-405:OpenDataPlane: Software Defined Dataplane leader
LAS16-405:OpenDataPlane: Software Defined Dataplane leaderLinaro
 
BUD17-300: Journey of a packet
BUD17-300: Journey of a packetBUD17-300: Journey of a packet
BUD17-300: Journey of a packetLinaro
 
Las16 309 - lua jit arm64 port - status
Las16 309 - lua jit arm64 port - statusLas16 309 - lua jit arm64 port - status
Las16 309 - lua jit arm64 port - statusLinaro
 
LAS16-305: Smart City Big Data Visualization on 96Boards
LAS16-305: Smart City Big Data Visualization on 96BoardsLAS16-305: Smart City Big Data Visualization on 96Boards
LAS16-305: Smart City Big Data Visualization on 96BoardsLinaro
 
BUD17-104: Scripting Languages in IoT: Challenges and Approaches
BUD17-104: Scripting Languages in IoT: Challenges and ApproachesBUD17-104: Scripting Languages in IoT: Challenges and Approaches
BUD17-104: Scripting Languages in IoT: Challenges and ApproachesLinaro
 
Ostech war story using mainline linux for an android tv bsp
Ostech  war story  using mainline linux  for an android tv bspOstech  war story  using mainline linux  for an android tv bsp
Ostech war story using mainline linux for an android tv bspNeil Armstrong
 
Deep Learning Neural Network Acceleration at the Edge - Andrea Gallo
Deep Learning Neural Network Acceleration at the Edge - Andrea GalloDeep Learning Neural Network Acceleration at the Edge - Andrea Gallo
Deep Learning Neural Network Acceleration at the Edge - Andrea GalloLinaro
 
BKK16-400B ODPI - Standardizing Hadoop
BKK16-400B ODPI - Standardizing HadoopBKK16-400B ODPI - Standardizing Hadoop
BKK16-400B ODPI - Standardizing HadoopLinaro
 
BKK16-103 OpenCSD - Open for Business!
BKK16-103 OpenCSD - Open for Business!BKK16-103 OpenCSD - Open for Business!
BKK16-103 OpenCSD - Open for Business!Linaro
 
LAS16-210: Hardware Assisted Tracing on ARM with CoreSight and OpenCSD
LAS16-210: Hardware Assisted Tracing on ARM with CoreSight and OpenCSDLAS16-210: Hardware Assisted Tracing on ARM with CoreSight and OpenCSD
LAS16-210: Hardware Assisted Tracing on ARM with CoreSight and OpenCSDLinaro
 
LAS16-200: SCMI - System Management and Control Interface
LAS16-200:  SCMI - System Management and Control InterfaceLAS16-200:  SCMI - System Management and Control Interface
LAS16-200: SCMI - System Management and Control InterfaceLinaro
 
BKK16-305B ILP32 Performance on AArch64
BKK16-305B ILP32 Performance on AArch64BKK16-305B ILP32 Performance on AArch64
BKK16-305B ILP32 Performance on AArch64Linaro
 
LAS16-507: LXC support in LAVA
LAS16-507: LXC support in LAVALAS16-507: LXC support in LAVA
LAS16-507: LXC support in LAVALinaro
 
Evaluating GPU programming Models for the LUMI Supercomputer
Evaluating GPU programming Models for the LUMI SupercomputerEvaluating GPU programming Models for the LUMI Supercomputer
Evaluating GPU programming Models for the LUMI SupercomputerGeorge Markomanolis
 
BUD17 Socionext SC2A11 ARM Server SoC
BUD17 Socionext SC2A11 ARM Server SoCBUD17 Socionext SC2A11 ARM Server SoC
BUD17 Socionext SC2A11 ARM Server SoCLinaro
 
Linaro Connect San Francisco 2017 - Welcome Keynote by George Grey | #SFO17
Linaro Connect San Francisco 2017 - Welcome Keynote by George Grey | #SFO17Linaro Connect San Francisco 2017 - Welcome Keynote by George Grey | #SFO17
Linaro Connect San Francisco 2017 - Welcome Keynote by George Grey | #SFO17Linaro
 
JerryScript: An ultra-lighteweight JavaScript Engine for the Internet of Things
JerryScript: An ultra-lighteweight JavaScript Engine for the Internet of ThingsJerryScript: An ultra-lighteweight JavaScript Engine for the Internet of Things
JerryScript: An ultra-lighteweight JavaScript Engine for the Internet of ThingsSamsung Open Source Group
 
LAS16-500: The Rise and Fall of Assembler and the VGIC from Hell
LAS16-500: The Rise and Fall of Assembler and the VGIC from HellLAS16-500: The Rise and Fall of Assembler and the VGIC from Hell
LAS16-500: The Rise and Fall of Assembler and the VGIC from HellLinaro
 

Was ist angesagt? (20)

LAS16-207: Bus scaling QoS
LAS16-207: Bus scaling QoSLAS16-207: Bus scaling QoS
LAS16-207: Bus scaling QoS
 
LAS16-405:OpenDataPlane: Software Defined Dataplane leader
LAS16-405:OpenDataPlane: Software Defined Dataplane leaderLAS16-405:OpenDataPlane: Software Defined Dataplane leader
LAS16-405:OpenDataPlane: Software Defined Dataplane leader
 
BUD17-300: Journey of a packet
BUD17-300: Journey of a packetBUD17-300: Journey of a packet
BUD17-300: Journey of a packet
 
Las16 309 - lua jit arm64 port - status
Las16 309 - lua jit arm64 port - statusLas16 309 - lua jit arm64 port - status
Las16 309 - lua jit arm64 port - status
 
LAS16-305: Smart City Big Data Visualization on 96Boards
LAS16-305: Smart City Big Data Visualization on 96BoardsLAS16-305: Smart City Big Data Visualization on 96Boards
LAS16-305: Smart City Big Data Visualization on 96Boards
 
BUD17-104: Scripting Languages in IoT: Challenges and Approaches
BUD17-104: Scripting Languages in IoT: Challenges and ApproachesBUD17-104: Scripting Languages in IoT: Challenges and Approaches
BUD17-104: Scripting Languages in IoT: Challenges and Approaches
 
Ostech war story using mainline linux for an android tv bsp
Ostech  war story  using mainline linux  for an android tv bspOstech  war story  using mainline linux  for an android tv bsp
Ostech war story using mainline linux for an android tv bsp
 
Deep Learning Neural Network Acceleration at the Edge - Andrea Gallo
Deep Learning Neural Network Acceleration at the Edge - Andrea GalloDeep Learning Neural Network Acceleration at the Edge - Andrea Gallo
Deep Learning Neural Network Acceleration at the Edge - Andrea Gallo
 
BKK16-400B ODPI - Standardizing Hadoop
BKK16-400B ODPI - Standardizing HadoopBKK16-400B ODPI - Standardizing Hadoop
BKK16-400B ODPI - Standardizing Hadoop
 
BKK16-103 OpenCSD - Open for Business!
BKK16-103 OpenCSD - Open for Business!BKK16-103 OpenCSD - Open for Business!
BKK16-103 OpenCSD - Open for Business!
 
LAS16-210: Hardware Assisted Tracing on ARM with CoreSight and OpenCSD
LAS16-210: Hardware Assisted Tracing on ARM with CoreSight and OpenCSDLAS16-210: Hardware Assisted Tracing on ARM with CoreSight and OpenCSD
LAS16-210: Hardware Assisted Tracing on ARM with CoreSight and OpenCSD
 
LAS16-200: SCMI - System Management and Control Interface
LAS16-200:  SCMI - System Management and Control InterfaceLAS16-200:  SCMI - System Management and Control Interface
LAS16-200: SCMI - System Management and Control Interface
 
BKK16-305B ILP32 Performance on AArch64
BKK16-305B ILP32 Performance on AArch64BKK16-305B ILP32 Performance on AArch64
BKK16-305B ILP32 Performance on AArch64
 
LAS16-507: LXC support in LAVA
LAS16-507: LXC support in LAVALAS16-507: LXC support in LAVA
LAS16-507: LXC support in LAVA
 
Evaluating GPU programming Models for the LUMI Supercomputer
Evaluating GPU programming Models for the LUMI SupercomputerEvaluating GPU programming Models for the LUMI Supercomputer
Evaluating GPU programming Models for the LUMI Supercomputer
 
BUD17 Socionext SC2A11 ARM Server SoC
BUD17 Socionext SC2A11 ARM Server SoCBUD17 Socionext SC2A11 ARM Server SoC
BUD17 Socionext SC2A11 ARM Server SoC
 
Hands on OpenCL
Hands on OpenCLHands on OpenCL
Hands on OpenCL
 
Linaro Connect San Francisco 2017 - Welcome Keynote by George Grey | #SFO17
Linaro Connect San Francisco 2017 - Welcome Keynote by George Grey | #SFO17Linaro Connect San Francisco 2017 - Welcome Keynote by George Grey | #SFO17
Linaro Connect San Francisco 2017 - Welcome Keynote by George Grey | #SFO17
 
JerryScript: An ultra-lighteweight JavaScript Engine for the Internet of Things
JerryScript: An ultra-lighteweight JavaScript Engine for the Internet of ThingsJerryScript: An ultra-lighteweight JavaScript Engine for the Internet of Things
JerryScript: An ultra-lighteweight JavaScript Engine for the Internet of Things
 
LAS16-500: The Rise and Fall of Assembler and the VGIC from Hell
LAS16-500: The Rise and Fall of Assembler and the VGIC from HellLAS16-500: The Rise and Fall of Assembler and the VGIC from Hell
LAS16-500: The Rise and Fall of Assembler and the VGIC from Hell
 

Ähnlich wie Deep Learning on ARM Platforms - SFO17-509

LCU13: GPGPU on ARM Experience Report
LCU13: GPGPU on ARM Experience ReportLCU13: GPGPU on ARM Experience Report
LCU13: GPGPU on ARM Experience ReportLinaro
 
Bsdtw17: johannes m dieterich: high performance computing and gpu acceleratio...
Bsdtw17: johannes m dieterich: high performance computing and gpu acceleratio...Bsdtw17: johannes m dieterich: high performance computing and gpu acceleratio...
Bsdtw17: johannes m dieterich: high performance computing and gpu acceleratio...Scott Tsai
 
Linux Stammtisch Munich: Ceph - Overview, Experiences and Outlook
Linux Stammtisch Munich: Ceph - Overview, Experiences and OutlookLinux Stammtisch Munich: Ceph - Overview, Experiences and Outlook
Linux Stammtisch Munich: Ceph - Overview, Experiences and OutlookDanny Al-Gaaf
 
"Making Computer Vision Software Run Fast on Your Embedded Platform," a Prese...
"Making Computer Vision Software Run Fast on Your Embedded Platform," a Prese..."Making Computer Vision Software Run Fast on Your Embedded Platform," a Prese...
"Making Computer Vision Software Run Fast on Your Embedded Platform," a Prese...Edge AI and Vision Alliance
 
A Journey into Hexagon: Dissecting Qualcomm Basebands
A Journey into Hexagon: Dissecting Qualcomm BasebandsA Journey into Hexagon: Dissecting Qualcomm Basebands
A Journey into Hexagon: Dissecting Qualcomm BasebandsPriyanka Aash
 
LMG Lightning Talks - SFO17-205
LMG Lightning Talks - SFO17-205LMG Lightning Talks - SFO17-205
LMG Lightning Talks - SFO17-205Linaro
 
AI Hardware Landscape 2021
AI Hardware Landscape 2021AI Hardware Landscape 2021
AI Hardware Landscape 2021Grigory Sapunov
 
Introduction to HPC & Supercomputing in AI
Introduction to HPC & Supercomputing in AIIntroduction to HPC & Supercomputing in AI
Introduction to HPC & Supercomputing in AITyrone Systems
 
LAS16-402: ARM Trusted Firmware – from Enterprise to Embedded
LAS16-402: ARM Trusted Firmware – from Enterprise to EmbeddedLAS16-402: ARM Trusted Firmware – from Enterprise to Embedded
LAS16-402: ARM Trusted Firmware – from Enterprise to EmbeddedLinaro
 
Embedded platform choices
Embedded platform choicesEmbedded platform choices
Embedded platform choicesTavish Naruka
 
Heterogeneous multiprocessing on androd and i.mx7
Heterogeneous multiprocessing on androd and i.mx7Heterogeneous multiprocessing on androd and i.mx7
Heterogeneous multiprocessing on androd and i.mx7Kynetics
 
Machine Learning Developers - Know your GPUs
Machine Learning Developers - Know your GPUsMachine Learning Developers - Know your GPUs
Machine Learning Developers - Know your GPUsAmazon Web Services
 
High-Performance Computing with C++
High-Performance Computing with C++High-Performance Computing with C++
High-Performance Computing with C++JetBrains
 
LAS16-TR06: Remoteproc & rpmsg development
LAS16-TR06: Remoteproc & rpmsg developmentLAS16-TR06: Remoteproc & rpmsg development
LAS16-TR06: Remoteproc & rpmsg developmentLinaro
 
Leveraging open source for large scale analytics
Leveraging open source for large scale analyticsLeveraging open source for large scale analytics
Leveraging open source for large scale analyticsSouth West Data Meetup
 
"New Standards for Embedded Vision and Neural Networks," a Presentation from ...
"New Standards for Embedded Vision and Neural Networks," a Presentation from ..."New Standards for Embedded Vision and Neural Networks," a Presentation from ...
"New Standards for Embedded Vision and Neural Networks," a Presentation from ...Edge AI and Vision Alliance
 

Ähnlich wie Deep Learning on ARM Platforms - SFO17-509 (20)

LCU13: GPGPU on ARM Experience Report
LCU13: GPGPU on ARM Experience ReportLCU13: GPGPU on ARM Experience Report
LCU13: GPGPU on ARM Experience Report
 
Bsdtw17: johannes m dieterich: high performance computing and gpu acceleratio...
Bsdtw17: johannes m dieterich: high performance computing and gpu acceleratio...Bsdtw17: johannes m dieterich: high performance computing and gpu acceleratio...
Bsdtw17: johannes m dieterich: high performance computing and gpu acceleratio...
 
Linux Stammtisch Munich: Ceph - Overview, Experiences and Outlook
Linux Stammtisch Munich: Ceph - Overview, Experiences and OutlookLinux Stammtisch Munich: Ceph - Overview, Experiences and Outlook
Linux Stammtisch Munich: Ceph - Overview, Experiences and Outlook
 
"Making Computer Vision Software Run Fast on Your Embedded Platform," a Prese...
"Making Computer Vision Software Run Fast on Your Embedded Platform," a Prese..."Making Computer Vision Software Run Fast on Your Embedded Platform," a Prese...
"Making Computer Vision Software Run Fast on Your Embedded Platform," a Prese...
 
A Journey into Hexagon: Dissecting Qualcomm Basebands
A Journey into Hexagon: Dissecting Qualcomm BasebandsA Journey into Hexagon: Dissecting Qualcomm Basebands
A Journey into Hexagon: Dissecting Qualcomm Basebands
 
GPU Programming with Java
GPU Programming with JavaGPU Programming with Java
GPU Programming with Java
 
LMG Lightning Talks - SFO17-205
LMG Lightning Talks - SFO17-205LMG Lightning Talks - SFO17-205
LMG Lightning Talks - SFO17-205
 
AI Hardware Landscape 2021
AI Hardware Landscape 2021AI Hardware Landscape 2021
AI Hardware Landscape 2021
 
Introduction to HPC & Supercomputing in AI
Introduction to HPC & Supercomputing in AIIntroduction to HPC & Supercomputing in AI
Introduction to HPC & Supercomputing in AI
 
LAS16-402: ARM Trusted Firmware – from Enterprise to Embedded
LAS16-402: ARM Trusted Firmware – from Enterprise to EmbeddedLAS16-402: ARM Trusted Firmware – from Enterprise to Embedded
LAS16-402: ARM Trusted Firmware – from Enterprise to Embedded
 
Embedded platform choices
Embedded platform choicesEmbedded platform choices
Embedded platform choices
 
Heterogeneous multiprocessing on androd and i.mx7
Heterogeneous multiprocessing on androd and i.mx7Heterogeneous multiprocessing on androd and i.mx7
Heterogeneous multiprocessing on androd and i.mx7
 
Machine Learning Developers - Know your GPUs
Machine Learning Developers - Know your GPUsMachine Learning Developers - Know your GPUs
Machine Learning Developers - Know your GPUs
 
Nvidia at SEMICon, Munich
Nvidia at SEMICon, MunichNvidia at SEMICon, Munich
Nvidia at SEMICon, Munich
 
High-Performance Computing with C++
High-Performance Computing with C++High-Performance Computing with C++
High-Performance Computing with C++
 
LAS16-TR06: Remoteproc & rpmsg development
LAS16-TR06: Remoteproc & rpmsg developmentLAS16-TR06: Remoteproc & rpmsg development
LAS16-TR06: Remoteproc & rpmsg development
 
State of ARM-based HPC
State of ARM-based HPCState of ARM-based HPC
State of ARM-based HPC
 
Leveraging open source for large scale analytics
Leveraging open source for large scale analyticsLeveraging open source for large scale analytics
Leveraging open source for large scale analytics
 
"New Standards for Embedded Vision and Neural Networks," a Presentation from ...
"New Standards for Embedded Vision and Neural Networks," a Presentation from ..."New Standards for Embedded Vision and Neural Networks," a Presentation from ...
"New Standards for Embedded Vision and Neural Networks," a Presentation from ...
 
Cuda
CudaCuda
Cuda
 

Mehr von Linaro

Arm Architecture HPC Workshop Santa Clara 2018 - Kanta Vekaria
Arm Architecture HPC Workshop Santa Clara 2018 - Kanta VekariaArm Architecture HPC Workshop Santa Clara 2018 - Kanta Vekaria
Arm Architecture HPC Workshop Santa Clara 2018 - Kanta VekariaLinaro
 
Huawei’s requirements for the ARM based HPC solution readiness - Joshua Mora
Huawei’s requirements for the ARM based HPC solution readiness - Joshua MoraHuawei’s requirements for the ARM based HPC solution readiness - Joshua Mora
Huawei’s requirements for the ARM based HPC solution readiness - Joshua MoraLinaro
 
Bud17 113: distribution ci using qemu and open qa
Bud17 113: distribution ci using qemu and open qaBud17 113: distribution ci using qemu and open qa
Bud17 113: distribution ci using qemu and open qaLinaro
 
OpenHPC Automation with Ansible - Renato Golin - Linaro Arm HPC Workshop 2018
OpenHPC Automation with Ansible - Renato Golin - Linaro Arm HPC Workshop 2018OpenHPC Automation with Ansible - Renato Golin - Linaro Arm HPC Workshop 2018
OpenHPC Automation with Ansible - Renato Golin - Linaro Arm HPC Workshop 2018Linaro
 
HPC network stack on ARM - Linaro HPC Workshop 2018
HPC network stack on ARM - Linaro HPC Workshop 2018HPC network stack on ARM - Linaro HPC Workshop 2018
HPC network stack on ARM - Linaro HPC Workshop 2018Linaro
 
It just keeps getting better - SUSE enablement for Arm - Linaro HPC Workshop ...
It just keeps getting better - SUSE enablement for Arm - Linaro HPC Workshop ...It just keeps getting better - SUSE enablement for Arm - Linaro HPC Workshop ...
It just keeps getting better - SUSE enablement for Arm - Linaro HPC Workshop ...Linaro
 
Intelligent Interconnect Architecture to Enable Next Generation HPC - Linaro ...
Intelligent Interconnect Architecture to Enable Next Generation HPC - Linaro ...Intelligent Interconnect Architecture to Enable Next Generation HPC - Linaro ...
Intelligent Interconnect Architecture to Enable Next Generation HPC - Linaro ...Linaro
 
Yutaka Ishikawa - Post-K and Arm HPC Ecosystem - Linaro Arm HPC Workshop Sant...
Yutaka Ishikawa - Post-K and Arm HPC Ecosystem - Linaro Arm HPC Workshop Sant...Yutaka Ishikawa - Post-K and Arm HPC Ecosystem - Linaro Arm HPC Workshop Sant...
Yutaka Ishikawa - Post-K and Arm HPC Ecosystem - Linaro Arm HPC Workshop Sant...Linaro
 
Andrew J Younge - Vanguard Astra - Petascale Arm Platform for U.S. DOE/ASC Su...
Andrew J Younge - Vanguard Astra - Petascale Arm Platform for U.S. DOE/ASC Su...Andrew J Younge - Vanguard Astra - Petascale Arm Platform for U.S. DOE/ASC Su...
Andrew J Younge - Vanguard Astra - Petascale Arm Platform for U.S. DOE/ASC Su...Linaro
 
HKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainline
HKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainlineHKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainline
HKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainlineLinaro
 
HKG18-100K1 - George Grey: Opening Keynote
HKG18-100K1 - George Grey: Opening KeynoteHKG18-100K1 - George Grey: Opening Keynote
HKG18-100K1 - George Grey: Opening KeynoteLinaro
 
HKG18-318 - OpenAMP Workshop
HKG18-318 - OpenAMP WorkshopHKG18-318 - OpenAMP Workshop
HKG18-318 - OpenAMP WorkshopLinaro
 
HKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainline
HKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainlineHKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainline
HKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainlineLinaro
 
HKG18-315 - Why the ecosystem is a wonderful thing, warts and all
HKG18-315 - Why the ecosystem is a wonderful thing, warts and allHKG18-315 - Why the ecosystem is a wonderful thing, warts and all
HKG18-315 - Why the ecosystem is a wonderful thing, warts and allLinaro
 
HKG18- 115 - Partitioning ARM Systems with the Jailhouse Hypervisor
HKG18- 115 - Partitioning ARM Systems with the Jailhouse HypervisorHKG18- 115 - Partitioning ARM Systems with the Jailhouse Hypervisor
HKG18- 115 - Partitioning ARM Systems with the Jailhouse HypervisorLinaro
 
HKG18-TR08 - Upstreaming SVE in QEMU
HKG18-TR08 - Upstreaming SVE in QEMUHKG18-TR08 - Upstreaming SVE in QEMU
HKG18-TR08 - Upstreaming SVE in QEMULinaro
 
HKG18-113- Secure Data Path work with i.MX8M
HKG18-113- Secure Data Path work with i.MX8MHKG18-113- Secure Data Path work with i.MX8M
HKG18-113- Secure Data Path work with i.MX8MLinaro
 
HKG18-120 - Devicetree Schema Documentation and Validation
HKG18-120 - Devicetree Schema Documentation and Validation HKG18-120 - Devicetree Schema Documentation and Validation
HKG18-120 - Devicetree Schema Documentation and Validation Linaro
 
HKG18-223 - Trusted FirmwareM: Trusted boot
HKG18-223 - Trusted FirmwareM: Trusted bootHKG18-223 - Trusted FirmwareM: Trusted boot
HKG18-223 - Trusted FirmwareM: Trusted bootLinaro
 
HKG18-500K1 - Keynote: Dileep Bhandarkar - Emerging Computing Trends in the D...
HKG18-500K1 - Keynote: Dileep Bhandarkar - Emerging Computing Trends in the D...HKG18-500K1 - Keynote: Dileep Bhandarkar - Emerging Computing Trends in the D...
HKG18-500K1 - Keynote: Dileep Bhandarkar - Emerging Computing Trends in the D...Linaro
 

Mehr von Linaro (20)

Arm Architecture HPC Workshop Santa Clara 2018 - Kanta Vekaria
Arm Architecture HPC Workshop Santa Clara 2018 - Kanta VekariaArm Architecture HPC Workshop Santa Clara 2018 - Kanta Vekaria
Arm Architecture HPC Workshop Santa Clara 2018 - Kanta Vekaria
 
Huawei’s requirements for the ARM based HPC solution readiness - Joshua Mora
Huawei’s requirements for the ARM based HPC solution readiness - Joshua MoraHuawei’s requirements for the ARM based HPC solution readiness - Joshua Mora
Huawei’s requirements for the ARM based HPC solution readiness - Joshua Mora
 
Bud17 113: distribution ci using qemu and open qa
Bud17 113: distribution ci using qemu and open qaBud17 113: distribution ci using qemu and open qa
Bud17 113: distribution ci using qemu and open qa
 
OpenHPC Automation with Ansible - Renato Golin - Linaro Arm HPC Workshop 2018
OpenHPC Automation with Ansible - Renato Golin - Linaro Arm HPC Workshop 2018OpenHPC Automation with Ansible - Renato Golin - Linaro Arm HPC Workshop 2018
OpenHPC Automation with Ansible - Renato Golin - Linaro Arm HPC Workshop 2018
 
HPC network stack on ARM - Linaro HPC Workshop 2018
HPC network stack on ARM - Linaro HPC Workshop 2018HPC network stack on ARM - Linaro HPC Workshop 2018
HPC network stack on ARM - Linaro HPC Workshop 2018
 
It just keeps getting better - SUSE enablement for Arm - Linaro HPC Workshop ...
It just keeps getting better - SUSE enablement for Arm - Linaro HPC Workshop ...It just keeps getting better - SUSE enablement for Arm - Linaro HPC Workshop ...
It just keeps getting better - SUSE enablement for Arm - Linaro HPC Workshop ...
 
Intelligent Interconnect Architecture to Enable Next Generation HPC - Linaro ...
Intelligent Interconnect Architecture to Enable Next Generation HPC - Linaro ...Intelligent Interconnect Architecture to Enable Next Generation HPC - Linaro ...
Intelligent Interconnect Architecture to Enable Next Generation HPC - Linaro ...
 
Yutaka Ishikawa - Post-K and Arm HPC Ecosystem - Linaro Arm HPC Workshop Sant...
Yutaka Ishikawa - Post-K and Arm HPC Ecosystem - Linaro Arm HPC Workshop Sant...Yutaka Ishikawa - Post-K and Arm HPC Ecosystem - Linaro Arm HPC Workshop Sant...
Yutaka Ishikawa - Post-K and Arm HPC Ecosystem - Linaro Arm HPC Workshop Sant...
 
Andrew J Younge - Vanguard Astra - Petascale Arm Platform for U.S. DOE/ASC Su...
Andrew J Younge - Vanguard Astra - Petascale Arm Platform for U.S. DOE/ASC Su...Andrew J Younge - Vanguard Astra - Petascale Arm Platform for U.S. DOE/ASC Su...
Andrew J Younge - Vanguard Astra - Petascale Arm Platform for U.S. DOE/ASC Su...
 
HKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainline
HKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainlineHKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainline
HKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainline
 
HKG18-100K1 - George Grey: Opening Keynote
HKG18-100K1 - George Grey: Opening KeynoteHKG18-100K1 - George Grey: Opening Keynote
HKG18-100K1 - George Grey: Opening Keynote
 
HKG18-318 - OpenAMP Workshop
HKG18-318 - OpenAMP WorkshopHKG18-318 - OpenAMP Workshop
HKG18-318 - OpenAMP Workshop
 
HKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainline
HKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainlineHKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainline
HKG18-501 - EAS on Common Kernel 4.14 and getting (much) closer to mainline
 
HKG18-315 - Why the ecosystem is a wonderful thing, warts and all
HKG18-315 - Why the ecosystem is a wonderful thing, warts and allHKG18-315 - Why the ecosystem is a wonderful thing, warts and all
HKG18-315 - Why the ecosystem is a wonderful thing, warts and all
 
HKG18- 115 - Partitioning ARM Systems with the Jailhouse Hypervisor
HKG18- 115 - Partitioning ARM Systems with the Jailhouse HypervisorHKG18- 115 - Partitioning ARM Systems with the Jailhouse Hypervisor
HKG18- 115 - Partitioning ARM Systems with the Jailhouse Hypervisor
 
HKG18-TR08 - Upstreaming SVE in QEMU
HKG18-TR08 - Upstreaming SVE in QEMUHKG18-TR08 - Upstreaming SVE in QEMU
HKG18-TR08 - Upstreaming SVE in QEMU
 
HKG18-113- Secure Data Path work with i.MX8M
HKG18-113- Secure Data Path work with i.MX8MHKG18-113- Secure Data Path work with i.MX8M
HKG18-113- Secure Data Path work with i.MX8M
 
HKG18-120 - Devicetree Schema Documentation and Validation
HKG18-120 - Devicetree Schema Documentation and Validation HKG18-120 - Devicetree Schema Documentation and Validation
HKG18-120 - Devicetree Schema Documentation and Validation
 
HKG18-223 - Trusted FirmwareM: Trusted boot
HKG18-223 - Trusted FirmwareM: Trusted bootHKG18-223 - Trusted FirmwareM: Trusted boot
HKG18-223 - Trusted FirmwareM: Trusted boot
 
HKG18-500K1 - Keynote: Dileep Bhandarkar - Emerging Computing Trends in the D...
HKG18-500K1 - Keynote: Dileep Bhandarkar - Emerging Computing Trends in the D...HKG18-500K1 - Keynote: Dileep Bhandarkar - Emerging Computing Trends in the D...
HKG18-500K1 - Keynote: Dileep Bhandarkar - Emerging Computing Trends in the D...
 

Kürzlich hochgeladen

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 

Kürzlich hochgeladen (20)

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 

Deep Learning on ARM Platforms - SFO17-509

  • 1. SFO17-509 Deep Learning on ARM Platforms - from the platform angle Jammy Zhou - Linaro
  • 2. ENGINEERS AND DEVICES WORKING TOGETHER Agenda ● Deep learning basics ● Platform overview ● Gaps and challenges
  • 3. ENGINEERS AND DEVICES WORKING TOGETHER Basic Elements Algorithms & Models CNN, R-CNN, RNN, LSTM, Feed Forward, BP, SGD, Deep Reinforcement learning, etc AlexNet, VGG, GoogLeNet, ResNet, SqueezeNet, SyntaxNet, MobileNet, SSD, YOLO, etc Computing Platforms CPU, GPU, FPGA, TPU, etc Deep learning software stack Datasets MNIST, ImageNet, CIFAR10, CIFAR100, AudioSet, DET, CLS-LOC, ActivityNet, etc + + Deep Learning
  • 4. ENGINEERS AND DEVICES WORKING TOGETHER ● Training on cloud & data center (desktop workstation can be used as well for development) ● Inference on cloud & data center or edge device Training & Inference Cloud and Data Center Edge Devices Dataset & Labels DL Framework Trained Model Device1 Device2 New Data Inference Result Trained Model DL Framework New Data Inference Result Batch processing for large dataset Untrained Model DL Framework
  • 5. ENGINEERS AND DEVICES WORKING TOGETHER Platform Overview Python Apps Frameworks Drivers Libraries Hardware Accelerators TensorFlowCaffe MXNet Theano Caffe2 Torch7 CNTK Paddle... C++ Apps Go Apps Java Apps... BLAS FFT RNG SPARSE Eigen... Application support for multiple frameworks? Framework support for multiple accelerator solutions?
  • 6. ENGINEERS AND DEVICES WORKING TOGETHER Heterogeneous Accelerators ● Nvidia ○ Tesla, Quadro, GeForce, and etc ○ Drive PX for self driving ○ Jetson TK1/TX1/TX2 for embedded ● AMD ○ Radeon Instinct, Radeon Pro ○ Embedded G series ● Mobile GPUs ○ ARM Mali ○ Qualcomm Adreno ○ Imagination PowerVR ○ VeriSilicon Vivante ● Google TPU ● Intel Nervana ● Nvidia Xavier DLA ● Horizon Robotics (地平线) BPU ● Cambricon (寒武纪) NPU ● Fujitsu DLU ● GraphCore IPU ● Intel/Altera Stratix, Arria, Cyclone ● Xilinx Ultrascale, Ultrascale+ ● Deephi Tech (深鉴科技) DPU (Xilinx based) ● Baidu XPU (Xilinx based) ● Qualcomm Hexagon ● CEVA XM ● TI C66x ● Cadence Tensilica Vision GPU ASIC FPGA DSP
  • 7. ENGINEERS AND DEVICES WORKING TOGETHER Interface & Libraries ● Nvidia CUDA ○ Proprietary (including the driver stack) ○ Widely supported by the DL frameworks and the industry ● AMD HIP ○ Fully open source together with the ROCm driver stack ○ Support both NVCC (for CUDA) and HCC compiler backends ● Khronos Standards ○ OpenCL ■ Support not only GPU, but also FPGA, DSP and other accelerators ○ OpenVX with Neural Network Extension ■ Acceleration for image processing and computer vision applications ○ Vulkan ■ Designed for both graphics and compute, mainly used for graphics now ● Nvidia ○ cuDNN, cuBLAS, cuSPARSE, etc ● AMD ○ MIOpen, hipBLAS/rocBLAS, hcRNG, hcFFT/rocFFT, etc ● OpenCL ○ AMD clBLAS, clFFT, clRNG, clSPARSE ○ ARM Compute Library, requires: ■ cl_arm_non_uniform_work_group_size ■ cl_khr_fp16 ○ Qualcomm Neural Processing Engine ● Others ○ Eigen - C++ template library for LA ○ OpenBLAS, NNPack, MKL, etc ○ OpenCV - Open source CV library ■ Have Halide based DNN module ○ Xilinx DNN and GEMM libraries
  • 8. ENGINEERS AND DEVICES WORKING TOGETHER Frameworks Vendor Languages CUDA HIP OpenCL ACL NPE[1] Caffe BVLC C++, Python, Matlab Yes Yes [2] Yes [2] Yes [2] Yes Caffe2 Facebook C++, Python Yes Yes [2] No No Yes TensorFlow Google Python, C++, JAVA, Go, etc Yes No [3] Yes [2] No Yes MXNet Apache Python, R, C++, Perl, etc Yes Yes [2] No Yes [2] No Torch Community Lua, Python, Matlab Yes Yes [2] Yes [2] No No Theano Montreal Python Yes No Yes [4] No No CNTK Microsoft Python, C++, C#, .Net, etc Yes No [3] No No No Paddle Baidu Python, Go Yes No No No No [1] The trained models are converted to DLC format for execution [2] Out-of-tree support, by vendors and community [3] Under development [4] Seems incomplete and buggy
  • 9. ENGINEERS AND DEVICES WORKING TOGETHER Benchmark and Testing ● Collective Knowledge SDK for AI ○ Automate benchmarking, optimization, co-design the whole deep learning stack to satisfy different requirements (e.g, execution time, accuracy, power consumption, memory usage, etc) ○ Have portable and customizable workflow framework ○ CK modules with open & unified JSON APIs are used to abstract access to changing SW & HW ○ Image classification and compiler flag prediction are supported now ● DeepBench from Baidu ○ Benchmark basic low-level operations on different hardwares for deep learning ● Convnet-benchmarks
  • 10. ENGINEERS AND DEVICES WORKING TOGETHER Gaps and Challenges - Arch Agnostic ● Vendor specific APIs are used for heterogeneous accelerators ○ Nvidia CUDA, AMD HIP, Google TPU StreamExecutor, and etc ○ Can OpenCL or something else be a competitive solution to rule the other world? ● OpenCL support is quited limited so far ○ There is no official OpenCL acceleration support by default for almost all major DL frameworks, although some of them have out-of-tree experimental support. ■ Can we get OpenCL support in upstream DL frameworks to reduce maintain effort? ■ Shall we enable and optimize OpenCL support for more DL frameworks? ○ Can Coriander be a solution to use existing CUDA backend of DL frameworks on OpenCL? ■ AMD HIP has similar mechanism to support CUDA on HIP ■ Coriander is still a research project with limited DL framework and HW support
  • 11. ENGINEERS AND DEVICES WORKING TOGETHER Coriander - CUDA on OpenCL http://www.iwocl.org/wp-content/uploads/iwocl2017-hugh-perkins-cuda-cl.pdf Compile time Run time
  • 12. ENGINEERS AND DEVICES WORKING TOGETHER Gaps and Challenges - Arch Agnostic (Cont.) ● The DL frameworks are fragmented ○ It is not easy to add new accelerator support, and it has to be done for each framework ■ Unified graph IR and tensor IR support for DL frameworks will be helpful ● See next page for several major graph IR implementations ○ There is no good interoperability between different DL frameworks ■ Operator and tensor sharing ● DLPack proposal seems promising, adopted by MXNet, PyTorch, Caffe2, tiny-dnn ■ Model translations between different DL frameworks ○ Applications need unified APIs for portability and flexibility ■ Keras: a Python DL library supporting TensorFlow, CNTK, Theano and MXNet backends ■ TensorFlow Lite and Neural Network API support on Android ● To support pre-trained models with other DL frameworks, translation will be required
  • 13. ENGINEERS AND DEVICES WORKING TOGETHER Computation Graph IR & Tensor IR ● Google XLA ○ A domain-specific compiler, which makes it easier to add custom backends, LLVM backends can be reused ○ JIT to analyse TF graph, fuse operators at runtime ○ AOT to support TF models on memory restricted devices - helpful for ARM devices ● MXNet NNVM & TVM ○ NNVM-Fusion plugin for GPU kernel optimization (e.g, ops fusion, runtime compilation) ○ TinyFlow: TF Front-End + NNVM + Torch7 Back-End ○ TVM: a tensor IR/DSL stack ■ It is DLpack compatible, and reuses Halide IR ● Intel/Nervana NGraph ○ Neon is supported, integrations with TF XLA and Caffe are ongoing ● ONNX (Open Neural Network Exchange) ○ Initiated by Facebook and Microsoft ○ Caffe2, PyTorch and CNTK will support it Who will become the ‘LLVM’ for DL?
  • 14. ENGINEERS AND DEVICES WORKING TOGETHER Gaps and Challenges - ARM Specific ● There are seldom ARM boards with good PCIe capability in the community ○ AMD ROCm requires PCIe Gen3 x8 or x16 with PCIe Atomics ○ High-end FPGA cards requires PCIe Gen3 x16 or Gen4 x8 (e.g, Virtex Ultrascale+ from Xilinx) ● Discrete graphics driver support on ARM platforms is quite limited ○ Nvidia Proprietary Linux GPU driver only supports Aarch32 ○ AMD ROCm has support for Cavium ThunderX, but no generic ARM support ○ GPU virtualization support is also needed by ARM data centers ● There is no good OpenCL driver distribution for mobile GPUs ○ OpenCL support for 96Boards needs improving ● Optimizations for edge devices ○ Memory footprint optimization for DL frameworks ■ e.g, quantization and low precision inference support being done by Google for TensorFlow ○ Power efficiency with different accelerators ● Anything else?
  • 16. ENGINEERS AND DEVICES WORKING TOGETHER 96Boards with OpenCL support 96Boards Accelerators OpenCL version Driver Public Availability Qualcomm DB410c Adreno 306, Hexagon QDSP6 V5 OpenCL 1.1 EP Yes for Android? Bubblegum-96(*) PowerVR G6230 OpenCL 1.2 EP Yes for Linux Mediatek X20 Mali T880 MP4 OpenCL 1.2 TBD Hisilicon Hikey960 Mali G71 MP8 OpenCL 2.0 Ongoing for Android Hisilicon Poplar Mali T720 OpenCL 1.2 TBD Qualcomm SD600eval Adreno 320, Hexagon QDSP6 V4 OpenCL 1.1 TBD Socionext F-Cue Mali T624 OpenCL 1.1 TBD Mavell Andromeda Vivante GC7000UL OpenCL 1.2 TBD MStar Kava Mali T820 OpenCL 1.2 TBD Altera Chameleon96 Cyclone V SoC FPGA OpenCL 1.0 EP TBD * ACL cannot be used on Bubblegum-96 for missing required OpenCL extensions
  • 17. Thank You #SFO17 SFO17 keynotes and videos on: connect.linaro.org For further information: www.linaro.org