SlideShare a Scribd company logo
DEVELOP HIGH BANDWIDTH-LOW LATENCY
ELECTRONIC SYSTEMS FOR AI/ML APPLICATION
Deepak Shankar
Founder
Mirabilis Design Inc.
Email: dshankar@mirabilisdesign.com
Logistics
2
All attendees are set on mute.
To ask a question, click on Arrow to the left of Chat and
type the question. Folks are standing by to answer your
questions. There will also be a time at the end for Q&A
DEVELOP HIGH BANDWIDTH-LOW LATENCY
ELECTRONIC SYSTEMS FOR AI/ML APPLICATION
Deepak Shankar
Founder
Mirabilis Design Inc.
Email: dshankar@mirabilisdesign.com
Agenda
Architecture Exploration of Electronic Systems
Introduction to System Modeling
VisualSim Libraries and Architecture Exploration requirements
VisualSim Demonstration and Analysis
ā—¦ Software
ā—¦ Semiconductor
ā—¦ Power-Performance trade-off
Company profile
Exploration of Electronic
Systems
INTRODUCTION AND BENEFITS
Modeling Electronic Systems
Current approach
ā—¦ Use of analytical models such as Spreadsheet and Worst-Case Execution Time
ā—¦ Move from the high-specification to building prototypes
ā—¦ WCET and Spreadsheets are highly inaccurate
ā—¦ Prototypes take too long to develop and also have limited exploration capacity
Proposed Approach
ā—¦ Add a systems engineering layer after the analytical analysis
ā—¦ Create a virtual prototype of the full system- Hardware, software, RTOS and network connection
ā—¦ Conduct trade-off early in the design cycle with detailed knowledge of the system operation
Tradition Approach-
Spreadsheet-based Traffic and Power Analysis
Proposed Approach-
Full Braking System
Input Spreadsheet and Trace file
Generated Report and Plots
Reuse existing data to kickstart model development
Analysis and Experiment
Understand the connectivity between all the individual components and sub-systems
Evaluate timing, throughput, power, heat and functional correctness using a single model
Measure the latency between network interface and processed output
Identify opportunity for hardware acceleration
Partition applications across multi-core, multi-processor and multi-chassis
Exploration of emerging technology
ā—¦ New processor family, new backplane technology and better integrated memory
Why Deploy the New Approach
Eliminate all surprises before integration
Gain visibility into system operation and requirements early in the
design process
Complete visibility into constraint for each packet/request,
protocol/control, and software/hardware
Determine requirements for hardware and network components
Identify bottlenecks, limitations and reuse ability
Introduction to System Modeling
DEMO MODELS
System Architecture Modeling Methods
Application and Software behavior
Network or backplane Modeling
Hardware architecture
Network Topology
Network Model with
Scheduler and Flow Control
Software Code for Scheduler Algorithm
/* Scan Queues based on receiving input, user algorithm here */
Select = 1
WAIT (1.0E-08)
while (true) {
while (Select <= Ingress_Size) {
if (getBlockStatus(Smart_Resource_Name,"length",Select) > 0 && getBlockStatus("Egress","length",Select) < Threshold) {
token = getBlockStatus(Smart_Resource_Name,"copy",Select)
WAIT ((token.Size) / Scan_Rate)
SEND (pop,Select)
Index = Select - 1
InThru(Index) = InThru(Index) + token.Size
}
Select = Select + 1
}
Select = 1
WAIT (1.0E-09)
}
Software Profiling of the Scheduler Code
Address Number Mean_Time Script_RegEx_Statement
0 1 116.10900000 us Select = 1
1 1 69.97000000 us WAIT (1.0E-08)
2 404 206.66089 ns if (true) false, expression plus 13, else plus 1.
3 6462 258.44181 ns if (Select <= Ingress_Size) false, expression plus 9, else plus 1.
4 6059 8.07862948 us if (getBlockStatus(Smart_Resource_Name,"length",Select) > 0 && getBlockStatus("Egress","length",Select) < Threshold) false, expression plus 6,
else plus 1.
5 1168 6.47288699 us token = getBlockStatus(Smart_Resource_Name,"copy",Select)
6 1168 20.36501199 us WAIT ((token.Size) / Scan_Rate)
7 1167 1.59209769 us SEND (pop,Select)
8 1167 891.31791 ns Index = Select - 1
9 1167 4.95694859 us InThru(Index) = InThru(Index) + token.Size
10 6058 318.42786 ns Select = Select + 1
11 6058 85.02542 ns GTO (-8)
12 403 289.43921 ns Select = 1
13 403 44.19382630 us WAIT (1.0E-09)
14 403 295.18114 ns GTO (-12)
15 0 0.0000000 GTO (EndThread)
Mapping Scheduler code to Pseudo
Instructions
Instruction Sequence corresponding to the code execution
{"FXA_b", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH",
"LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT",
"ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH",
"LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "IMM", "WAIT_s"}
Software code address line execution order
0, 1, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 6
List of Psuedo Instructions
FXA_b = Function w/ Args, boolean
FXA_r = Function w/ Args, struct (record)
FXA_a = Function w/ Args, array
FXA_m = Function w/ Args, matrix
WAIT_s = WAIT string, event
WAIT_d = WAIT double, delay
DEC = --
List of Psuedo Instructions- Cont.
GT = Greater than
LT = Less than
BCH = Branch
ADD = Add
SUB = Subtract
MUL = Multiply
INC = ++
List of Psuedo Instructions- Cont.
SHIFT = >> or <<
SEND = Send to Label, Block or Port
LTE = Less than or equal
GT = Greater than
LT = Less than
MOD = Modulo
POW = Power
Mapping of Two Applications
to an Single-Board computer
Applications are a set of Complex tasks
ā€¢ Variable rate input stream
ā€¢ Tasks and transfer between tasks
Contention for resources by tasks
ā€¢ Resource are the hardware blocks
ā€¢ Assign tasks to Resources
ā€¢ Transfer flows across Buses and bridges
Trade-off between process and transfer
ā€¢ Efficient- More processing and less transfer
ā€¢ Minimize power consumption
I/O
DSP
CPU1
CPU2
task1 task2 task3 task4
Scheduling software tasks using limited resources
VisualSim Block Diagram
Library
Folder Parameters
Reports &
Statistics
Single Board Computer Architecture
Application 1
Application 2
Workload
Mapping
Power Data
Run Simulations using two Parameter
Variations of the Bus Speed
System with faster Bus is slower in places
Unpredictable System Response
VisualSim Libraries and
Architecture Challenges
DEMO MODELS
Systems-Level Block Library
Largest library of traffic, resources, hardware, software and analysis
Traffic
ā€¢ Distribution
ā€¢ Sequence
ā€¢ Trace file
ā€¢ Instruction profile
Reports
ā€¢ Timing and Buffer
ā€¢ Throughput/Util
ā€¢ Ave/peak power
ā€¢ Statistics
Power
ā€¢ State power table
ā€¢ Power
management
ā€¢ Energy harvesters
ā€¢ Battery
ā€¢ RegEx operators
SoC Buses
ā€¢ AMBA and Corelink
ā€¢ AHB, AB, AXI, ACE,
CHI, CMN600
ā€¢ Network-on-Chip
ā€¢ TileLink
System Bus
ā€¢ PCI/PCI-X/PCIe
ā€¢ Rapid IO
ā€¢ AFDX
ā€¢ OpenVPX
ā€¢ VME
ā€¢ SPI 3.0
ā€¢ 1553B
Processors
ā€¢ GPU, DSP, mP and mC
ā€¢ RISC-V
ā€¢ Nvidia- Drive-PX
ā€¢ PowerPC
ā€¢ X86- Intel and AMD
ā€¢ DSP- TI and ADI
ā€¢ MIPS, Tensilica, SH
ARM
ā€¢ M-, R-, 7TDMI
ā€¢ A8, A53, A55, A72,
A76, A77
Custom Creator
ā€¢ Script language
ā€¢ 600 RegEx fn
ā€¢ Task graph
ā€¢ Tracer
ā€¢ C/C++/Java
ā€¢ Python
Support
ā€¢ Listener and
Trace
ā€¢ Debuggers
ā€¢ Assertions
Stochastic
ā€¢ FIFO/LIFO Queue
ā€¢ Time Queue
ā€¢ Quantity Queue
ā€¢ System Resource
ā€¢ Schedulers
ā€¢ Cyber Security
RTOS
ā€¢ Template
ā€¢ ARINC 653
ā€¢ AUTOSAR
Memory
ā€¢ Memory Controller
ā€¢ DDR DRAM 2,3,4, 5
ā€¢ LPDDR 2, 3, 4
ā€¢ HBM, HMC
ā€¢ SDR, QDR, RDRAM
Storage
ā€¢ Flash & NVMe
ā€¢ Storage Array
ā€¢ Disk and SATA
ā€¢ Fibre Channel
ā€¢ FireWire
Networking
ā€¢ Ethernet & GiE
ā€¢ Audio-Video Bridging
ā€¢ 802.11 and Bluetooth
ā€¢ 5G
ā€¢ Spacewire
ā€¢ CAN-FD
ā€¢ TTEthernet
ā€¢ FlexRay
ā€¢ TSN & IEEE802.1Q
FPGA
ā€¢ Xilinx- Zynq, Virtex, Kintex
ā€¢ Intel-Stratix, Arria
ā€¢ Microsemi- Smartfusion
ā€¢ Programmable logic
template
ā€¢ Interface traffic generator
Software
ā€¢ GEM5
ā€¢ Software code integration
ā€¢ Instruction trace
ā€¢ Statistical software model
ā€¢ Task graph
Interfaces
ā€¢ Virtual Channel
ā€¢ DMA
ā€¢ Crossbar
ā€¢ Serial Switch
ā€¢ Bridge
RTL-like
ā€¢ Clock, Wire-Delay
ā€¢ Registers, Latches
ā€¢ Flip-flop
ā€¢ ALU and FSM
ā€¢ Mux, DeMux
ā€¢ Lookup table
Application Template Library
VisualSim Modeling Library provides coverage over all applications using electronics
Electronic System Challenges
Systems Engineering
ā—¦ Top-level view of the entire system without worrying about the exact implementation details
ā—¦ Capture the data flow, application task sequence and mapping to System resources
ā—¦ Generate statistics for response time, throughput and power consumed
Hardware-Software selection
ā—¦ Select the appropriate hardware blocks including processor, memory and bus/network
ā—¦ Determine the number of independent boards and chassis for symmetrical processing
ā—¦ Experiment with different mapping strategies and select accelerators
ā—¦ Reuse the systems engineering data flow and application task sequence
System level
ā—¦ Develop the specification for integration and test cases
Mathematical function
allocation and partitioning
DEMO MODELS
Modeling Complex AI/ML processing
in an Image-based Application
Check Correctness of AI/ML Math
Network Planning
DEMO MODELS
Host to Data center using Ethernet AVB
6/4/2020
Analysis
Latency from gateway to gateway, client to server, master to slave or node to node
Effects of communication stack activity
Scheduling of different traffic classes for policing and shaping
Trade-off switch vs gateway
Effect of global vs. local multicast
Impact of clock jitters
6/4/2020
Interface Modeling: Network on Chip
Block Diagram
VisualSim Model
VisualSim Software Architecture
and Mapping to Hardware
DEMO MODELS
Application Task Graph
(Implementation can be in HW or SW)
VisualSim Model of the Task Graph
Block Diagram of a Software System
Radar
Analyze system behavior with deterministic and non-deterministic workloads
Behavior Model of Radar Software
Mapping Radar Software Tasks to two
Hardware Architectures
X86 based ECU
DSP-based ECU
Comparing Mapping on x86 vs DSP
Key parameters are the latency, processing efficiency and the throughput
Failure Impact on RTOS and Scheduling
Without Faults
With Faults
Rapidly increasing time between Ready-to-Run and Run
VisualSim Semiconductor
DEMO MODELS
TPU v1
Tensor v3 in the Cloud
Designing for an SoC Block Diagram
Target
Power < 1.0W
Number of frames in 20 ms > 13K
Three Explorations
1. All tasks deployed in Software
2. Migrate few tasks to Hardware accelerators
3. Add power management to reduce power
ARM
Cortex A77
ARM AMBA AXI
ARM AMBA AXI Corelink CMN600
AMBA
AMBA
AMBA
Controller
VisualSim can handle any Processor architecture
Translate SoC Block Diagram into
VisualSim Model
Processor Bus
Topology
Memory
Controller
Hardware
Accelerators
Power
management
Use Cases
SoC design methodology provides lots of flexibility in level of detail and type of analysis
Comparing Power and Performance
across multiple Parameter Values
SW
SWSW
SW
HW HW
HW HW
Post processor and Batch-mode simulation allow for easy comparison across simulations
Power and Thermal Analysis in
an Application
DEMO MODELS
VisualSim Model of a Braking System
Brake ECU
Power, Heat, Functional and Timing
ABOUT MIRABILIS DESIGN
Deepak Shankar
Founder
Mirabilis Design Inc.
Email: dshankar@mirabilisdesign.com
VisualSim Aerospace
Simulator of the Year
Hardware Modeling
40th Customer
2003
Company
Incorporated
2005
Modeling Services
1st Customer
2008
Stochastic Modeling
Innovation Award
2010
Integration API
10th customer
2011
Network modeling
University program
20132015
2018
50th Customer
Best ESL at DAC
2nd at Arm TechCon
2019
VisualSim Automotive
250 products built
Started Europe operations
2020
VisualSim Functional
Analysis ISO/DO/IEC
Started Asia Operations
Continuous Innovation, Awards and World-Wide Presence
Company Milestone
VisualSim software with libraries
Training:
Training and modeling support- user builds
the components and models
Services:
Develop custom library- User assembles
the models
Develop custom libraries and models -
User conducts parameter study
Architecture evaluation- Will develop
model, analyse and provide feedback
Model-based Systems Engineering simplified and made easy-to-adopt
Mirabilis Design Software and Solutions
Engineering Benefits
Average increase in revenue per project = $??M
Using Alternate Design Methodology
Project Schedule
Model Creation (6)
Implementation (18)
Analysis (1.5)
Communication and Refinement (6)
Implementation (15)
Using VisualSim Model-Based Design Methodology
Note: All times in months
Communication and Refinement (4)
Analysis (2.5)
Model Creation (1) Average gain for 24-month
project is 25%-30%
Ensuring Highest
Quality Product
Accelerate Model
development
DEVELOP HIGH BANDWIDTH-LOW LATENCY
ELECTRONIC SYSTEMS FOR AI/ML APPLICATION
Deepak Shankar
Founder
Mirabilis Design Inc.
Email: dshankar@mirabilisdesign.com

More Related Content

What's hot

Central Process Utility Plant controls upgrade required 100% uptime
Central Process Utility Plant controls upgrade required 100% uptimeCentral Process Utility Plant controls upgrade required 100% uptime
Central Process Utility Plant controls upgrade required 100% uptime
Brian Thomas
Ā 
Incorporating Wireless Measurements with Wired Data Acquisition Systems
Incorporating Wireless Measurements with Wired Data Acquisition SystemsIncorporating Wireless Measurements with Wired Data Acquisition Systems
Incorporating Wireless Measurements with Wired Data Acquisition Systems
cmstiernberg
Ā 
GE IOT Predix Time Series & Data Ingestion Service using Apache Apex (Hadoop)
GE IOT Predix Time Series & Data Ingestion Service using Apache Apex (Hadoop)GE IOT Predix Time Series & Data Ingestion Service using Apache Apex (Hadoop)
GE IOT Predix Time Series & Data Ingestion Service using Apache Apex (Hadoop)
Apache Apex
Ā 
Introduction to Machine Learning - From DBA's to Data Scientists - OGBEMEA
Introduction to Machine Learning - From DBA's to Data Scientists - OGBEMEAIntroduction to Machine Learning - From DBA's to Data Scientists - OGBEMEA
Introduction to Machine Learning - From DBA's to Data Scientists - OGBEMEA
Sandesh Rao
Ā 
Introduction to Apache Apex and writing a big data streaming application
Introduction to Apache Apex and writing a big data streaming application  Introduction to Apache Apex and writing a big data streaming application
Introduction to Apache Apex and writing a big data streaming application
Apache Apex
Ā 
Harness proD
Harness proDHarness proD
Harness proD
Eplan Competence Centre
Ā 
Scalable analytics for iaas cloud availability
Scalable analytics for iaas cloud availabilityScalable analytics for iaas cloud availability
Scalable analytics for iaas cloud availability
Papitha Velumani
Ā 
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
Databricks
Ā 
Routing & Switching report
Routing & Switching reportRouting & Switching report
Routing & Switching report
Express News
Ā 
Chandan Kumar_3+_Years _EXP
Chandan Kumar_3+_Years _EXPChandan Kumar_3+_Years _EXP
Chandan Kumar_3+_Years _EXP
Chandan kumar
Ā 
IMCSummit 2015 - Day 1 Developer Track - In-memory Computing for Iterative CP...
IMCSummit 2015 - Day 1 Developer Track - In-memory Computing for Iterative CP...IMCSummit 2015 - Day 1 Developer Track - In-memory Computing for Iterative CP...
IMCSummit 2015 - Day 1 Developer Track - In-memory Computing for Iterative CP...
In-Memory Computing Summit
Ā 
Big Data Berlin v8.0 Stream Processing with Apache Apex
Big Data Berlin v8.0 Stream Processing with Apache Apex Big Data Berlin v8.0 Stream Processing with Apache Apex
Big Data Berlin v8.0 Stream Processing with Apache Apex
Apache Apex
Ā 

What's hot (12)

Central Process Utility Plant controls upgrade required 100% uptime
Central Process Utility Plant controls upgrade required 100% uptimeCentral Process Utility Plant controls upgrade required 100% uptime
Central Process Utility Plant controls upgrade required 100% uptime
Ā 
Incorporating Wireless Measurements with Wired Data Acquisition Systems
Incorporating Wireless Measurements with Wired Data Acquisition SystemsIncorporating Wireless Measurements with Wired Data Acquisition Systems
Incorporating Wireless Measurements with Wired Data Acquisition Systems
Ā 
GE IOT Predix Time Series & Data Ingestion Service using Apache Apex (Hadoop)
GE IOT Predix Time Series & Data Ingestion Service using Apache Apex (Hadoop)GE IOT Predix Time Series & Data Ingestion Service using Apache Apex (Hadoop)
GE IOT Predix Time Series & Data Ingestion Service using Apache Apex (Hadoop)
Ā 
Introduction to Machine Learning - From DBA's to Data Scientists - OGBEMEA
Introduction to Machine Learning - From DBA's to Data Scientists - OGBEMEAIntroduction to Machine Learning - From DBA's to Data Scientists - OGBEMEA
Introduction to Machine Learning - From DBA's to Data Scientists - OGBEMEA
Ā 
Introduction to Apache Apex and writing a big data streaming application
Introduction to Apache Apex and writing a big data streaming application  Introduction to Apache Apex and writing a big data streaming application
Introduction to Apache Apex and writing a big data streaming application
Ā 
Harness proD
Harness proDHarness proD
Harness proD
Ā 
Scalable analytics for iaas cloud availability
Scalable analytics for iaas cloud availabilityScalable analytics for iaas cloud availability
Scalable analytics for iaas cloud availability
Ā 
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
Ā 
Routing & Switching report
Routing & Switching reportRouting & Switching report
Routing & Switching report
Ā 
Chandan Kumar_3+_Years _EXP
Chandan Kumar_3+_Years _EXPChandan Kumar_3+_Years _EXP
Chandan Kumar_3+_Years _EXP
Ā 
IMCSummit 2015 - Day 1 Developer Track - In-memory Computing for Iterative CP...
IMCSummit 2015 - Day 1 Developer Track - In-memory Computing for Iterative CP...IMCSummit 2015 - Day 1 Developer Track - In-memory Computing for Iterative CP...
IMCSummit 2015 - Day 1 Developer Track - In-memory Computing for Iterative CP...
Ā 
Big Data Berlin v8.0 Stream Processing with Apache Apex
Big Data Berlin v8.0 Stream Processing with Apache Apex Big Data Berlin v8.0 Stream Processing with Apache Apex
Big Data Berlin v8.0 Stream Processing with Apache Apex
Ā 

Similar to Develop High-bandwidth/low latency electronic systems for AI/ML application

Using VisualSim Architect for Semiconductor System Analysis
Using VisualSim Architect for Semiconductor System AnalysisUsing VisualSim Architect for Semiconductor System Analysis
Using VisualSim Architect for Semiconductor System Analysis
Deepak Shankar
Ā 
Webinar: Detecting Deadlocks in Electronic Systems using Time-based Simulation
Webinar: Detecting Deadlocks in Electronic Systems using Time-based SimulationWebinar: Detecting Deadlocks in Electronic Systems using Time-based Simulation
Webinar: Detecting Deadlocks in Electronic Systems using Time-based Simulation
Deepak Shankar
Ā 
Webinar on radar
Webinar on radarWebinar on radar
Webinar on radar
Deepak Shankar
Ā 
Mirabilis_Design AMD Versal System-Level IP Library
Mirabilis_Design AMD Versal System-Level IP LibraryMirabilis_Design AMD Versal System-Level IP Library
Mirabilis_Design AMD Versal System-Level IP Library
Deepak Shankar
Ā 
Exploration of Radars and Software Defined Radios using VisualSim
Exploration of  Radars and Software Defined Radios using VisualSimExploration of  Radars and Software Defined Radios using VisualSim
Exploration of Radars and Software Defined Radios using VisualSim
Deepak Shankar
Ā 
How to create innovative architecture using VisualSim?
How to create innovative architecture using VisualSim?How to create innovative architecture using VisualSim?
How to create innovative architecture using VisualSim?
Deepak Shankar
Ā 
How to create innovative architecture using VisualSim?
How to create innovative architecture using VisualSim?How to create innovative architecture using VisualSim?
How to create innovative architecture using VisualSim?
Deepak Shankar
Ā 
Webinar on RISC-V
Webinar on RISC-VWebinar on RISC-V
Webinar on RISC-V
Deepak Shankar
Ā 
Accelerated development in Automotive E/E Systems using VisualSim Architect
Accelerated development in Automotive E/E Systems using VisualSim ArchitectAccelerated development in Automotive E/E Systems using VisualSim Architect
Accelerated development in Automotive E/E Systems using VisualSim Architect
Deepak Shankar
Ā 
Introduction to architecture exploration
Introduction to architecture explorationIntroduction to architecture exploration
Introduction to architecture exploration
Deepak Shankar
Ā 
Matlab Based High Level Synthesis Engine for Area And Power Efficient Arithme...
Matlab Based High Level Synthesis Engine for Area And Power Efficient Arithme...Matlab Based High Level Synthesis Engine for Area And Power Efficient Arithme...
Matlab Based High Level Synthesis Engine for Area And Power Efficient Arithme...
ijceronline
Ā 
Task allocation on many core-multi processor distributed system
Task allocation on many core-multi processor distributed systemTask allocation on many core-multi processor distributed system
Task allocation on many core-multi processor distributed system
Deepak Shankar
Ā 
Energy efficient AI workload partitioning on multi-core systems
Energy efficient AI workload partitioning on multi-core systemsEnergy efficient AI workload partitioning on multi-core systems
Energy efficient AI workload partitioning on multi-core systems
Deepak Shankar
Ā 
Modeling Abstraction
Modeling AbstractionModeling Abstraction
Modeling Abstraction
Deepak Shankar
Ā 
Introduction to embedded System.pptx
Introduction to embedded System.pptxIntroduction to embedded System.pptx
Introduction to embedded System.pptx
Pratik Gohel
Ā 
Introduction to Architecture Exploration of Semiconductor, Embedded Systems, ...
Introduction to Architecture Exploration of Semiconductor, Embedded Systems, ...Introduction to Architecture Exploration of Semiconductor, Embedded Systems, ...
Introduction to Architecture Exploration of Semiconductor, Embedded Systems, ...
Deepak Shankar
Ā 
Architectural tricks to maximize memory bandwidth
Architectural tricks to maximize memory bandwidthArchitectural tricks to maximize memory bandwidth
Architectural tricks to maximize memory bandwidth
Deepak Shankar
Ā 
Thaker q3 2008
Thaker q3 2008Thaker q3 2008
Thaker q3 2008
Obsidian Software
Ā 
ROLE OF DIGITAL SIMULATION IN CONFIGURING NETWORK PARAMETERS
ROLE OF DIGITAL SIMULATION IN CONFIGURING NETWORK PARAMETERSROLE OF DIGITAL SIMULATION IN CONFIGURING NETWORK PARAMETERS
ROLE OF DIGITAL SIMULATION IN CONFIGURING NETWORK PARAMETERS
Deepak Shankar
Ā 
System on Chip Design and Modelling Dr. David J Greaves
System on Chip Design and Modelling   Dr. David J GreavesSystem on Chip Design and Modelling   Dr. David J Greaves
System on Chip Design and Modelling Dr. David J Greaves
Satya Harish
Ā 

Similar to Develop High-bandwidth/low latency electronic systems for AI/ML application (20)

Using VisualSim Architect for Semiconductor System Analysis
Using VisualSim Architect for Semiconductor System AnalysisUsing VisualSim Architect for Semiconductor System Analysis
Using VisualSim Architect for Semiconductor System Analysis
Ā 
Webinar: Detecting Deadlocks in Electronic Systems using Time-based Simulation
Webinar: Detecting Deadlocks in Electronic Systems using Time-based SimulationWebinar: Detecting Deadlocks in Electronic Systems using Time-based Simulation
Webinar: Detecting Deadlocks in Electronic Systems using Time-based Simulation
Ā 
Webinar on radar
Webinar on radarWebinar on radar
Webinar on radar
Ā 
Mirabilis_Design AMD Versal System-Level IP Library
Mirabilis_Design AMD Versal System-Level IP LibraryMirabilis_Design AMD Versal System-Level IP Library
Mirabilis_Design AMD Versal System-Level IP Library
Ā 
Exploration of Radars and Software Defined Radios using VisualSim
Exploration of  Radars and Software Defined Radios using VisualSimExploration of  Radars and Software Defined Radios using VisualSim
Exploration of Radars and Software Defined Radios using VisualSim
Ā 
How to create innovative architecture using VisualSim?
How to create innovative architecture using VisualSim?How to create innovative architecture using VisualSim?
How to create innovative architecture using VisualSim?
Ā 
How to create innovative architecture using VisualSim?
How to create innovative architecture using VisualSim?How to create innovative architecture using VisualSim?
How to create innovative architecture using VisualSim?
Ā 
Webinar on RISC-V
Webinar on RISC-VWebinar on RISC-V
Webinar on RISC-V
Ā 
Accelerated development in Automotive E/E Systems using VisualSim Architect
Accelerated development in Automotive E/E Systems using VisualSim ArchitectAccelerated development in Automotive E/E Systems using VisualSim Architect
Accelerated development in Automotive E/E Systems using VisualSim Architect
Ā 
Introduction to architecture exploration
Introduction to architecture explorationIntroduction to architecture exploration
Introduction to architecture exploration
Ā 
Matlab Based High Level Synthesis Engine for Area And Power Efficient Arithme...
Matlab Based High Level Synthesis Engine for Area And Power Efficient Arithme...Matlab Based High Level Synthesis Engine for Area And Power Efficient Arithme...
Matlab Based High Level Synthesis Engine for Area And Power Efficient Arithme...
Ā 
Task allocation on many core-multi processor distributed system
Task allocation on many core-multi processor distributed systemTask allocation on many core-multi processor distributed system
Task allocation on many core-multi processor distributed system
Ā 
Energy efficient AI workload partitioning on multi-core systems
Energy efficient AI workload partitioning on multi-core systemsEnergy efficient AI workload partitioning on multi-core systems
Energy efficient AI workload partitioning on multi-core systems
Ā 
Modeling Abstraction
Modeling AbstractionModeling Abstraction
Modeling Abstraction
Ā 
Introduction to embedded System.pptx
Introduction to embedded System.pptxIntroduction to embedded System.pptx
Introduction to embedded System.pptx
Ā 
Introduction to Architecture Exploration of Semiconductor, Embedded Systems, ...
Introduction to Architecture Exploration of Semiconductor, Embedded Systems, ...Introduction to Architecture Exploration of Semiconductor, Embedded Systems, ...
Introduction to Architecture Exploration of Semiconductor, Embedded Systems, ...
Ā 
Architectural tricks to maximize memory bandwidth
Architectural tricks to maximize memory bandwidthArchitectural tricks to maximize memory bandwidth
Architectural tricks to maximize memory bandwidth
Ā 
Thaker q3 2008
Thaker q3 2008Thaker q3 2008
Thaker q3 2008
Ā 
ROLE OF DIGITAL SIMULATION IN CONFIGURING NETWORK PARAMETERS
ROLE OF DIGITAL SIMULATION IN CONFIGURING NETWORK PARAMETERSROLE OF DIGITAL SIMULATION IN CONFIGURING NETWORK PARAMETERS
ROLE OF DIGITAL SIMULATION IN CONFIGURING NETWORK PARAMETERS
Ā 
System on Chip Design and Modelling Dr. David J Greaves
System on Chip Design and Modelling   Dr. David J GreavesSystem on Chip Design and Modelling   Dr. David J Greaves
System on Chip Design and Modelling Dr. David J Greaves
Ā 

More from Deepak Shankar

How to achieve 95%+ Accurate power measurement during architecture exploration?
How to achieve 95%+ Accurate power measurement during architecture exploration? How to achieve 95%+ Accurate power measurement during architecture exploration?
How to achieve 95%+ Accurate power measurement during architecture exploration?
Deepak Shankar
Ā 
Mastering IoT Design: Sense, Process, Connect: Processing: Turning IoT Data i...
Mastering IoT Design: Sense, Process, Connect: Processing: Turning IoT Data i...Mastering IoT Design: Sense, Process, Connect: Processing: Turning IoT Data i...
Mastering IoT Design: Sense, Process, Connect: Processing: Turning IoT Data i...
Deepak Shankar
Ā 
Evaluating UCIe based multi-die SoC to meet timing and power
Evaluating UCIe based multi-die SoC to meet timing and power Evaluating UCIe based multi-die SoC to meet timing and power
Evaluating UCIe based multi-die SoC to meet timing and power
Deepak Shankar
Ā 
Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021
Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021
Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021
Deepak Shankar
Ā 
Capacity Planning and Power Management of Data Centers.
Capacity Planning and Power Management of Data Centers. Capacity Planning and Power Management of Data Centers.
Capacity Planning and Power Management of Data Centers.
Deepak Shankar
Ā 
Automotive network and gateway simulation
Automotive network and gateway simulationAutomotive network and gateway simulation
Automotive network and gateway simulation
Deepak Shankar
Ā 
Using ai for optimal time sensitive networking in avionics
Using ai for optimal time sensitive networking in avionicsUsing ai for optimal time sensitive networking in avionics
Using ai for optimal time sensitive networking in avionics
Deepak Shankar
Ā 
Designing memory controller for ddr5 and hbm2.0
Designing memory controller for ddr5 and hbm2.0Designing memory controller for ddr5 and hbm2.0
Designing memory controller for ddr5 and hbm2.0
Deepak Shankar
Ā 
Webinar on Functional Safety Analysis using Model-based System Analysis
Webinar on Functional Safety Analysis using Model-based System AnalysisWebinar on Functional Safety Analysis using Model-based System Analysis
Webinar on Functional Safety Analysis using Model-based System Analysis
Deepak Shankar
Ā 
Is accurate system-level power measurement challenging? Check this out!
Is accurate system-level power measurement challenging? Check this out!Is accurate system-level power measurement challenging? Check this out!
Is accurate system-level power measurement challenging? Check this out!
Deepak Shankar
Ā 
Mirabilis design Inc - Brochure
Mirabilis design Inc - BrochureMirabilis design Inc - Brochure
Mirabilis design Inc - Brochure
Deepak Shankar
Ā 

More from Deepak Shankar (11)

How to achieve 95%+ Accurate power measurement during architecture exploration?
How to achieve 95%+ Accurate power measurement during architecture exploration? How to achieve 95%+ Accurate power measurement during architecture exploration?
How to achieve 95%+ Accurate power measurement during architecture exploration?
Ā 
Mastering IoT Design: Sense, Process, Connect: Processing: Turning IoT Data i...
Mastering IoT Design: Sense, Process, Connect: Processing: Turning IoT Data i...Mastering IoT Design: Sense, Process, Connect: Processing: Turning IoT Data i...
Mastering IoT Design: Sense, Process, Connect: Processing: Turning IoT Data i...
Ā 
Evaluating UCIe based multi-die SoC to meet timing and power
Evaluating UCIe based multi-die SoC to meet timing and power Evaluating UCIe based multi-die SoC to meet timing and power
Evaluating UCIe based multi-die SoC to meet timing and power
Ā 
Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021
Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021
Compare Performance-power of Arm Cortex vs RISC-V for AI applications_oct_2021
Ā 
Capacity Planning and Power Management of Data Centers.
Capacity Planning and Power Management of Data Centers. Capacity Planning and Power Management of Data Centers.
Capacity Planning and Power Management of Data Centers.
Ā 
Automotive network and gateway simulation
Automotive network and gateway simulationAutomotive network and gateway simulation
Automotive network and gateway simulation
Ā 
Using ai for optimal time sensitive networking in avionics
Using ai for optimal time sensitive networking in avionicsUsing ai for optimal time sensitive networking in avionics
Using ai for optimal time sensitive networking in avionics
Ā 
Designing memory controller for ddr5 and hbm2.0
Designing memory controller for ddr5 and hbm2.0Designing memory controller for ddr5 and hbm2.0
Designing memory controller for ddr5 and hbm2.0
Ā 
Webinar on Functional Safety Analysis using Model-based System Analysis
Webinar on Functional Safety Analysis using Model-based System AnalysisWebinar on Functional Safety Analysis using Model-based System Analysis
Webinar on Functional Safety Analysis using Model-based System Analysis
Ā 
Is accurate system-level power measurement challenging? Check this out!
Is accurate system-level power measurement challenging? Check this out!Is accurate system-level power measurement challenging? Check this out!
Is accurate system-level power measurement challenging? Check this out!
Ā 
Mirabilis design Inc - Brochure
Mirabilis design Inc - BrochureMirabilis design Inc - Brochure
Mirabilis design Inc - Brochure
Ā 

Recently uploaded

PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
anoopmanoharan2
Ā 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Christina Lin
Ā 
ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024
Rahul
Ā 
Swimming pool mechanical components design.pptx
Swimming pool  mechanical components design.pptxSwimming pool  mechanical components design.pptx
Swimming pool mechanical components design.pptx
yokeleetan1
Ā 
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
Mukeshwaran Balu
Ā 
sieving analysis and results interpretation
sieving analysis and results interpretationsieving analysis and results interpretation
sieving analysis and results interpretation
ssuser36d3051
Ā 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
KrishnaveniKrishnara1
Ā 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
gerogepatton
Ā 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
Aditya Rajan Patra
Ā 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
VICTOR MAESTRE RAMIREZ
Ā 
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
ihlasbinance2003
Ā 
Exception Handling notes in java exception
Exception Handling notes in java exceptionException Handling notes in java exception
Exception Handling notes in java exception
Ratnakar Mikkili
Ā 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
gerogepatton
Ā 
bank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdfbank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdf
Divyam548318
Ā 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
IJECEIAES
Ā 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
mahammadsalmanmech
Ā 
digital fundamental by Thomas L.floydl.pdf
digital fundamental by Thomas L.floydl.pdfdigital fundamental by Thomas L.floydl.pdf
digital fundamental by Thomas L.floydl.pdf
drwaing
Ā 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
SUTEJAS
Ā 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
University of Maribor
Ā 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
MDSABBIROJJAMANPAYEL
Ā 

Recently uploaded (20)

PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
Ā 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Ā 
ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024ACEP Magazine edition 4th launched on 05.06.2024
ACEP Magazine edition 4th launched on 05.06.2024
Ā 
Swimming pool mechanical components design.pptx
Swimming pool  mechanical components design.pptxSwimming pool  mechanical components design.pptx
Swimming pool mechanical components design.pptx
Ā 
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
ACRP 4-09 Risk Assessment Method to Support Modification of Airfield Separat...
Ā 
sieving analysis and results interpretation
sieving analysis and results interpretationsieving analysis and results interpretation
sieving analysis and results interpretation
Ā 
22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt22CYT12-Unit-V-E Waste and its Management.ppt
22CYT12-Unit-V-E Waste and its Management.ppt
Ā 
International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...International Conference on NLP, Artificial Intelligence, Machine Learning an...
International Conference on NLP, Artificial Intelligence, Machine Learning an...
Ā 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
Ā 
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student MemberIEEE Aerospace and Electronic Systems Society as a Graduate Student Member
IEEE Aerospace and Electronic Systems Society as a Graduate Student Member
Ā 
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
5214-1693458878915-Unit 6 2023 to 2024 academic year assignment (AutoRecovere...
Ā 
Exception Handling notes in java exception
Exception Handling notes in java exceptionException Handling notes in java exception
Exception Handling notes in java exception
Ā 
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODELDEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
DEEP LEARNING FOR SMART GRID INTRUSION DETECTION: A HYBRID CNN-LSTM-BASED MODEL
Ā 
bank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdfbank management system in java and mysql report1.pdf
bank management system in java and mysql report1.pdf
Ā 
Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...Advanced control scheme of doubly fed induction generator for wind turbine us...
Advanced control scheme of doubly fed induction generator for wind turbine us...
Ā 
Question paper of renewable energy sources
Question paper of renewable energy sourcesQuestion paper of renewable energy sources
Question paper of renewable energy sources
Ā 
digital fundamental by Thomas L.floydl.pdf
digital fundamental by Thomas L.floydl.pdfdigital fundamental by Thomas L.floydl.pdf
digital fundamental by Thomas L.floydl.pdf
Ā 
Understanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine LearningUnderstanding Inductive Bias in Machine Learning
Understanding Inductive Bias in Machine Learning
Ā 
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Presentation of IEEE Slovenia CIS (Computational Intelligence Society) Chapte...
Ā 
Properties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptxProperties Railway Sleepers and Test.pptx
Properties Railway Sleepers and Test.pptx
Ā 

Develop High-bandwidth/low latency electronic systems for AI/ML application

  • 1. DEVELOP HIGH BANDWIDTH-LOW LATENCY ELECTRONIC SYSTEMS FOR AI/ML APPLICATION Deepak Shankar Founder Mirabilis Design Inc. Email: dshankar@mirabilisdesign.com
  • 2. Logistics 2 All attendees are set on mute. To ask a question, click on Arrow to the left of Chat and type the question. Folks are standing by to answer your questions. There will also be a time at the end for Q&A
  • 3. DEVELOP HIGH BANDWIDTH-LOW LATENCY ELECTRONIC SYSTEMS FOR AI/ML APPLICATION Deepak Shankar Founder Mirabilis Design Inc. Email: dshankar@mirabilisdesign.com
  • 4. Agenda Architecture Exploration of Electronic Systems Introduction to System Modeling VisualSim Libraries and Architecture Exploration requirements VisualSim Demonstration and Analysis ā—¦ Software ā—¦ Semiconductor ā—¦ Power-Performance trade-off Company profile
  • 6. Modeling Electronic Systems Current approach ā—¦ Use of analytical models such as Spreadsheet and Worst-Case Execution Time ā—¦ Move from the high-specification to building prototypes ā—¦ WCET and Spreadsheets are highly inaccurate ā—¦ Prototypes take too long to develop and also have limited exploration capacity Proposed Approach ā—¦ Add a systems engineering layer after the analytical analysis ā—¦ Create a virtual prototype of the full system- Hardware, software, RTOS and network connection ā—¦ Conduct trade-off early in the design cycle with detailed knowledge of the system operation
  • 8. Proposed Approach- Full Braking System Input Spreadsheet and Trace file Generated Report and Plots Reuse existing data to kickstart model development
  • 9. Analysis and Experiment Understand the connectivity between all the individual components and sub-systems Evaluate timing, throughput, power, heat and functional correctness using a single model Measure the latency between network interface and processed output Identify opportunity for hardware acceleration Partition applications across multi-core, multi-processor and multi-chassis Exploration of emerging technology ā—¦ New processor family, new backplane technology and better integrated memory
  • 10. Why Deploy the New Approach Eliminate all surprises before integration Gain visibility into system operation and requirements early in the design process Complete visibility into constraint for each packet/request, protocol/control, and software/hardware Determine requirements for hardware and network components Identify bottlenecks, limitations and reuse ability
  • 11. Introduction to System Modeling DEMO MODELS
  • 12. System Architecture Modeling Methods Application and Software behavior Network or backplane Modeling Hardware architecture
  • 14. Network Model with Scheduler and Flow Control
  • 15. Software Code for Scheduler Algorithm /* Scan Queues based on receiving input, user algorithm here */ Select = 1 WAIT (1.0E-08) while (true) { while (Select <= Ingress_Size) { if (getBlockStatus(Smart_Resource_Name,"length",Select) > 0 && getBlockStatus("Egress","length",Select) < Threshold) { token = getBlockStatus(Smart_Resource_Name,"copy",Select) WAIT ((token.Size) / Scan_Rate) SEND (pop,Select) Index = Select - 1 InThru(Index) = InThru(Index) + token.Size } Select = Select + 1 } Select = 1 WAIT (1.0E-09) }
  • 16. Software Profiling of the Scheduler Code Address Number Mean_Time Script_RegEx_Statement 0 1 116.10900000 us Select = 1 1 1 69.97000000 us WAIT (1.0E-08) 2 404 206.66089 ns if (true) false, expression plus 13, else plus 1. 3 6462 258.44181 ns if (Select <= Ingress_Size) false, expression plus 9, else plus 1. 4 6059 8.07862948 us if (getBlockStatus(Smart_Resource_Name,"length",Select) > 0 && getBlockStatus("Egress","length",Select) < Threshold) false, expression plus 6, else plus 1. 5 1168 6.47288699 us token = getBlockStatus(Smart_Resource_Name,"copy",Select) 6 1168 20.36501199 us WAIT ((token.Size) / Scan_Rate) 7 1167 1.59209769 us SEND (pop,Select) 8 1167 891.31791 ns Index = Select - 1 9 1167 4.95694859 us InThru(Index) = InThru(Index) + token.Size 10 6058 318.42786 ns Select = Select + 1 11 6058 85.02542 ns GTO (-8) 12 403 289.43921 ns Select = 1 13 403 44.19382630 us WAIT (1.0E-09) 14 403 295.18114 ns GTO (-12) 15 0 0.0000000 GTO (EndThread)
  • 17. Mapping Scheduler code to Pseudo Instructions Instruction Sequence corresponding to the code execution {"FXA_b", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "LT", "ADD", "BCH", "LTE", "IMM", "WAIT_s"} Software code address line execution order 0, 1, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 3, 4, 5, 2, 6 List of Psuedo Instructions FXA_b = Function w/ Args, boolean FXA_r = Function w/ Args, struct (record) FXA_a = Function w/ Args, array FXA_m = Function w/ Args, matrix WAIT_s = WAIT string, event WAIT_d = WAIT double, delay DEC = -- List of Psuedo Instructions- Cont. GT = Greater than LT = Less than BCH = Branch ADD = Add SUB = Subtract MUL = Multiply INC = ++ List of Psuedo Instructions- Cont. SHIFT = >> or << SEND = Send to Label, Block or Port LTE = Less than or equal GT = Greater than LT = Less than MOD = Modulo POW = Power
  • 18. Mapping of Two Applications to an Single-Board computer Applications are a set of Complex tasks ā€¢ Variable rate input stream ā€¢ Tasks and transfer between tasks Contention for resources by tasks ā€¢ Resource are the hardware blocks ā€¢ Assign tasks to Resources ā€¢ Transfer flows across Buses and bridges Trade-off between process and transfer ā€¢ Efficient- More processing and less transfer ā€¢ Minimize power consumption I/O DSP CPU1 CPU2 task1 task2 task3 task4 Scheduling software tasks using limited resources
  • 19. VisualSim Block Diagram Library Folder Parameters Reports & Statistics Single Board Computer Architecture Application 1 Application 2 Workload Mapping Power Data
  • 20. Run Simulations using two Parameter Variations of the Bus Speed System with faster Bus is slower in places Unpredictable System Response
  • 21. VisualSim Libraries and Architecture Challenges DEMO MODELS
  • 22. Systems-Level Block Library Largest library of traffic, resources, hardware, software and analysis Traffic ā€¢ Distribution ā€¢ Sequence ā€¢ Trace file ā€¢ Instruction profile Reports ā€¢ Timing and Buffer ā€¢ Throughput/Util ā€¢ Ave/peak power ā€¢ Statistics Power ā€¢ State power table ā€¢ Power management ā€¢ Energy harvesters ā€¢ Battery ā€¢ RegEx operators SoC Buses ā€¢ AMBA and Corelink ā€¢ AHB, AB, AXI, ACE, CHI, CMN600 ā€¢ Network-on-Chip ā€¢ TileLink System Bus ā€¢ PCI/PCI-X/PCIe ā€¢ Rapid IO ā€¢ AFDX ā€¢ OpenVPX ā€¢ VME ā€¢ SPI 3.0 ā€¢ 1553B Processors ā€¢ GPU, DSP, mP and mC ā€¢ RISC-V ā€¢ Nvidia- Drive-PX ā€¢ PowerPC ā€¢ X86- Intel and AMD ā€¢ DSP- TI and ADI ā€¢ MIPS, Tensilica, SH ARM ā€¢ M-, R-, 7TDMI ā€¢ A8, A53, A55, A72, A76, A77 Custom Creator ā€¢ Script language ā€¢ 600 RegEx fn ā€¢ Task graph ā€¢ Tracer ā€¢ C/C++/Java ā€¢ Python Support ā€¢ Listener and Trace ā€¢ Debuggers ā€¢ Assertions Stochastic ā€¢ FIFO/LIFO Queue ā€¢ Time Queue ā€¢ Quantity Queue ā€¢ System Resource ā€¢ Schedulers ā€¢ Cyber Security RTOS ā€¢ Template ā€¢ ARINC 653 ā€¢ AUTOSAR Memory ā€¢ Memory Controller ā€¢ DDR DRAM 2,3,4, 5 ā€¢ LPDDR 2, 3, 4 ā€¢ HBM, HMC ā€¢ SDR, QDR, RDRAM Storage ā€¢ Flash & NVMe ā€¢ Storage Array ā€¢ Disk and SATA ā€¢ Fibre Channel ā€¢ FireWire Networking ā€¢ Ethernet & GiE ā€¢ Audio-Video Bridging ā€¢ 802.11 and Bluetooth ā€¢ 5G ā€¢ Spacewire ā€¢ CAN-FD ā€¢ TTEthernet ā€¢ FlexRay ā€¢ TSN & IEEE802.1Q FPGA ā€¢ Xilinx- Zynq, Virtex, Kintex ā€¢ Intel-Stratix, Arria ā€¢ Microsemi- Smartfusion ā€¢ Programmable logic template ā€¢ Interface traffic generator Software ā€¢ GEM5 ā€¢ Software code integration ā€¢ Instruction trace ā€¢ Statistical software model ā€¢ Task graph Interfaces ā€¢ Virtual Channel ā€¢ DMA ā€¢ Crossbar ā€¢ Serial Switch ā€¢ Bridge RTL-like ā€¢ Clock, Wire-Delay ā€¢ Registers, Latches ā€¢ Flip-flop ā€¢ ALU and FSM ā€¢ Mux, DeMux ā€¢ Lookup table
  • 23. Application Template Library VisualSim Modeling Library provides coverage over all applications using electronics
  • 24. Electronic System Challenges Systems Engineering ā—¦ Top-level view of the entire system without worrying about the exact implementation details ā—¦ Capture the data flow, application task sequence and mapping to System resources ā—¦ Generate statistics for response time, throughput and power consumed Hardware-Software selection ā—¦ Select the appropriate hardware blocks including processor, memory and bus/network ā—¦ Determine the number of independent boards and chassis for symmetrical processing ā—¦ Experiment with different mapping strategies and select accelerators ā—¦ Reuse the systems engineering data flow and application task sequence System level ā—¦ Develop the specification for integration and test cases
  • 25. Mathematical function allocation and partitioning DEMO MODELS
  • 26. Modeling Complex AI/ML processing in an Image-based Application
  • 27. Check Correctness of AI/ML Math
  • 29. Host to Data center using Ethernet AVB 6/4/2020
  • 30. Analysis Latency from gateway to gateway, client to server, master to slave or node to node Effects of communication stack activity Scheduling of different traffic classes for policing and shaping Trade-off switch vs gateway Effect of global vs. local multicast Impact of clock jitters 6/4/2020
  • 31. Interface Modeling: Network on Chip Block Diagram VisualSim Model
  • 32. VisualSim Software Architecture and Mapping to Hardware DEMO MODELS
  • 34. VisualSim Model of the Task Graph
  • 35. Block Diagram of a Software System Radar Analyze system behavior with deterministic and non-deterministic workloads
  • 36. Behavior Model of Radar Software
  • 37. Mapping Radar Software Tasks to two Hardware Architectures X86 based ECU DSP-based ECU
  • 38. Comparing Mapping on x86 vs DSP Key parameters are the latency, processing efficiency and the throughput
  • 39. Failure Impact on RTOS and Scheduling Without Faults With Faults Rapidly increasing time between Ready-to-Run and Run
  • 42. Tensor v3 in the Cloud
  • 43. Designing for an SoC Block Diagram Target Power < 1.0W Number of frames in 20 ms > 13K Three Explorations 1. All tasks deployed in Software 2. Migrate few tasks to Hardware accelerators 3. Add power management to reduce power ARM Cortex A77 ARM AMBA AXI ARM AMBA AXI Corelink CMN600 AMBA AMBA AMBA Controller VisualSim can handle any Processor architecture
  • 44. Translate SoC Block Diagram into VisualSim Model Processor Bus Topology Memory Controller Hardware Accelerators Power management Use Cases SoC design methodology provides lots of flexibility in level of detail and type of analysis
  • 45. Comparing Power and Performance across multiple Parameter Values SW SWSW SW HW HW HW HW Post processor and Batch-mode simulation allow for easy comparison across simulations
  • 46. Power and Thermal Analysis in an Application DEMO MODELS
  • 47. VisualSim Model of a Braking System
  • 50. ABOUT MIRABILIS DESIGN Deepak Shankar Founder Mirabilis Design Inc. Email: dshankar@mirabilisdesign.com
  • 51. VisualSim Aerospace Simulator of the Year Hardware Modeling 40th Customer 2003 Company Incorporated 2005 Modeling Services 1st Customer 2008 Stochastic Modeling Innovation Award 2010 Integration API 10th customer 2011 Network modeling University program 20132015 2018 50th Customer Best ESL at DAC 2nd at Arm TechCon 2019 VisualSim Automotive 250 products built Started Europe operations 2020 VisualSim Functional Analysis ISO/DO/IEC Started Asia Operations Continuous Innovation, Awards and World-Wide Presence Company Milestone
  • 52. VisualSim software with libraries Training: Training and modeling support- user builds the components and models Services: Develop custom library- User assembles the models Develop custom libraries and models - User conducts parameter study Architecture evaluation- Will develop model, analyse and provide feedback Model-based Systems Engineering simplified and made easy-to-adopt Mirabilis Design Software and Solutions
  • 53. Engineering Benefits Average increase in revenue per project = $??M Using Alternate Design Methodology Project Schedule Model Creation (6) Implementation (18) Analysis (1.5) Communication and Refinement (6) Implementation (15) Using VisualSim Model-Based Design Methodology Note: All times in months Communication and Refinement (4) Analysis (2.5) Model Creation (1) Average gain for 24-month project is 25%-30% Ensuring Highest Quality Product Accelerate Model development
  • 54. DEVELOP HIGH BANDWIDTH-LOW LATENCY ELECTRONIC SYSTEMS FOR AI/ML APPLICATION Deepak Shankar Founder Mirabilis Design Inc. Email: dshankar@mirabilisdesign.com