SlideShare a Scribd company logo
Yoon Dongwon (Game AI Team, Game AI Lab, AI Center, NCSOFT)
Jang Hanyoung (Motion AI Team, Game AI Lab, AI Center, NCSOFT)
@IntelSoftware @IntelGraphics 2
Agenda
• Introduction
• Deep learning based Inverse Kinematics
• Optimization using Intel® OpenVINO™ toolkit
• Result
• Conclusion
@IntelSoftware @IntelGraphics 3
The Team
Game AI Lab
Motion AI
Team
Game AI
Team
Reinforcement
Learning Team
Accelerate Large-Scale Inverse Kinematics with the Intel® Distribution of OpenVINO™ Toolkit
@IntelSoftware @IntelGraphics 5
Inverse Kinematics (IK)
• Compute joint angle that makes end-effector move to
the target.
Target
Joint angle 3
Joint angle 1
Joint angle 2
End-effector
?
?
?
Catch the target
@IntelSoftware @IntelGraphics 6
Inverse Kinematics in Games
• Generate animations that interact with the
surrounding environment
ex) Solving the foot skating problem ex) Generate animation to catch some object
@IntelSoftware @IntelGraphics 7
Goal
• Large number of characters climb rugged cliff with IK
@IntelSoftware @IntelGraphics 8
Challenges
Traditional methods are not suitable for the objective
Numerical approach Analytical approach
Quality Good Bad
Performance Slow Fast
Numerical approach Analytical approach Deep Learning
Quality Good Bad Good
Performance Slow Fast Fast
Solution
Accelerate Large-Scale Inverse Kinematics with the Intel® Distribution of OpenVINO™ Toolkit
@IntelSoftware @IntelGraphics 10
Approach
“Input”
• Current Hands and Feet Positions
• Target Hands and Feet Positions
“Output”
• Climbing motion
• Number of Frames : 60
• Length : 2 seconds
Deep Learning based IK Solver
R
R
@IntelSoftware @IntelGraphics 11
Architecture [1/2]
Trajectory
Network
60 Pose
Networks
R
R
5 Trajectories
Deep Learning based IK Solver
@IntelSoftware @IntelGraphics 12
Architecture [2/2]
Trajectory
Network
60 Pose
Networks
Curve
fitting
R
R
R
R
5 Trajectories
Smoothened
5 Trajectories
Deep Learning based IK Solver
@IntelSoftware @IntelGraphics 13
Gathering Training Data
1. Produce manually created “reference motion”.
2. Then randomize “start and end targets” based on “reference motion”.
3. Finally for each “start and end targets”, generate motion data using
“numerical approach”.
Random targets
Reference motion Generated motion using numerical approach
Accelerate Large-Scale Inverse Kinematics with the Intel® Distribution of OpenVINO™ Toolkit
@IntelSoftware @IntelGraphics 15
Overview
Training server Infers IK Animation
Deploy
Trained Network
“How to optimize client-side inference?”
• The process of Deep-learning based IK
Client
@IntelSoftware @IntelGraphics
① Small-sized tasks
16
CPU vs GPU [1/3] : Requirements
Inference for IK
• Small-sized neural networks
• Tasks are performed for each
game loop
• Small batch size
• Require quick response
( low–latency )
• GPU is busy rendering.
② Inference on Game-Client
Client
@IntelSoftware @IntelGraphics 17
CPU vs GPU [2/3] : ① Small-sized tasks
Small sized neural networks and
small batch size
Large sized neural networks and
large batch size
@IntelSoftware @IntelGraphics 18
CPU vs GPU [3/3] : ② Inference overhead on Game-Client
Without Inference CPU usage GPU usage Game frame rate Inference latency
No Game - - - -
Overwatch 22 % 97 % 146 fps -
PUBG 38 % 97 % 141 fps -
Assassin Creed : Odyssey 53 % 96 % 69 fps -
Inference on CPU using
Openvino CPU usage GPU usage Game frame rate Inference latency
No Game - - - 50.63ms
Overwatch 68 % ( 309.1 % ) 98 % ( 101.0 % ) 145 fps ( 99.3 % ) 57.97 ms ( 114 % )
PUBG 75 % ( 197.4 % ) 96 % ( 99.0 % ) 137 fps ( 97.2 % ) 59.92 ms ( 118 % )
Assassin Creed : Odyssey 84 % ( 158.5 % ) 96 % ( 100.0 % ) 69 fps ( 100.0 % ) 82.87 ms ( 164 % )
CPU : Intel i7-6700K GPU : Nvidia GTX 1080 ( ) : Rate of change
Inference on GPU using
Openvino
CPU usage GPU usage Game frame rate Inference latency
No Game - - - 43.87ms
Overwatch 38 % ( 172.7 % ) 97 % ( 100.0 % ) 119 fps ( 81.5 % ) 77.51 ms ( 177 % )
PUBG 66 % ( 173.7 % ) 97 % ( 100.0 % ) 113 fps ( 80.1 % ) 76.01 ms ( 173 % )
Assassin Creed : Odyssey 66 % ( 124.5 % ) 96 % ( 100.0 % ) 58 fps ( 84.1 % ) 88.93 ms ( 203 % )
@IntelSoftware @IntelGraphics 19
Choosing Solution for Deep Learning Inference
423.48 ms
34.75 ms
20.34 ms
2.21 ms
0
50
100
150
200
250
300
350
400
450
Naive cpp Numpy Tensorflow DL Inference Engine
Average Latency on CPU
(Lower numbers indicate better performance)
12X
faster
20X
faster
191X
faster
@IntelSoftware @IntelGraphics
Game Client
IK Solver
20
Introduction to Intel OpenVINO
MKL-DNN Plug-in
Inference engine
Model
Optimizer
IRTrain a
model
CPU
Deep Learning Deployment Toolkit
Deploy Pre-Trained Model
Tensorflow, Caffe, MXNet, ONNX
@IntelSoftware @IntelGraphics 21
Optimization : Cubic Hermite Spline [1/2]
! = 0
! =1
$%
$&
'%
'&
$ ! = 2!) − 3!, + 1 $% + !) − 2!, + ! '% + −2!) + 3!, $& + (!) − !,)'&
@IntelSoftware @IntelGraphics 22
Optimization : Cubic Hermite Spline [2/2]
! " = 2"% − 3"( + 1 !+ + "% − 2"( + " ,+ + −2"% + 3"( !- + ("% − "(),-
! " = "% "( " 1
2 −2 1 1
−3 3 −2 −1
0 0 1 0
1 0 0 0
!+
!-
,+
,-
Matrix calculations can be accelerated by Intel Openvino .
in matrix form
@IntelSoftware @IntelGraphics 23
Optimization : Batch inference
Serial computation
Parallel computation
@IntelSoftware @IntelGraphics
IK Solver
24
Optimization for multiple characters [1/2]
Character
Character
Character
Character
Character
Motion timer
updates frame number.
Trajectory
Network
Pose
Network
Next frame motion data
Batch Manager
Request next frame
motion data
Next motion frame
@IntelSoftware @IntelGraphics 25
Frequency of used batch size
(10, 14.5 )
(20, 15.3 )
(30, 9.0 )
(50, 7.7 )
(70, 5.5 )
0
2
4
6
8
10
12
14
16
18 1
3
5
7
10
12
15
20
25
29
40
50
54
70
90
110
130
150
170
190
210
230
250
270
300
370
400
520
540
1000
Frequencyofuse
Used Batch Size
@IntelSoftware @IntelGraphics 26
Finding optimal batch size that achieves maximum
throughput while maintaining limited latency
Set bs to initial batch size
Repeat until we obtain a reliable max latency
Start measuring latency
If number of inference > bs
infer multiple times
Else If number of inference <= bs
infer once and ignore unused space
Finish measuring latency
Update max latency
End
0
2
4
6
8
10
12
14
16
18
5 10 15 20 25 30 35 40 45 50
Batch size
Accelerate Large-Scale Inverse Kinematics with the Intel® Distribution of OpenVINO™ Toolkit
@IntelSoftware @IntelGraphics 28
Quality Comparison
Our ApproachNumerical Approach
@IntelSoftware @IntelGraphics 29
Accelerate Large-Scale Inverse Kinematics with the Intel® Distribution of OpenVINO™ Toolkit
@IntelSoftware @IntelGraphics 31
Deep Learning based Inverse Kinematics
§ Character animation becomes more realistic by solving IK.
§ Conventional approaches for full-body IK are complex or computationally
expensive.
§ Solving full-body IK using Intel Openvino is cost efficient and also flexible.
§ Process of “Climbing IK Solver”
1. Trajectory network
2. Curve fitting
3. Pose network
§ Gathered training data from manually crafted reference motion.
@IntelSoftware @IntelGraphics 32
Optimization using Intel® OpenVINO™ toolkit
§ CPU is suitable for computing inference on Game-Client.
§ Deep Learning Deployment Toolkit is high performance framework for computing
inference on a CPU.
§ Model Optimizer converts and optimizes the trained model to IR. On Game-Client,
Inference Engine loads this IR and it can now run inference on CPU using optimized
hardware plugin (MKL-DNN plugin).
§ Improved curve fitting performance by computing matrix form of cubic Hermit spline
with Inference Engine.
§ Batching inference task improves performance by parallelizing inference task by the
Inference Engine.
§ Finding optimal batch size to meet limited latency
Questions?
33
Yoon Dongwon
E-mail : dongwonyoon@ncsoft.com
@IntelSoftware @IntelGraphics
Reference
https://software.intel.com/en-us/openvino-toolkit
https://software.intel.com/en-us/articles/intel-software-engineers-assist-with-
unreal-engine-419-optimizations
https://intel.github.io/mkl-dnn/understanding_memory_formats.html
https://software.intel.com/en-us/articles/OpenVINO-Inference-Engine-
Optimization-Guide
Accelerate Large-Scale Inverse Kinematics with the Intel® Distribution of OpenVINO™ Toolkit

More Related Content

What's hot (20)

PPTX
World of Tanks* 1.0+: Enriching Gamers Experience with Multicore Optimized Ph...
Intel® Software
 
PDF
Bring Intelligent Motion Using Reinforcement Learning Engines | SIGGRAPH 2019...
Intel® Software
 
PPTX
Scale CPU Experiences: Maximize Unity* Performance Using the Entity Component...
Intel® Software
 
PDF
Ray Tracing with Intel® Embree and Intel® OSPRay: Use Cases and Updates | SIG...
Intel® Software
 
PDF
Enhance and Accelerate Your AI and Machine Learning Solution | SIGGRAPH 2019 ...
Intel® Software
 
PDF
Use Variable Rate Shading (VRS) to Improve the User Experience in Real-Time G...
Intel® Software
 
PDF
Scalability for All: Unreal Engine* 4 with Intel
Intel® Software
 
PDF
Advanced Single Instruction Multiple Data (SIMD) Programming with Intel® Impl...
Intel® Software
 
PPTX
Masked Occlusion Culling
Intel® Software
 
PPTX
Getting Space Pirate Trainer* to Perform on Intel® Graphics
Intel® Software
 
PDF
Build a Deep Learning Video Analytics Framework | SIGGRAPH 2019 Technical Ses...
Intel® Software
 
PPTX
Parallelizing Conqueror's Blade
Intel® Software
 
PDF
Open Source Interactive CPU Preview Rendering with Pixar's Universal Scene De...
Intel® Software
 
PPTX
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...
Intel® Software
 
PDF
Ultra HD Video Scaling: Low-Power HW FF vs. CNN-based Super-Resolution
Intel® Software
 
PPTX
Optimizing Total War*: WARHAMMER II
Intel® Software
 
PDF
AIDC NY: BODO AI Presentation - 09.19.2019
Intel® Software
 
PPTX
Embree Ray Tracing Kernels | Overview and New Features | SIGGRAPH 2018 Tech S...
Intel® Software
 
PPTX
Unity Optimization Tips, Tricks and Tools
Intel® Software
 
PPTX
Dynamic Resolution Techniques for Intel® Processor Graphics | SIGGRAPH 2018 T...
Intel® Software
 
World of Tanks* 1.0+: Enriching Gamers Experience with Multicore Optimized Ph...
Intel® Software
 
Bring Intelligent Motion Using Reinforcement Learning Engines | SIGGRAPH 2019...
Intel® Software
 
Scale CPU Experiences: Maximize Unity* Performance Using the Entity Component...
Intel® Software
 
Ray Tracing with Intel® Embree and Intel® OSPRay: Use Cases and Updates | SIG...
Intel® Software
 
Enhance and Accelerate Your AI and Machine Learning Solution | SIGGRAPH 2019 ...
Intel® Software
 
Use Variable Rate Shading (VRS) to Improve the User Experience in Real-Time G...
Intel® Software
 
Scalability for All: Unreal Engine* 4 with Intel
Intel® Software
 
Advanced Single Instruction Multiple Data (SIMD) Programming with Intel® Impl...
Intel® Software
 
Masked Occlusion Culling
Intel® Software
 
Getting Space Pirate Trainer* to Perform on Intel® Graphics
Intel® Software
 
Build a Deep Learning Video Analytics Framework | SIGGRAPH 2019 Technical Ses...
Intel® Software
 
Parallelizing Conqueror's Blade
Intel® Software
 
Open Source Interactive CPU Preview Rendering with Pixar's Universal Scene De...
Intel® Software
 
Tuning For Deep Learning Inference with Intel® Processor Graphics | SIGGRAPH ...
Intel® Software
 
Ultra HD Video Scaling: Low-Power HW FF vs. CNN-based Super-Resolution
Intel® Software
 
Optimizing Total War*: WARHAMMER II
Intel® Software
 
AIDC NY: BODO AI Presentation - 09.19.2019
Intel® Software
 
Embree Ray Tracing Kernels | Overview and New Features | SIGGRAPH 2018 Tech S...
Intel® Software
 
Unity Optimization Tips, Tricks and Tools
Intel® Software
 
Dynamic Resolution Techniques for Intel® Processor Graphics | SIGGRAPH 2018 T...
Intel® Software
 

Similar to Accelerate Large-Scale Inverse Kinematics with the Intel® Distribution of OpenVINO™ Toolkit (20)

PDF
Accelerate Your AI Today
DESMOND YUEN
 
PDF
“Optimization Techniques with Intel’s OpenVINO to Enhance Performance on Your...
Edge AI and Vision Alliance
 
PDF
Software AI Accelerators: The Next Frontier | Software for AI Optimization Su...
Intel® Software
 
PPTX
How to Get the Best Deep Learning performance with OpenVINO Toolkit
Yury Gorbachev
 
PDF
Faster deep learning solutions from training to inference - Amitai Armon & Ni...
Codemotion Tel Aviv
 
PDF
"How to Get the Best Deep Learning Performance with the OpenVINO Toolkit," a ...
Edge AI and Vision Alliance
 
PDF
Accelerating AI from the Cloud to the Edge
Intel® Software
 
PDF
Healthcare IoT and Analytics to treat Parkinsons
rcnossen
 
PDF
Faster deep learning solutions from training to inference - Michele Tameni - ...
Codemotion
 
PDF
“Acceleration of Deep Learning Using OpenVINO: 3D Seismic Case Study,” a Pres...
Edge AI and Vision Alliance
 
PPTX
FPGA Inference - DellEMC SURFsara
Intel IT Center
 
PPTX
Enabling Cross-platform Deep Learning Applications with Intel OpenVINO™
Yury Gorbachev
 
PDF
AIDC Summit LA- Hands-on Training
Intel® Software
 
PDF
“Intel Video AI Box—Converging AI, Media and Computing in a Compact and Open ...
Edge AI and Vision Alliance
 
PDF
Intermediate Intel® Distribution of OpenVINO™ toolkit for Computer Vision Ap...
kkaralek
 
PDF
Presentation Thesis - Convolutional net on the Xeon Phi using SIMD - Gaurav R...
Gaurav Raina
 
PDF
Workstations powered by Intel can play a vital role in CPU-intensive AI devel...
Principled Technologies
 
PDF
Scaling Deep Learning
Intel® Software
 
PDF
AI for good: Scaling AI in science, healthcare, and more.
Intel® Software
 
PPT
Optimizing Direct X On Multi Core Architectures
psteinb
 
Accelerate Your AI Today
DESMOND YUEN
 
“Optimization Techniques with Intel’s OpenVINO to Enhance Performance on Your...
Edge AI and Vision Alliance
 
Software AI Accelerators: The Next Frontier | Software for AI Optimization Su...
Intel® Software
 
How to Get the Best Deep Learning performance with OpenVINO Toolkit
Yury Gorbachev
 
Faster deep learning solutions from training to inference - Amitai Armon & Ni...
Codemotion Tel Aviv
 
"How to Get the Best Deep Learning Performance with the OpenVINO Toolkit," a ...
Edge AI and Vision Alliance
 
Accelerating AI from the Cloud to the Edge
Intel® Software
 
Healthcare IoT and Analytics to treat Parkinsons
rcnossen
 
Faster deep learning solutions from training to inference - Michele Tameni - ...
Codemotion
 
“Acceleration of Deep Learning Using OpenVINO: 3D Seismic Case Study,” a Pres...
Edge AI and Vision Alliance
 
FPGA Inference - DellEMC SURFsara
Intel IT Center
 
Enabling Cross-platform Deep Learning Applications with Intel OpenVINO™
Yury Gorbachev
 
AIDC Summit LA- Hands-on Training
Intel® Software
 
“Intel Video AI Box—Converging AI, Media and Computing in a Compact and Open ...
Edge AI and Vision Alliance
 
Intermediate Intel® Distribution of OpenVINO™ toolkit for Computer Vision Ap...
kkaralek
 
Presentation Thesis - Convolutional net on the Xeon Phi using SIMD - Gaurav R...
Gaurav Raina
 
Workstations powered by Intel can play a vital role in CPU-intensive AI devel...
Principled Technologies
 
Scaling Deep Learning
Intel® Software
 
AI for good: Scaling AI in science, healthcare, and more.
Intel® Software
 
Optimizing Direct X On Multi Core Architectures
psteinb
 
Ad

More from Intel® Software (19)

PPTX
AI for All: Biology is eating the world & AI is eating Biology
Intel® Software
 
PPTX
Python Data Science and Machine Learning at Scale with Intel and Anaconda
Intel® Software
 
PDF
Streamline End-to-End AI Pipelines with Intel, Databricks, and OmniSci
Intel® Software
 
PPTX
Advanced Techniques to Accelerate Model Tuning | Software for AI Optimization...
Intel® Software
 
PPTX
Reducing Deep Learning Integration Costs and Maximizing Compute Efficiency| S...
Intel® Software
 
PPTX
AWS & Intel Webinar Series - Accelerating AI Research
Intel® Software
 
PPTX
Intel Developer Program
Intel® Software
 
PDF
Intel AIDC Houston Summit - Overview Slides
Intel® Software
 
PDF
AIDC NY: Applications of Intel AI by QuEST Global - 09.19.2019
Intel® Software
 
PDF
AIDC India - AI on IA
Intel® Software
 
PDF
AIDC India - Intel Movidius / Open Vino Slides
Intel® Software
 
PDF
AIDC India - AI Vision Slides
Intel® Software
 
PDF
ANYFACE*: Create Film Industry-Quality Facial Rendering & Animation Using Mai...
Intel® Software
 
PDF
Bring the Future of Entertainment to Your Living Room: MPEG-I Immersive Video...
Intel® Software
 
PDF
Intel® AI: Parameter Efficient Training
Intel® Software
 
PDF
Intel® AI: Non-Parametric Priors for Generative Adversarial Networks
Intel® Software
 
PDF
Persistent Memory Programming with Pmemkv
Intel® Software
 
PDF
Big Data Uses with Distributed Asynchronous Object Storage
Intel® Software
 
PDF
Debugging Tools & Techniques for Persistent Memory Programming
Intel® Software
 
AI for All: Biology is eating the world & AI is eating Biology
Intel® Software
 
Python Data Science and Machine Learning at Scale with Intel and Anaconda
Intel® Software
 
Streamline End-to-End AI Pipelines with Intel, Databricks, and OmniSci
Intel® Software
 
Advanced Techniques to Accelerate Model Tuning | Software for AI Optimization...
Intel® Software
 
Reducing Deep Learning Integration Costs and Maximizing Compute Efficiency| S...
Intel® Software
 
AWS & Intel Webinar Series - Accelerating AI Research
Intel® Software
 
Intel Developer Program
Intel® Software
 
Intel AIDC Houston Summit - Overview Slides
Intel® Software
 
AIDC NY: Applications of Intel AI by QuEST Global - 09.19.2019
Intel® Software
 
AIDC India - AI on IA
Intel® Software
 
AIDC India - Intel Movidius / Open Vino Slides
Intel® Software
 
AIDC India - AI Vision Slides
Intel® Software
 
ANYFACE*: Create Film Industry-Quality Facial Rendering & Animation Using Mai...
Intel® Software
 
Bring the Future of Entertainment to Your Living Room: MPEG-I Immersive Video...
Intel® Software
 
Intel® AI: Parameter Efficient Training
Intel® Software
 
Intel® AI: Non-Parametric Priors for Generative Adversarial Networks
Intel® Software
 
Persistent Memory Programming with Pmemkv
Intel® Software
 
Big Data Uses with Distributed Asynchronous Object Storage
Intel® Software
 
Debugging Tools & Techniques for Persistent Memory Programming
Intel® Software
 
Ad

Recently uploaded (20)

PPTX
Practical Applications of AI in Local Government
OnBoard
 
PDF
My Journey from CAD to BIM: A True Underdog Story
Safe Software
 
PPTX
Mastering Authorization: Integrating Authentication and Authorization Data in...
Hitachi, Ltd. OSS Solution Center.
 
PPTX
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
PDF
Enhancing Environmental Monitoring with Real-Time Data Integration: Leveragin...
Safe Software
 
PPTX
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Poster...
Michele Kryston
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
Proactive Server and System Monitoring with FME: Using HTTP and System Caller...
Safe Software
 
PDF
Pipeline Industry IoT - Real Time Data Monitoring
Safe Software
 
PPTX
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Pitch ...
Michele Kryston
 
PDF
🚀 Let’s Build Our First Slack Workflow! 🔧.pdf
SanjeetMishra29
 
PPTX
2025 HackRedCon Cyber Career Paths.pptx Scott Stanton
Scott Stanton
 
PDF
DoS Attack vs DDoS Attack_ The Silent Wars of the Internet.pdf
CyberPro Magazine
 
PDF
ICONIQ State of AI Report 2025 - The Builder's Playbook
Razin Mustafiz
 
PDF
Understanding AI Optimization AIO, LLMO, and GEO
CoDigital
 
PDF
Bitkom eIDAS Summit | European Business Wallet: Use Cases, Macroeconomics, an...
Carsten Stoecker
 
PDF
Kubernetes - Architecture & Components.pdf
geethak285
 
PDF
Optimizing the trajectory of a wheel loader working in short loading cycles
Reno Filla
 
PDF
ArcGIS Utility Network Migration - The Hunter Water Story
Safe Software
 
PDF
“A Re-imagination of Embedded Vision System Design,” a Presentation from Imag...
Edge AI and Vision Alliance
 
Practical Applications of AI in Local Government
OnBoard
 
My Journey from CAD to BIM: A True Underdog Story
Safe Software
 
Mastering Authorization: Integrating Authentication and Authorization Data in...
Hitachi, Ltd. OSS Solution Center.
 
Enabling the Digital Artisan – keynote at ICOCI 2025
Alan Dix
 
Enhancing Environmental Monitoring with Real-Time Data Integration: Leveragin...
Safe Software
 
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Poster...
Michele Kryston
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Proactive Server and System Monitoring with FME: Using HTTP and System Caller...
Safe Software
 
Pipeline Industry IoT - Real Time Data Monitoring
Safe Software
 
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Pitch ...
Michele Kryston
 
🚀 Let’s Build Our First Slack Workflow! 🔧.pdf
SanjeetMishra29
 
2025 HackRedCon Cyber Career Paths.pptx Scott Stanton
Scott Stanton
 
DoS Attack vs DDoS Attack_ The Silent Wars of the Internet.pdf
CyberPro Magazine
 
ICONIQ State of AI Report 2025 - The Builder's Playbook
Razin Mustafiz
 
Understanding AI Optimization AIO, LLMO, and GEO
CoDigital
 
Bitkom eIDAS Summit | European Business Wallet: Use Cases, Macroeconomics, an...
Carsten Stoecker
 
Kubernetes - Architecture & Components.pdf
geethak285
 
Optimizing the trajectory of a wheel loader working in short loading cycles
Reno Filla
 
ArcGIS Utility Network Migration - The Hunter Water Story
Safe Software
 
“A Re-imagination of Embedded Vision System Design,” a Presentation from Imag...
Edge AI and Vision Alliance
 

Accelerate Large-Scale Inverse Kinematics with the Intel® Distribution of OpenVINO™ Toolkit