SlideShare a Scribd company logo
1 of 52
Download to read offline
How to use Apache TVM to
optimize your ML models
Sameer Farooqui
Product Marketing Manager, OctoML
Faster inference in the cloud and at the edge
2
Faster Artificial Intelligence Everywhere
3
Optimizing Deep Learning Compiler
siliconANGLE
● “...cross-platform model compilers [...] are harbingers of
the new age in which it won’t matter what front-end tool
you used to build your AI algorithms and what back-end
clouds, platforms or chipsets are used to execute them.”
● “Cross-platform AI compilers will become standard
components of every AI development environment,
enabling developers to access every deep learning
framework and target platform without having to know
the technical particular of each environment.”
● “...within the next two to three years, the AI industry will
converge around one open-source cross-compilation
supported by all front-end and back-end environments”
4
Read the article
April 2018
Quotes from article:
Venture Beat
“With PyTorch and TensorFlow, you’ve seen the frameworks
sort of converge. The reason quantization comes up, and a
bunch of other lower-level efficiencies come up, is because
the next war is compilers for the frameworks — XLA, TVM,
PyTorch has Glow, a lot of innovation is waiting to happen,” he
said.
“For the next few years, you’re going to see … how to
quantize smarter, how to fuse better, how to use GPUs more
efficiently, [and] how to automatically compile for new
hardware.”
5
Read the article
Quote from Soumith Chintala:
(co-creator of PyTorch and distinguished engineer at Facebook AI)
Jan 2020
This Talk
6
● What is a ML Compiler?
● How TVM works
● TVM use cases
● OctoML Product Demo
7
Source code
Classical Compiler
Frontend Optimizer Backend Machine code
8
C
Classical Compiler
C Frontend
Common
Optimizer
PowerPC
Backend
PowerPC
Fortran
Fortran
Frontend
Ada code
Ada
Frontend
X86
Backend
x86
Arm
Backend
Arm
Source: The Architecture of Open Source Applications
9
Neural Network
Deep Learning Compiler
PyTorch
Optimizing
Compiler
GPUs
TensorFlow
ONNX
CPUs CPU optimized runtime
Accelerators
Neural Network
Neural Network
GPU optimized runtime
Accelerator optimized runtime
10
Neural Network
Deep Learning Compiler
PyTorch
GPUs
TensorFlow
ONNX
CPUs CPU optimized runtime
Accelerators
Neural Network
Neural Network
GPU optimized runtime
Accelerator optimized runtime
TVM:
11
An Automated End-to-End Optimizing
Compiler for Deep Learning
● “There is an increasing need to bring machine
learning to a wide diversity of hardware
devices”
● TVM is “a compiler that exposes graph-level
and operator-level optimizations to provide
performance portability to deep learning
workloads across diverse hardware back-
ends”
● “Experimental results show that TVM delivers
performance across hardware back-ends that
are competitive with state-of-the-art, hand-
tuned libraries for low-power CPU, mobile
GPU, and server-class GPUs”
Read the paper
Feb 2018
Relay:
12
A High-level Compiler for
Deep Learning
● Relay is “a high-level IR that enables end-to-
end optimization of deep learning models for a
variety of devices”
● “Relay's functional, statically typed
intermediate representation (IR) unifies and
generalizes existing DL IRs to express state-of-
the-art models”
● “With its extensible design and expressive
language, Relay serves as a foundation for
future work in applying compiler techniques to
the domain of deep learning systems”
Read the paper
April 2019
Ansor:
13
Generating High-Performance
Tensor Programs for Deep Learning
● “...obtaining performant tensor programs for
different operators on various hardware
platforms is notoriously challenging”
● Ansor is “a tensor program generation
framework for deep learning applications”
● “Ansor can find high-performance programs
that are outside the search space of existing
state-of-the-art approaches”
● “We show that Ansor improves the execution
performance of deep neural networks relative
to the state-of-the-art on the Intel CPU, ARM
CPU, and NVIDIA GPU by up to 3.8×, 2.6×, and
1.7×, respectively”
Read the paper
Nov 2020
14
Thank you Apache TVM contributors! 500+!
Who is using TVM?
15
Every Alexa wake-up today across all
devices uses a TVM-optimized model
“At Facebook, we've been contributing to
TVM for the past year and a half or so, and
it's been a really awesome experience”
“We're really excited about the performance
of TVM.” - Andrew Tulloch, AI Researcher
Bing query understanding: 3x faster on CPU
QnA bot: 2.6 faster on CPU, 1.8x faster on GPU
Who attended TVM Conf 2020?
16
950+ attendees
17
Deep Learning Systems Landscape (open source)
Orchestrators
Frameworks
Accelerators
Vendor
Libraries
Hardware
NVIDIA cuDNN Intel oneDNN Arm Compute Library
CPUs GPUs Accelerators
18
Graph Level Optimizations
Rewrites dataflow graphs (nodes and edges) to simplify
the graph and reduce device peak memory usage
Operator Level Optimizations
Hardware target-specific low-level optimizations for
individual operators/nodes in the graph.
Efficient Runtime
TVM optimized models run in the lightweight TVM Runtime
System, providing a minimal API for loading and executing
the model in Python, C++, Rust, Go, Java or Javascript
How does TVM work?
Deep Learning Operators
19
● Deep Neural Networks look like Directed Acyclic Graphs (DAGs)
● Operators are the building blocks (nodes) of neural network models
● Network edges represent data flowing between operators
Convolution
Broadcast Add
Matrix
Multiplication
Pooling
Batch
Normalization
ArgMin/ArgMax
Dropout
DynamicQuantizeLinear
Gemm
LSTM
LeakyRelu
Softmax
OneHotEncoder
RNN
Sigmoid
20
1
2
7
3
Relay
PyTorch / TensorFlow / ONNX
4
5
6
TE + Computation
AutoTVM/ Auto-scheduler
TE + Schedule
TIR
Hardware Specific Compiler
TVM Internals
21
Relay
● Relay has a functional, statically typed intermediate representation (IR)
22
Auto-scheduler (a.k.a. Ansor)
● Auto-scheduler (2nd gen) replaces AutoTVM
● Auto-scheduler/Ansor aims to a fully automated scheduler for generating
high-performance code for tensor computations, without manual templates
● Auto-scheduler can achieve better performance with faster search time in
a more automated way b/c of innovations in search space construction and
search algorithm
● Goal: Automatically turn tensor operations (like matmul or conv2d) into efficient code
implementation
● AutoTVM (1st gen): template-based search algorithm to find efficient implementation for
tensor operations.
○ required domain experts to write a manual template for every operator on every
platform, > 15k loc in TVM
Collaborators:
23
AutoTVM vs Auto-scheduler
Source: Apache TVMBlog: Introducing Auto-scheduler
24
Auto-scheduler’s Search Process
Source: Apache TVMBlog: Introducing Auto-scheduler
25
Benchmarks: AutoTVM vs Auto-scheduler
Source: Apache TVMBlog: Introducing Auto-scheduler
Code Performance
Comparison
(higher is better)
Search Time
Comparison
(lower is better)
26
Auto-scheduling on Apple M1
Source: OctoML Blog: Beating Apple's CoreML4
(lower is better)
● 22% faster on CPU
● 49% faster on GPU
How?
- Effective Auto-scheduler
searching
- Fuse qualified subgraphs
Relay
27
Conv2d
bias
+ relu ...
Conv2d
bias
+ relu
Conv2d
bias
+ relu ...
Conv2d
bias
+ relu
Relay: Fusion
28
Combine into a single fused
operation which can then be
optimized specifically for your
target.
Conv2d
bias
+ relu ...
Conv2d
bias
+ relu
Relay: Fusion
29
Combine into a single fused
operation which can then be
optimized specifically for your
target.
Conv2d
bias
+ relu ...
Conv2d
bias
+ relu
Relay: Device Placement
30
Partition your network to run
on multiple devices.
CPU
GPU
Conv2d
bias
+ relu ...
Conv2d
bias
+ relu
Relay: Layout Transformation
31
Generate efficient code for
different data layouts. NHCW
NHCW
Conv2d
bias
+ relu ...
Conv2d
bias
+ relu
Relay: Layout Transformation
32
Generate efficient code for
different data layouts. NHWC
NHWC
TIR Script
● TIR provides more flexibility than high
level tensor expressions.
● Not everything is expressible in TE and
auto-scheduling is not always perfect.
○ AutoScheduling 3.0 (code-
named AutoTIR coming later
this year)
○ We can also directly write TIR
directly using TIRScript.
33
@tvm.script.tir
def fuse_add_exp(a: ty.handle, c: ty.handle) -> None:
A = tir.match_buffer(a, (64,))
C = tir.match_buffer(c, (64,))
B = tir.alloc_buffer((64,))
with tir.block([64], "B") as [vi]:
B[vi] = A[vi] + 1
with tir.block([64], "C") as [vi]:
C[vi] = exp(B[vi])
Select Performance
Results
34
Faster Kernels for Dense-
Sparse Multiplication
● Performance comparison on
PruneBERT
● 3-10x faster than cuBLAS and
cuSPARSE.
● 1 engineer writing TensorIR kernels
35
Model x hardware comparison points
Performance at OctoML in 2020
Over 60 model x hardware benchmarking
studies
Each study compared TVM against best*
baseline on the target
Sorted by ascending log2 gain over baseline
36
TVM log2 fold improvement
over baseline
Model x hardware comparison points
37
TVM log2 fold improvement
over baseline
Across a broad variety of models and platforms
2.5x average performance improvement on non-public models
(2.1x across all)
Model x hardware comparison points
38
TVM log2 fold improvement
over baseline
Across a broad variety of models and platforms
34x for Yolo-V3 on a MIPS based camera platform
5.3x: video analysis model on Nvidia T4 against TensorRT
4x: random forest on Nvidia 1070 against XGBoost
2.5x: MobilenetV3 on ARM A72 CPU
Model x hardware comparison points
39
TVM log2 fold improvement
over baseline
Across a broad variety of models and platforms
34x for Yolo-V3 on a MIPS based camera platform
5.3x: video analysis model on Nvidia T4 against TensorRT
4x: random forest on Nvidia 1070 against XGBoost
2.5x: MobilenetV3 on ARM A72 CPU
Model x hardware comparison points
40
TVM log2 fold improvement
over baseline
Across a broad variety of models and platforms
34x for Yolo-V3 on a MIPS based camera platform
5.3x: video analysis model on Nvidia T4 against TensorRT
4x: random forest on Nvidia 1070 against XGBoost
2.5x: MobilenetV3 on ARM A72 CPU
Case Study: 90% cloud
inference cost reduction
Background
● Top 10 Tech Company running multiple
variations of customized CV models
● Model in batch processing /offline mode
using standard HW targets of a major
public cloud.
● Billions of inferences per month
● Benchmarking on CPU and GPU
Results
● 3.8x - TensorRT 8bit to TVM 8bit
● 10x - TensorRT 8bit to TVM 4bit
● Potential to reduce hourly costs by 90%
41
*V100at hourly price of $3.00per hour, T4at $0.53
Up to 10X
inferences/doll
ar
increase
See https://github.com/tlc-pack/tlcbench for benchmark scripts 42
Results: TVM on CPU and GPU
20core Intel-Platinum-8269CYfp32performance data
Intel X86 - 2-5X Performance
Normalized
performance
Normalized
performance
V100fp32performance data
NVIDIA GPU - 20-50% versus TensorRT
Normalized
performance
Normalized
performance
Why use the Octomizer vs “just” TVM OSS?
43
Octomizer
Compile
Optimize
Benchmark
Model x HW
analytics data
ML Performance
Model
● Access to OctoML’s “cost models”
○ We aggregate Models x HW data
○ Continuous improvement
● No need to install any SW, latest TVM
● No need to set up benchmarking HW
● “Outer loop” automation
○ optimize/package multiple models against
many HW targets in one go
● Access to comprehensive benchmarking data
○ E.g., for procurement, for HW vendor
competitive analysis
● Access to OctoML support
44
Octomizer Live Demo
API access
Waitlist! octoml.ai
45
The Octonauts!
You?
View career opportunities at
octoml.ai/careers
Thank you!
How to use Apache TVM to optimize your ML models
By Sameer Farooqui
48
49
50
51
52

More Related Content

What's hot

2値ディープニューラルネットワークと組込み機器への応用: 開発中のツール紹介
2値ディープニューラルネットワークと組込み機器への応用: 開発中のツール紹介2値ディープニューラルネットワークと組込み機器への応用: 開発中のツール紹介
2値ディープニューラルネットワークと組込み機器への応用: 開発中のツール紹介Hiroki Nakahara
 
合成経路探索 -論文まとめ- (PFN中郷孝祐)
合成経路探索 -論文まとめ-  (PFN中郷孝祐)合成経路探索 -論文まとめ-  (PFN中郷孝祐)
合成経路探索 -論文まとめ- (PFN中郷孝祐)Preferred Networks
 
ドメイン適応の原理と応用
ドメイン適応の原理と応用ドメイン適応の原理と応用
ドメイン適応の原理と応用Yoshitaka Ushiku
 
【DL輪読会】Llama 2: Open Foundation and Fine-Tuned Chat Models
【DL輪読会】Llama 2: Open Foundation and Fine-Tuned Chat Models【DL輪読会】Llama 2: Open Foundation and Fine-Tuned Chat Models
【DL輪読会】Llama 2: Open Foundation and Fine-Tuned Chat ModelsDeep Learning JP
 
モデル高速化百選
モデル高速化百選モデル高速化百選
モデル高速化百選Yusuke Uchida
 
開発者が語る NVIDIA cuQuantum SDK
開発者が語る NVIDIA cuQuantum SDK開発者が語る NVIDIA cuQuantum SDK
開発者が語る NVIDIA cuQuantum SDKNVIDIA Japan
 
[DL輪読会]A closer look at few shot classification
[DL輪読会]A closer look at few shot classification[DL輪読会]A closer look at few shot classification
[DL輪読会]A closer look at few shot classificationDeep Learning JP
 
スタートアップが提案する2030年の材料開発 - 2022/11/11 QPARC講演
スタートアップが提案する2030年の材料開発 - 2022/11/11 QPARC講演スタートアップが提案する2030年の材料開発 - 2022/11/11 QPARC講演
スタートアップが提案する2030年の材料開発 - 2022/11/11 QPARC講演Preferred Networks
 
Swin Transformer (ICCV'21 Best Paper) を完璧に理解する資料
Swin Transformer (ICCV'21 Best Paper) を完璧に理解する資料Swin Transformer (ICCV'21 Best Paper) を完璧に理解する資料
Swin Transformer (ICCV'21 Best Paper) を完璧に理解する資料Yusuke Uchida
 
Convolutional Neural Network (CNN)
Convolutional Neural Network (CNN)Convolutional Neural Network (CNN)
Convolutional Neural Network (CNN)Muhammad Haroon
 
全力解説!Transformer
全力解説!Transformer全力解説!Transformer
全力解説!TransformerArithmer Inc.
 
畳み込みニューラルネットワークの高精度化と高速化
畳み込みニューラルネットワークの高精度化と高速化畳み込みニューラルネットワークの高精度化と高速化
畳み込みニューラルネットワークの高精度化と高速化Yusuke Uchida
 
Python開発は仮想化しろ
Python開発は仮想化しろPython開発は仮想化しろ
Python開発は仮想化しろiPride Co., Ltd.
 
[DL輪読会]End-to-end Recovery of Human Shape and Pose
[DL輪読会]End-to-end Recovery of Human Shape and Pose[DL輪読会]End-to-end Recovery of Human Shape and Pose
[DL輪読会]End-to-end Recovery of Human Shape and PoseDeep Learning JP
 
PyTorchLightning ベース Hydra+MLFlow+Optuna による機械学習開発環境の構築
PyTorchLightning ベース Hydra+MLFlow+Optuna による機械学習開発環境の構築PyTorchLightning ベース Hydra+MLFlow+Optuna による機械学習開発環境の構築
PyTorchLightning ベース Hydra+MLFlow+Optuna による機械学習開発環境の構築Kosuke Shinoda
 
TensorFlow Lite Delegateとは?
TensorFlow Lite Delegateとは?TensorFlow Lite Delegateとは?
TensorFlow Lite Delegateとは?Mr. Vengineer
 
SSII2019TS: Shall We GANs?​ ~GANの基礎から最近の研究まで~
SSII2019TS: Shall We GANs?​ ~GANの基礎から最近の研究まで~SSII2019TS: Shall We GANs?​ ~GANの基礎から最近の研究まで~
SSII2019TS: Shall We GANs?​ ~GANの基礎から最近の研究まで~SSII
 
2値化CNN on FPGAでGPUとガチンコバトル(公開版)
2値化CNN on FPGAでGPUとガチンコバトル(公開版)2値化CNN on FPGAでGPUとガチンコバトル(公開版)
2値化CNN on FPGAでGPUとガチンコバトル(公開版)Hiroki Nakahara
 

What's hot (20)

2値ディープニューラルネットワークと組込み機器への応用: 開発中のツール紹介
2値ディープニューラルネットワークと組込み機器への応用: 開発中のツール紹介2値ディープニューラルネットワークと組込み機器への応用: 開発中のツール紹介
2値ディープニューラルネットワークと組込み機器への応用: 開発中のツール紹介
 
合成経路探索 -論文まとめ- (PFN中郷孝祐)
合成経路探索 -論文まとめ-  (PFN中郷孝祐)合成経路探索 -論文まとめ-  (PFN中郷孝祐)
合成経路探索 -論文まとめ- (PFN中郷孝祐)
 
ドメイン適応の原理と応用
ドメイン適応の原理と応用ドメイン適応の原理と応用
ドメイン適応の原理と応用
 
【DL輪読会】Llama 2: Open Foundation and Fine-Tuned Chat Models
【DL輪読会】Llama 2: Open Foundation and Fine-Tuned Chat Models【DL輪読会】Llama 2: Open Foundation and Fine-Tuned Chat Models
【DL輪読会】Llama 2: Open Foundation and Fine-Tuned Chat Models
 
モデル高速化百選
モデル高速化百選モデル高速化百選
モデル高速化百選
 
開発者が語る NVIDIA cuQuantum SDK
開発者が語る NVIDIA cuQuantum SDK開発者が語る NVIDIA cuQuantum SDK
開発者が語る NVIDIA cuQuantum SDK
 
[DL輪読会]A closer look at few shot classification
[DL輪読会]A closer look at few shot classification[DL輪読会]A closer look at few shot classification
[DL輪読会]A closer look at few shot classification
 
スタートアップが提案する2030年の材料開発 - 2022/11/11 QPARC講演
スタートアップが提案する2030年の材料開発 - 2022/11/11 QPARC講演スタートアップが提案する2030年の材料開発 - 2022/11/11 QPARC講演
スタートアップが提案する2030年の材料開発 - 2022/11/11 QPARC講演
 
Swin Transformer (ICCV'21 Best Paper) を完璧に理解する資料
Swin Transformer (ICCV'21 Best Paper) を完璧に理解する資料Swin Transformer (ICCV'21 Best Paper) を完璧に理解する資料
Swin Transformer (ICCV'21 Best Paper) を完璧に理解する資料
 
Ml system in_python
Ml system in_pythonMl system in_python
Ml system in_python
 
Convolutional Neural Network (CNN)
Convolutional Neural Network (CNN)Convolutional Neural Network (CNN)
Convolutional Neural Network (CNN)
 
全力解説!Transformer
全力解説!Transformer全力解説!Transformer
全力解説!Transformer
 
畳み込みニューラルネットワークの高精度化と高速化
畳み込みニューラルネットワークの高精度化と高速化畳み込みニューラルネットワークの高精度化と高速化
畳み込みニューラルネットワークの高精度化と高速化
 
Python開発は仮想化しろ
Python開発は仮想化しろPython開発は仮想化しろ
Python開発は仮想化しろ
 
[DL輪読会]End-to-end Recovery of Human Shape and Pose
[DL輪読会]End-to-end Recovery of Human Shape and Pose[DL輪読会]End-to-end Recovery of Human Shape and Pose
[DL輪読会]End-to-end Recovery of Human Shape and Pose
 
Transformers in 2021
Transformers in 2021Transformers in 2021
Transformers in 2021
 
PyTorchLightning ベース Hydra+MLFlow+Optuna による機械学習開発環境の構築
PyTorchLightning ベース Hydra+MLFlow+Optuna による機械学習開発環境の構築PyTorchLightning ベース Hydra+MLFlow+Optuna による機械学習開発環境の構築
PyTorchLightning ベース Hydra+MLFlow+Optuna による機械学習開発環境の構築
 
TensorFlow Lite Delegateとは?
TensorFlow Lite Delegateとは?TensorFlow Lite Delegateとは?
TensorFlow Lite Delegateとは?
 
SSII2019TS: Shall We GANs?​ ~GANの基礎から最近の研究まで~
SSII2019TS: Shall We GANs?​ ~GANの基礎から最近の研究まで~SSII2019TS: Shall We GANs?​ ~GANの基礎から最近の研究まで~
SSII2019TS: Shall We GANs?​ ~GANの基礎から最近の研究まで~
 
2値化CNN on FPGAでGPUとガチンコバトル(公開版)
2値化CNN on FPGAでGPUとガチンコバトル(公開版)2値化CNN on FPGAでGPUとガチンコバトル(公開版)
2値化CNN on FPGAでGPUとガチンコバトル(公開版)
 

Similar to How to use Apache TVM to optimize your ML models

Accelerating Real Time Applications on Heterogeneous Platforms
Accelerating Real Time Applications on Heterogeneous PlatformsAccelerating Real Time Applications on Heterogeneous Platforms
Accelerating Real Time Applications on Heterogeneous PlatformsIJMER
 
Machine-Learning-based Performance Heuristics for Runtime CPU/GPU Selection
Machine-Learning-based Performance Heuristics for Runtime CPU/GPU SelectionMachine-Learning-based Performance Heuristics for Runtime CPU/GPU Selection
Machine-Learning-based Performance Heuristics for Runtime CPU/GPU SelectionAkihiro Hayashi
 
Enabling Artificial Intelligence - Alison B. Lowndes
Enabling Artificial Intelligence - Alison B. LowndesEnabling Artificial Intelligence - Alison B. Lowndes
Enabling Artificial Intelligence - Alison B. LowndesWithTheBest
 
Developing Real-Time Systems on Application Processors
Developing Real-Time Systems on Application ProcessorsDeveloping Real-Time Systems on Application Processors
Developing Real-Time Systems on Application ProcessorsToradex
 
Backend.AI Technical Introduction (19.09 / 2019 Autumn)
Backend.AI Technical Introduction (19.09 / 2019 Autumn)Backend.AI Technical Introduction (19.09 / 2019 Autumn)
Backend.AI Technical Introduction (19.09 / 2019 Autumn)Lablup Inc.
 
RISC-V & SoC Architectural Exploration for AI and ML Accelerators
RISC-V & SoC Architectural Exploration for AI and ML AcceleratorsRISC-V & SoC Architectural Exploration for AI and ML Accelerators
RISC-V & SoC Architectural Exploration for AI and ML AcceleratorsRISC-V International
 
Webinar: Começando seus trabalhos com Machine Learning utilizando ferramentas...
Webinar: Começando seus trabalhos com Machine Learning utilizando ferramentas...Webinar: Começando seus trabalhos com Machine Learning utilizando ferramentas...
Webinar: Começando seus trabalhos com Machine Learning utilizando ferramentas...Embarcados
 
Intel Parallel Studio XE 2016 網路開發工具包新版本功能介紹(現已上市,歡迎詢價)
Intel Parallel Studio XE 2016 網路開發工具包新版本功能介紹(現已上市,歡迎詢價)Intel Parallel Studio XE 2016 網路開發工具包新版本功能介紹(現已上市,歡迎詢價)
Intel Parallel Studio XE 2016 網路開發工具包新版本功能介紹(現已上市,歡迎詢價)Cheer Chain Enterprise Co., Ltd.
 
Real time machine learning proposers day v3
Real time machine learning proposers day v3Real time machine learning proposers day v3
Real time machine learning proposers day v3mustafa sarac
 
Explore Deep Learning Architecture using Tensorflow 2.0 now! Part 2
Explore Deep Learning Architecture using Tensorflow 2.0 now! Part 2Explore Deep Learning Architecture using Tensorflow 2.0 now! Part 2
Explore Deep Learning Architecture using Tensorflow 2.0 now! Part 2Tyrone Systems
 
Large-Scale Optimization Strategies for Typical HPC Workloads
Large-Scale Optimization Strategies for Typical HPC WorkloadsLarge-Scale Optimization Strategies for Typical HPC Workloads
Large-Scale Optimization Strategies for Typical HPC Workloadsinside-BigData.com
 
Multicore_Architecture Book.pdf
Multicore_Architecture Book.pdfMulticore_Architecture Book.pdf
Multicore_Architecture Book.pdfSwatantraPrakash5
 
Understand and Harness the Capabilities of Intel® Xeon Phi™ Processors
Understand and Harness the Capabilities of Intel® Xeon Phi™ ProcessorsUnderstand and Harness the Capabilities of Intel® Xeon Phi™ Processors
Understand and Harness the Capabilities of Intel® Xeon Phi™ ProcessorsIntel® Software
 
The Impact of Compiler Auto-Optimisation on Arm-based HPC Microarchitectures
The Impact of Compiler Auto-Optimisation on Arm-based HPC MicroarchitecturesThe Impact of Compiler Auto-Optimisation on Arm-based HPC Microarchitectures
The Impact of Compiler Auto-Optimisation on Arm-based HPC MicroarchitecturesNECST Lab @ Politecnico di Milano
 
Harnessing the virtual realm for successful real world artificial intelligence
Harnessing the virtual realm for successful real world artificial intelligenceHarnessing the virtual realm for successful real world artificial intelligence
Harnessing the virtual realm for successful real world artificial intelligenceAlison B. Lowndes
 
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...Intel® Software
 
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
 

Similar to How to use Apache TVM to optimize your ML models (20)

Accelerating Real Time Applications on Heterogeneous Platforms
Accelerating Real Time Applications on Heterogeneous PlatformsAccelerating Real Time Applications on Heterogeneous Platforms
Accelerating Real Time Applications on Heterogeneous Platforms
 
Machine-Learning-based Performance Heuristics for Runtime CPU/GPU Selection
Machine-Learning-based Performance Heuristics for Runtime CPU/GPU SelectionMachine-Learning-based Performance Heuristics for Runtime CPU/GPU Selection
Machine-Learning-based Performance Heuristics for Runtime CPU/GPU Selection
 
Enabling Artificial Intelligence - Alison B. Lowndes
Enabling Artificial Intelligence - Alison B. LowndesEnabling Artificial Intelligence - Alison B. Lowndes
Enabling Artificial Intelligence - Alison B. Lowndes
 
Developing Real-Time Systems on Application Processors
Developing Real-Time Systems on Application ProcessorsDeveloping Real-Time Systems on Application Processors
Developing Real-Time Systems on Application Processors
 
Backend.AI Technical Introduction (19.09 / 2019 Autumn)
Backend.AI Technical Introduction (19.09 / 2019 Autumn)Backend.AI Technical Introduction (19.09 / 2019 Autumn)
Backend.AI Technical Introduction (19.09 / 2019 Autumn)
 
RISC-V & SoC Architectural Exploration for AI and ML Accelerators
RISC-V & SoC Architectural Exploration for AI and ML AcceleratorsRISC-V & SoC Architectural Exploration for AI and ML Accelerators
RISC-V & SoC Architectural Exploration for AI and ML Accelerators
 
Webinar: Começando seus trabalhos com Machine Learning utilizando ferramentas...
Webinar: Começando seus trabalhos com Machine Learning utilizando ferramentas...Webinar: Começando seus trabalhos com Machine Learning utilizando ferramentas...
Webinar: Começando seus trabalhos com Machine Learning utilizando ferramentas...
 
Intel Parallel Studio XE 2016 網路開發工具包新版本功能介紹(現已上市,歡迎詢價)
Intel Parallel Studio XE 2016 網路開發工具包新版本功能介紹(現已上市,歡迎詢價)Intel Parallel Studio XE 2016 網路開發工具包新版本功能介紹(現已上市,歡迎詢價)
Intel Parallel Studio XE 2016 網路開發工具包新版本功能介紹(現已上市,歡迎詢價)
 
Real time machine learning proposers day v3
Real time machine learning proposers day v3Real time machine learning proposers day v3
Real time machine learning proposers day v3
 
Explore Deep Learning Architecture using Tensorflow 2.0 now! Part 2
Explore Deep Learning Architecture using Tensorflow 2.0 now! Part 2Explore Deep Learning Architecture using Tensorflow 2.0 now! Part 2
Explore Deep Learning Architecture using Tensorflow 2.0 now! Part 2
 
Large-Scale Optimization Strategies for Typical HPC Workloads
Large-Scale Optimization Strategies for Typical HPC WorkloadsLarge-Scale Optimization Strategies for Typical HPC Workloads
Large-Scale Optimization Strategies for Typical HPC Workloads
 
Build 2019 Recap
Build 2019 RecapBuild 2019 Recap
Build 2019 Recap
 
Multicore_Architecture Book.pdf
Multicore_Architecture Book.pdfMulticore_Architecture Book.pdf
Multicore_Architecture Book.pdf
 
Understand and Harness the Capabilities of Intel® Xeon Phi™ Processors
Understand and Harness the Capabilities of Intel® Xeon Phi™ ProcessorsUnderstand and Harness the Capabilities of Intel® Xeon Phi™ Processors
Understand and Harness the Capabilities of Intel® Xeon Phi™ Processors
 
Balancing Power & Performance Webinar
Balancing Power & Performance WebinarBalancing Power & Performance Webinar
Balancing Power & Performance Webinar
 
The Impact of Compiler Auto-Optimisation on Arm-based HPC Microarchitectures
The Impact of Compiler Auto-Optimisation on Arm-based HPC MicroarchitecturesThe Impact of Compiler Auto-Optimisation on Arm-based HPC Microarchitectures
The Impact of Compiler Auto-Optimisation on Arm-based HPC Microarchitectures
 
Harnessing the virtual realm for successful real world artificial intelligence
Harnessing the virtual realm for successful real world artificial intelligenceHarnessing the virtual realm for successful real world artificial intelligence
Harnessing the virtual realm for successful real world artificial intelligence
 
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...
 
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
 
Onnc intro
Onnc introOnnc intro
Onnc intro
 

More from Databricks

DW Migration Webinar-March 2022.pptx
DW Migration Webinar-March 2022.pptxDW Migration Webinar-March 2022.pptx
DW Migration Webinar-March 2022.pptxDatabricks
 
Data Lakehouse Symposium | Day 1 | Part 1
Data Lakehouse Symposium | Day 1 | Part 1Data Lakehouse Symposium | Day 1 | Part 1
Data Lakehouse Symposium | Day 1 | Part 1Databricks
 
Data Lakehouse Symposium | Day 1 | Part 2
Data Lakehouse Symposium | Day 1 | Part 2Data Lakehouse Symposium | Day 1 | Part 2
Data Lakehouse Symposium | Day 1 | Part 2Databricks
 
Data Lakehouse Symposium | Day 2
Data Lakehouse Symposium | Day 2Data Lakehouse Symposium | Day 2
Data Lakehouse Symposium | Day 2Databricks
 
Data Lakehouse Symposium | Day 4
Data Lakehouse Symposium | Day 4Data Lakehouse Symposium | Day 4
Data Lakehouse Symposium | Day 4Databricks
 
5 Critical Steps to Clean Your Data Swamp When Migrating Off of Hadoop
5 Critical Steps to Clean Your Data Swamp When Migrating Off of Hadoop5 Critical Steps to Clean Your Data Swamp When Migrating Off of Hadoop
5 Critical Steps to Clean Your Data Swamp When Migrating Off of HadoopDatabricks
 
Democratizing Data Quality Through a Centralized Platform
Democratizing Data Quality Through a Centralized PlatformDemocratizing Data Quality Through a Centralized Platform
Democratizing Data Quality Through a Centralized PlatformDatabricks
 
Learn to Use Databricks for Data Science
Learn to Use Databricks for Data ScienceLearn to Use Databricks for Data Science
Learn to Use Databricks for Data ScienceDatabricks
 
Why APM Is Not the Same As ML Monitoring
Why APM Is Not the Same As ML MonitoringWhy APM Is Not the Same As ML Monitoring
Why APM Is Not the Same As ML MonitoringDatabricks
 
The Function, the Context, and the Data—Enabling ML Ops at Stitch Fix
The Function, the Context, and the Data—Enabling ML Ops at Stitch FixThe Function, the Context, and the Data—Enabling ML Ops at Stitch Fix
The Function, the Context, and the Data—Enabling ML Ops at Stitch FixDatabricks
 
Stage Level Scheduling Improving Big Data and AI Integration
Stage Level Scheduling Improving Big Data and AI IntegrationStage Level Scheduling Improving Big Data and AI Integration
Stage Level Scheduling Improving Big Data and AI IntegrationDatabricks
 
Simplify Data Conversion from Spark to TensorFlow and PyTorch
Simplify Data Conversion from Spark to TensorFlow and PyTorchSimplify Data Conversion from Spark to TensorFlow and PyTorch
Simplify Data Conversion from Spark to TensorFlow and PyTorchDatabricks
 
Scaling your Data Pipelines with Apache Spark on Kubernetes
Scaling your Data Pipelines with Apache Spark on KubernetesScaling your Data Pipelines with Apache Spark on Kubernetes
Scaling your Data Pipelines with Apache Spark on KubernetesDatabricks
 
Scaling and Unifying SciKit Learn and Apache Spark Pipelines
Scaling and Unifying SciKit Learn and Apache Spark PipelinesScaling and Unifying SciKit Learn and Apache Spark Pipelines
Scaling and Unifying SciKit Learn and Apache Spark PipelinesDatabricks
 
Sawtooth Windows for Feature Aggregations
Sawtooth Windows for Feature AggregationsSawtooth Windows for Feature Aggregations
Sawtooth Windows for Feature AggregationsDatabricks
 
Redis + Apache Spark = Swiss Army Knife Meets Kitchen Sink
Redis + Apache Spark = Swiss Army Knife Meets Kitchen SinkRedis + Apache Spark = Swiss Army Knife Meets Kitchen Sink
Redis + Apache Spark = Swiss Army Knife Meets Kitchen SinkDatabricks
 
Re-imagine Data Monitoring with whylogs and Spark
Re-imagine Data Monitoring with whylogs and SparkRe-imagine Data Monitoring with whylogs and Spark
Re-imagine Data Monitoring with whylogs and SparkDatabricks
 
Raven: End-to-end Optimization of ML Prediction Queries
Raven: End-to-end Optimization of ML Prediction QueriesRaven: End-to-end Optimization of ML Prediction Queries
Raven: End-to-end Optimization of ML Prediction QueriesDatabricks
 
Processing Large Datasets for ADAS Applications using Apache Spark
Processing Large Datasets for ADAS Applications using Apache SparkProcessing Large Datasets for ADAS Applications using Apache Spark
Processing Large Datasets for ADAS Applications using Apache SparkDatabricks
 
Massive Data Processing in Adobe Using Delta Lake
Massive Data Processing in Adobe Using Delta LakeMassive Data Processing in Adobe Using Delta Lake
Massive Data Processing in Adobe Using Delta LakeDatabricks
 

More from Databricks (20)

DW Migration Webinar-March 2022.pptx
DW Migration Webinar-March 2022.pptxDW Migration Webinar-March 2022.pptx
DW Migration Webinar-March 2022.pptx
 
Data Lakehouse Symposium | Day 1 | Part 1
Data Lakehouse Symposium | Day 1 | Part 1Data Lakehouse Symposium | Day 1 | Part 1
Data Lakehouse Symposium | Day 1 | Part 1
 
Data Lakehouse Symposium | Day 1 | Part 2
Data Lakehouse Symposium | Day 1 | Part 2Data Lakehouse Symposium | Day 1 | Part 2
Data Lakehouse Symposium | Day 1 | Part 2
 
Data Lakehouse Symposium | Day 2
Data Lakehouse Symposium | Day 2Data Lakehouse Symposium | Day 2
Data Lakehouse Symposium | Day 2
 
Data Lakehouse Symposium | Day 4
Data Lakehouse Symposium | Day 4Data Lakehouse Symposium | Day 4
Data Lakehouse Symposium | Day 4
 
5 Critical Steps to Clean Your Data Swamp When Migrating Off of Hadoop
5 Critical Steps to Clean Your Data Swamp When Migrating Off of Hadoop5 Critical Steps to Clean Your Data Swamp When Migrating Off of Hadoop
5 Critical Steps to Clean Your Data Swamp When Migrating Off of Hadoop
 
Democratizing Data Quality Through a Centralized Platform
Democratizing Data Quality Through a Centralized PlatformDemocratizing Data Quality Through a Centralized Platform
Democratizing Data Quality Through a Centralized Platform
 
Learn to Use Databricks for Data Science
Learn to Use Databricks for Data ScienceLearn to Use Databricks for Data Science
Learn to Use Databricks for Data Science
 
Why APM Is Not the Same As ML Monitoring
Why APM Is Not the Same As ML MonitoringWhy APM Is Not the Same As ML Monitoring
Why APM Is Not the Same As ML Monitoring
 
The Function, the Context, and the Data—Enabling ML Ops at Stitch Fix
The Function, the Context, and the Data—Enabling ML Ops at Stitch FixThe Function, the Context, and the Data—Enabling ML Ops at Stitch Fix
The Function, the Context, and the Data—Enabling ML Ops at Stitch Fix
 
Stage Level Scheduling Improving Big Data and AI Integration
Stage Level Scheduling Improving Big Data and AI IntegrationStage Level Scheduling Improving Big Data and AI Integration
Stage Level Scheduling Improving Big Data and AI Integration
 
Simplify Data Conversion from Spark to TensorFlow and PyTorch
Simplify Data Conversion from Spark to TensorFlow and PyTorchSimplify Data Conversion from Spark to TensorFlow and PyTorch
Simplify Data Conversion from Spark to TensorFlow and PyTorch
 
Scaling your Data Pipelines with Apache Spark on Kubernetes
Scaling your Data Pipelines with Apache Spark on KubernetesScaling your Data Pipelines with Apache Spark on Kubernetes
Scaling your Data Pipelines with Apache Spark on Kubernetes
 
Scaling and Unifying SciKit Learn and Apache Spark Pipelines
Scaling and Unifying SciKit Learn and Apache Spark PipelinesScaling and Unifying SciKit Learn and Apache Spark Pipelines
Scaling and Unifying SciKit Learn and Apache Spark Pipelines
 
Sawtooth Windows for Feature Aggregations
Sawtooth Windows for Feature AggregationsSawtooth Windows for Feature Aggregations
Sawtooth Windows for Feature Aggregations
 
Redis + Apache Spark = Swiss Army Knife Meets Kitchen Sink
Redis + Apache Spark = Swiss Army Knife Meets Kitchen SinkRedis + Apache Spark = Swiss Army Knife Meets Kitchen Sink
Redis + Apache Spark = Swiss Army Knife Meets Kitchen Sink
 
Re-imagine Data Monitoring with whylogs and Spark
Re-imagine Data Monitoring with whylogs and SparkRe-imagine Data Monitoring with whylogs and Spark
Re-imagine Data Monitoring with whylogs and Spark
 
Raven: End-to-end Optimization of ML Prediction Queries
Raven: End-to-end Optimization of ML Prediction QueriesRaven: End-to-end Optimization of ML Prediction Queries
Raven: End-to-end Optimization of ML Prediction Queries
 
Processing Large Datasets for ADAS Applications using Apache Spark
Processing Large Datasets for ADAS Applications using Apache SparkProcessing Large Datasets for ADAS Applications using Apache Spark
Processing Large Datasets for ADAS Applications using Apache Spark
 
Massive Data Processing in Adobe Using Delta Lake
Massive Data Processing in Adobe Using Delta LakeMassive Data Processing in Adobe Using Delta Lake
Massive Data Processing in Adobe Using Delta Lake
 

Recently uploaded

Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxolyaivanovalion
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Researchmichael115558
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Valters Lauzums
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...shambhavirathore45
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionfulawalesam
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAroojKhan71
 
VidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxVidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxolyaivanovalion
 
Zuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxZuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxolyaivanovalion
 
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779Delhi Call girls
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...amitlee9823
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxolyaivanovalion
 
Edukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxEdukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxolyaivanovalion
 
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfadriantubila
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxolyaivanovalion
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 

Recently uploaded (20)

Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptx
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interaction
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
 
VidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxVidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptx
 
Zuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxZuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptx
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
BabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptxBabyOno dropshipping via API with DroFx.pptx
BabyOno dropshipping via API with DroFx.pptx
 
Edukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxEdukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFx
 
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
 
Sampling (random) method and Non random.ppt
Sampling (random) method and Non random.pptSampling (random) method and Non random.ppt
Sampling (random) method and Non random.ppt
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptx
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 

How to use Apache TVM to optimize your ML models

  • 1. How to use Apache TVM to optimize your ML models Sameer Farooqui Product Marketing Manager, OctoML Faster inference in the cloud and at the edge
  • 4. siliconANGLE ● “...cross-platform model compilers [...] are harbingers of the new age in which it won’t matter what front-end tool you used to build your AI algorithms and what back-end clouds, platforms or chipsets are used to execute them.” ● “Cross-platform AI compilers will become standard components of every AI development environment, enabling developers to access every deep learning framework and target platform without having to know the technical particular of each environment.” ● “...within the next two to three years, the AI industry will converge around one open-source cross-compilation supported by all front-end and back-end environments” 4 Read the article April 2018 Quotes from article:
  • 5. Venture Beat “With PyTorch and TensorFlow, you’ve seen the frameworks sort of converge. The reason quantization comes up, and a bunch of other lower-level efficiencies come up, is because the next war is compilers for the frameworks — XLA, TVM, PyTorch has Glow, a lot of innovation is waiting to happen,” he said. “For the next few years, you’re going to see … how to quantize smarter, how to fuse better, how to use GPUs more efficiently, [and] how to automatically compile for new hardware.” 5 Read the article Quote from Soumith Chintala: (co-creator of PyTorch and distinguished engineer at Facebook AI) Jan 2020
  • 6. This Talk 6 ● What is a ML Compiler? ● How TVM works ● TVM use cases ● OctoML Product Demo
  • 7. 7 Source code Classical Compiler Frontend Optimizer Backend Machine code
  • 8. 8 C Classical Compiler C Frontend Common Optimizer PowerPC Backend PowerPC Fortran Fortran Frontend Ada code Ada Frontend X86 Backend x86 Arm Backend Arm Source: The Architecture of Open Source Applications
  • 9. 9 Neural Network Deep Learning Compiler PyTorch Optimizing Compiler GPUs TensorFlow ONNX CPUs CPU optimized runtime Accelerators Neural Network Neural Network GPU optimized runtime Accelerator optimized runtime
  • 10. 10 Neural Network Deep Learning Compiler PyTorch GPUs TensorFlow ONNX CPUs CPU optimized runtime Accelerators Neural Network Neural Network GPU optimized runtime Accelerator optimized runtime
  • 11. TVM: 11 An Automated End-to-End Optimizing Compiler for Deep Learning ● “There is an increasing need to bring machine learning to a wide diversity of hardware devices” ● TVM is “a compiler that exposes graph-level and operator-level optimizations to provide performance portability to deep learning workloads across diverse hardware back- ends” ● “Experimental results show that TVM delivers performance across hardware back-ends that are competitive with state-of-the-art, hand- tuned libraries for low-power CPU, mobile GPU, and server-class GPUs” Read the paper Feb 2018
  • 12. Relay: 12 A High-level Compiler for Deep Learning ● Relay is “a high-level IR that enables end-to- end optimization of deep learning models for a variety of devices” ● “Relay's functional, statically typed intermediate representation (IR) unifies and generalizes existing DL IRs to express state-of- the-art models” ● “With its extensible design and expressive language, Relay serves as a foundation for future work in applying compiler techniques to the domain of deep learning systems” Read the paper April 2019
  • 13. Ansor: 13 Generating High-Performance Tensor Programs for Deep Learning ● “...obtaining performant tensor programs for different operators on various hardware platforms is notoriously challenging” ● Ansor is “a tensor program generation framework for deep learning applications” ● “Ansor can find high-performance programs that are outside the search space of existing state-of-the-art approaches” ● “We show that Ansor improves the execution performance of deep neural networks relative to the state-of-the-art on the Intel CPU, ARM CPU, and NVIDIA GPU by up to 3.8×, 2.6×, and 1.7×, respectively” Read the paper Nov 2020
  • 14. 14 Thank you Apache TVM contributors! 500+!
  • 15. Who is using TVM? 15 Every Alexa wake-up today across all devices uses a TVM-optimized model “At Facebook, we've been contributing to TVM for the past year and a half or so, and it's been a really awesome experience” “We're really excited about the performance of TVM.” - Andrew Tulloch, AI Researcher Bing query understanding: 3x faster on CPU QnA bot: 2.6 faster on CPU, 1.8x faster on GPU
  • 16. Who attended TVM Conf 2020? 16 950+ attendees
  • 17. 17 Deep Learning Systems Landscape (open source) Orchestrators Frameworks Accelerators Vendor Libraries Hardware NVIDIA cuDNN Intel oneDNN Arm Compute Library CPUs GPUs Accelerators
  • 18. 18 Graph Level Optimizations Rewrites dataflow graphs (nodes and edges) to simplify the graph and reduce device peak memory usage Operator Level Optimizations Hardware target-specific low-level optimizations for individual operators/nodes in the graph. Efficient Runtime TVM optimized models run in the lightweight TVM Runtime System, providing a minimal API for loading and executing the model in Python, C++, Rust, Go, Java or Javascript How does TVM work?
  • 19. Deep Learning Operators 19 ● Deep Neural Networks look like Directed Acyclic Graphs (DAGs) ● Operators are the building blocks (nodes) of neural network models ● Network edges represent data flowing between operators Convolution Broadcast Add Matrix Multiplication Pooling Batch Normalization ArgMin/ArgMax Dropout DynamicQuantizeLinear Gemm LSTM LeakyRelu Softmax OneHotEncoder RNN Sigmoid
  • 20. 20 1 2 7 3 Relay PyTorch / TensorFlow / ONNX 4 5 6 TE + Computation AutoTVM/ Auto-scheduler TE + Schedule TIR Hardware Specific Compiler TVM Internals
  • 21. 21 Relay ● Relay has a functional, statically typed intermediate representation (IR)
  • 22. 22 Auto-scheduler (a.k.a. Ansor) ● Auto-scheduler (2nd gen) replaces AutoTVM ● Auto-scheduler/Ansor aims to a fully automated scheduler for generating high-performance code for tensor computations, without manual templates ● Auto-scheduler can achieve better performance with faster search time in a more automated way b/c of innovations in search space construction and search algorithm ● Goal: Automatically turn tensor operations (like matmul or conv2d) into efficient code implementation ● AutoTVM (1st gen): template-based search algorithm to find efficient implementation for tensor operations. ○ required domain experts to write a manual template for every operator on every platform, > 15k loc in TVM Collaborators:
  • 23. 23 AutoTVM vs Auto-scheduler Source: Apache TVMBlog: Introducing Auto-scheduler
  • 24. 24 Auto-scheduler’s Search Process Source: Apache TVMBlog: Introducing Auto-scheduler
  • 25. 25 Benchmarks: AutoTVM vs Auto-scheduler Source: Apache TVMBlog: Introducing Auto-scheduler Code Performance Comparison (higher is better) Search Time Comparison (lower is better)
  • 26. 26 Auto-scheduling on Apple M1 Source: OctoML Blog: Beating Apple's CoreML4 (lower is better) ● 22% faster on CPU ● 49% faster on GPU How? - Effective Auto-scheduler searching - Fuse qualified subgraphs
  • 28. Conv2d bias + relu ... Conv2d bias + relu Relay: Fusion 28 Combine into a single fused operation which can then be optimized specifically for your target.
  • 29. Conv2d bias + relu ... Conv2d bias + relu Relay: Fusion 29 Combine into a single fused operation which can then be optimized specifically for your target.
  • 30. Conv2d bias + relu ... Conv2d bias + relu Relay: Device Placement 30 Partition your network to run on multiple devices. CPU GPU
  • 31. Conv2d bias + relu ... Conv2d bias + relu Relay: Layout Transformation 31 Generate efficient code for different data layouts. NHCW NHCW
  • 32. Conv2d bias + relu ... Conv2d bias + relu Relay: Layout Transformation 32 Generate efficient code for different data layouts. NHWC NHWC
  • 33. TIR Script ● TIR provides more flexibility than high level tensor expressions. ● Not everything is expressible in TE and auto-scheduling is not always perfect. ○ AutoScheduling 3.0 (code- named AutoTIR coming later this year) ○ We can also directly write TIR directly using TIRScript. 33 @tvm.script.tir def fuse_add_exp(a: ty.handle, c: ty.handle) -> None: A = tir.match_buffer(a, (64,)) C = tir.match_buffer(c, (64,)) B = tir.alloc_buffer((64,)) with tir.block([64], "B") as [vi]: B[vi] = A[vi] + 1 with tir.block([64], "C") as [vi]: C[vi] = exp(B[vi])
  • 35. Faster Kernels for Dense- Sparse Multiplication ● Performance comparison on PruneBERT ● 3-10x faster than cuBLAS and cuSPARSE. ● 1 engineer writing TensorIR kernels 35
  • 36. Model x hardware comparison points Performance at OctoML in 2020 Over 60 model x hardware benchmarking studies Each study compared TVM against best* baseline on the target Sorted by ascending log2 gain over baseline 36 TVM log2 fold improvement over baseline
  • 37. Model x hardware comparison points 37 TVM log2 fold improvement over baseline Across a broad variety of models and platforms 2.5x average performance improvement on non-public models (2.1x across all)
  • 38. Model x hardware comparison points 38 TVM log2 fold improvement over baseline Across a broad variety of models and platforms 34x for Yolo-V3 on a MIPS based camera platform 5.3x: video analysis model on Nvidia T4 against TensorRT 4x: random forest on Nvidia 1070 against XGBoost 2.5x: MobilenetV3 on ARM A72 CPU
  • 39. Model x hardware comparison points 39 TVM log2 fold improvement over baseline Across a broad variety of models and platforms 34x for Yolo-V3 on a MIPS based camera platform 5.3x: video analysis model on Nvidia T4 against TensorRT 4x: random forest on Nvidia 1070 against XGBoost 2.5x: MobilenetV3 on ARM A72 CPU
  • 40. Model x hardware comparison points 40 TVM log2 fold improvement over baseline Across a broad variety of models and platforms 34x for Yolo-V3 on a MIPS based camera platform 5.3x: video analysis model on Nvidia T4 against TensorRT 4x: random forest on Nvidia 1070 against XGBoost 2.5x: MobilenetV3 on ARM A72 CPU
  • 41. Case Study: 90% cloud inference cost reduction Background ● Top 10 Tech Company running multiple variations of customized CV models ● Model in batch processing /offline mode using standard HW targets of a major public cloud. ● Billions of inferences per month ● Benchmarking on CPU and GPU Results ● 3.8x - TensorRT 8bit to TVM 8bit ● 10x - TensorRT 8bit to TVM 4bit ● Potential to reduce hourly costs by 90% 41 *V100at hourly price of $3.00per hour, T4at $0.53 Up to 10X inferences/doll ar increase
  • 42. See https://github.com/tlc-pack/tlcbench for benchmark scripts 42 Results: TVM on CPU and GPU 20core Intel-Platinum-8269CYfp32performance data Intel X86 - 2-5X Performance Normalized performance Normalized performance V100fp32performance data NVIDIA GPU - 20-50% versus TensorRT Normalized performance Normalized performance
  • 43. Why use the Octomizer vs “just” TVM OSS? 43 Octomizer Compile Optimize Benchmark Model x HW analytics data ML Performance Model ● Access to OctoML’s “cost models” ○ We aggregate Models x HW data ○ Continuous improvement ● No need to install any SW, latest TVM ● No need to set up benchmarking HW ● “Outer loop” automation ○ optimize/package multiple models against many HW targets in one go ● Access to comprehensive benchmarking data ○ E.g., for procurement, for HW vendor competitive analysis ● Access to OctoML support
  • 44. 44 Octomizer Live Demo API access Waitlist! octoml.ai
  • 45. 45 The Octonauts! You? View career opportunities at octoml.ai/careers
  • 46. Thank you! How to use Apache TVM to optimize your ML models By Sameer Farooqui
  • 47.
  • 48. 48
  • 49. 49
  • 50. 50
  • 51. 51
  • 52. 52