SlideShare uma empresa Scribd logo
1 de 5
Baixar para ler offline
8/24/2016 Zynq design from scratch. Part 29. « New Horizons Zynq Blog
http://svenand.blogdrive.com/archive/189.html#.V72zk_l97IV 1/5
New Horizons
Welcome to my blog
My name is Sven Andersson and I
work as a consultant in embedded
system design, implemented in ASIC
and FPGA.
In my spare time I write this blog
and I hope it will inspire others to 
learn more about this fantastic field. 
I live in Stockholm Sweden and have
my own company
Contact
You are welcome to contact me 
and ask questions or make comments
about my blog.
Google site search
Search
Content
New Horizons
What's new
Starting a blog
Writing a blog
Using an RSS reader
Zynq Design From Scratch
Started February 2014
1 Introduction 
Changes and updates 
2 Zynq­7000 All Programmable SoC
3 ZedBoard and other boards
4 Computer platform and VirtualBox
  Thursday, March 20, 2014
Zynq design from scratch. Part 29.
PetaLinux application development
PetaLinux provides an easy way to develop user applications for Zynq and MicroBlaze Linux systems, including
building, installing, and debugging. This guide describes how to create and debug one application for Zynq­7000. Let's
start by studying the PetaLinux SDK Application Development Guide.
Create a new application
PetaLinux provides a tool to create user application templates for either C or C++. These templates include application
source code and Makefiles so that you can easily configure and compile applications for the target, and install them
into the root file system. We will add the PrimeNumber application we have already used in our earlier experiments.
1. Create a user application by running petalinux­create ­t apps from inside a PetaLinux project on our workstation.
­>cd Projects/PetaLinux/Avnet­Digilent­ZedBoard­2013.3
­>petalinux­create ­t apps ­­name PrimeNumbers
2. Here is the result.
8/24/2016 Zynq design from scratch. Part 29. « New Horizons Zynq Blog
http://svenand.blogdrive.com/archive/189.html#.V72zk_l97IV 2/5
5 Installing Ubuntu
6 Fixing Ubuntu
7 Installing Vivado
8 Starting Vivado
9 Using Vivado
10 Lab 1. Create a Zynq project
11 Lab 1. Build a hardware platform
12 Lab 1. Create a software application
13 Lab 1. Connect to ZedBoard
14 Lab 1. Run a software application
15 Lab 1. Benchmarking ARM Cortex­A9
16 Lab 2. Adding a GPIO peripheral
17 Lab 2. Create a custom HDL module
18 Lab 2. Connect package pins and
implement
19 Lab 2. Create a software application
and configure the PL
20 Lab 2. Debugging a software
application
21 Running Linux from SD card
22 Installing PetaLinux
23 Booting PetaLinux
24 Connect to ZedBoad via ethernet
25 Rebuilding the PetaLinux kernel image
26 Running a DHCP server on the host
27 Running a TFTP server on the host
28 PetaLinux boot via U­boot
29 PetaLinux application development
30 Fixing the host computer
31 Running NFS servers
32 VirtualBox seamless mode
33 Mounting guest file system using
sshfs
34 PetaLinux. Setting up a web server
35 PetaLinux. Using cgi scripts
36 PetaLinux. Web enabled application
37 Convert from VirtualBox to VMware
38 Running Linaro Ubuntu on ZedBoard
39 Running Android on ZedBoard
40 Lab2. Booting from SD card and SPI
flash
41 Lab2. PetaLinux board bringup
42 Lab2. Writing userspace IO device
driver
43 Lab2. Hardware debugging
44 MicroZed quick start
45 Installing Vivado 2014.1
46 Lab3. Adding push buttons to our
Zynq system
47 Lab3. Adding an interrupt service
routine
48 Installing Ubuntu 14.04
49 Installing Vivado and Petalinux
2014.2
50 Using Vivado 2014.2
51 Upgrading to Ubuntu 14.04
52 Using Petalinux 2014.2
53 Booting from SD card and SPI flash
54 Booting Petalinux 2014.2 from SD
card
55 Booting Petalinux 2014.2 from SPI
flash
56 Installing Vivado 2014.3
Chipotle Verification System
Introduction
EE Times Retrospective Series
It all started more than 40 years ago
My first job as an electrical engineer
The Memory (R)evolution
The Microprocessor (R)evolution
Four soft­core processors
Started January 2012
Introduction
Table of contents
Leon3
MicroBlaze
OpenRISC 1200
Nios II
Using the Spartan­6 LX9 MicroBoard
Started August 2011
Introduction
3. We will replace the empty PrimeNumbers.c file with the one we used in our earlier lab.
Building a new application
Once we have created the new application, the next step is to compile and build it. The required steps are shown
below.
4. Select your new application to be included in the build process. The application is not enabled by default. Launch the
rootfs configuration menu:
­>petalinux­config ­c rootfs
5. Press the down arrow key to scroll down the menu to Apps.
6. Press Enter to got into the Apps sub­menu.
8/24/2016 Zynq design from scratch. Part 29. « New Horizons Zynq Blog
http://svenand.blogdrive.com/archive/189.html#.V72zk_l97IV 3/5
Table of contents
Problems, fixes and solutions
FPGA Design From Scratch
Started December 2006
Introduction
Table of contents
Index
Acronyms and abbreviations
Actel FPGA design
Designing with an Actel FPGA. Part 1
Designing with an Actel FPGA. Part 2
Designing with an Actel FPGA. Part 3
Designing with an Actel FPGA. Part 4
Designing with an Actel FPGA. Part 5
CAD
A hardware designer's best friend
Zoo Design Platform
Linux
Installing Cobra Command Tool
A processor benchmark
Mac
Porting a Unix program to Mac OS X
Fixing a HyperTerminal in Mac OS X
A dream come true
Bicycling
Stockholm by bike
Running
The New York City Marathon
Skiing/Skating
Kittelfjall Lappland
Tour skating in Sweden and around the
world
Top
Introduction
SSSK
Wild skating
Tour day
Safety equipment
A look at the equipment you need
Skate maintenance
Links
Books, photos, films and videos
Weather forecasts
Travel
38000 feet above see level
A trip to Spain
Florida the sunshine state
Photo Albums
Seaside Florida
Ronda Spain
Sevilla Spain
Cordoba Spain
Alhambra Spain
Kittelfjäll Lapland
Landsort Art Walk
Skating on thin ice
Books
100 Power Tips for FPGA Designers
Favorites
Adventures in ASIC
ChipHit
Computer History Museum
DeepChip
Design & Reuse
Dilbert
d9 Tech Blog
EDA Cafe
EDA DesignLine
Eli's tech Blog
Embedded.com
EmbeddedRelated.com
FPGA Arcade
7. Include the bullt­in app gpio­demo and the PrimeNumbers.
8. Exit and save the configuration.
Build a new PetaLinux kernel
9. Execute the command:
­>petalinux­build
10. We can see that the apps gpio­demo and PrimeNumbers will be included in the build.
11. Follow the instructions from part 28 to netboot the new image.
12. Here is the result from running PrimeNumbers.
8/24/2016 Zynq design from scratch. Part 29. « New Horizons Zynq Blog
http://svenand.blogdrive.com/archive/189.html#.V72zk_l97IV 4/5
FPGA Blog
FPGA Central
FPGA CPU News
FPGA developer
FPGA Journal
FPGA World
Lesley Shannon Courses
Mac 2 Ubuntu
Programmable Logic DesignLine
OpenCores
Simplehelp
SOCcentral
World of ASIC
Contact Me
If you want to be updated on this weblog Enter
your email here:
  register
Running gpio­demo
gpio­demo is a program that can be used to send and read data to/from the GPIO port. Type 
gpio­demo to find out more.
­>gpio­demo
13. Use this command to turn on all eight LEDs on the board:
­>gpio­demo ­g 243 ­o 255
Top   Previous   Next
Posted at 09:46 by svenand
L30nardoSV 
November 9, 2015   04:48 PM PST
 
Hello,
I confirm what CArlos said.
It happens with the 2014.04 version.
Carlos Moraes 
January 2, 2015   01:10 AM PST
 
Hi everybody!!
My gpiochip number are differrent. LEDs 0 to 7 are
gpiochip125 and LED 9 is gpiochip138. Unfortunately, i
didn't find any docs related to that, as my revision of
PETALINUX is 2014.4.
Thanks so much for the blog Sven. Have a happy new
year.
8/24/2016 Zynq design from scratch. Part 29. « New Horizons Zynq Blog
http://svenand.blogdrive.com/archive/189.html#.V72zk_l97IV 5/5
   
Leave a Comment:
Name
Name
Homepage (optional)
Comments
Post
Previous Entry Home Next Entry

Mais conteúdo relacionado

Destaque

Valdiviezo
ValdiviezoValdiviezo
ValdiviezoCaSaBex
 
Guía práctica de herrmientas de productividad y colaboración
Guía práctica de herrmientas de productividad y colaboraciónGuía práctica de herrmientas de productividad y colaboración
Guía práctica de herrmientas de productividad y colaboraciónIñaki Formación
 
Plano guia Las Edades del Hombre en Oña (Merindades)
Plano guia Las Edades del Hombre en Oña (Merindades)Plano guia Las Edades del Hombre en Oña (Merindades)
Plano guia Las Edades del Hombre en Oña (Merindades)CEDER Merindades
 
Sustainability Drinks #16 - Arianna Nicoletti
Sustainability Drinks #16 - Arianna NicolettiSustainability Drinks #16 - Arianna Nicoletti
Sustainability Drinks #16 - Arianna NicolettiGreenBuzz Berlin
 
Integranova Company Presentation
Integranova Company PresentationIntegranova Company Presentation
Integranova Company PresentationMichiel Houbraken
 
2009 videojuegos en-el_instituto._ocio_digital_como_estímulo_en_la_enseñanza
2009 videojuegos en-el_instituto._ocio_digital_como_estímulo_en_la_enseñanza2009 videojuegos en-el_instituto._ocio_digital_como_estímulo_en_la_enseñanza
2009 videojuegos en-el_instituto._ocio_digital_como_estímulo_en_la_enseñanzacucacambados
 
Applying a systems framework to research on African farming systems
Applying a systems framework to research on African farming systemsApplying a systems framework to research on African farming systems
Applying a systems framework to research on African farming systemsILRI
 
119. pont eemprego 119 de data 09-01-2013
119.  pont eemprego 119 de data 09-01-2013119.  pont eemprego 119 de data 09-01-2013
119. pont eemprego 119 de data 09-01-2013omixboiro
 
Curriculum Vitae (Mutfi Muhammad Akhlaq)
Curriculum Vitae (Mutfi Muhammad Akhlaq)Curriculum Vitae (Mutfi Muhammad Akhlaq)
Curriculum Vitae (Mutfi Muhammad Akhlaq)Mufti Muhammad Akhlaq
 
English mealtimes presentation_edit
English mealtimes presentation_editEnglish mealtimes presentation_edit
English mealtimes presentation_editrocho78
 

Destaque (15)

Social Media Profile_Sundaram
Social Media Profile_SundaramSocial Media Profile_Sundaram
Social Media Profile_Sundaram
 
Valdiviezo
ValdiviezoValdiviezo
Valdiviezo
 
Guía práctica de herrmientas de productividad y colaboración
Guía práctica de herrmientas de productividad y colaboraciónGuía práctica de herrmientas de productividad y colaboración
Guía práctica de herrmientas de productividad y colaboración
 
Plano guia Las Edades del Hombre en Oña (Merindades)
Plano guia Las Edades del Hombre en Oña (Merindades)Plano guia Las Edades del Hombre en Oña (Merindades)
Plano guia Las Edades del Hombre en Oña (Merindades)
 
Sustainability Drinks #16 - Arianna Nicoletti
Sustainability Drinks #16 - Arianna NicolettiSustainability Drinks #16 - Arianna Nicoletti
Sustainability Drinks #16 - Arianna Nicoletti
 
Integranova Company Presentation
Integranova Company PresentationIntegranova Company Presentation
Integranova Company Presentation
 
Q,a iii
Q,a iiiQ,a iii
Q,a iii
 
Ibm eng 270514
Ibm eng 270514Ibm eng 270514
Ibm eng 270514
 
Jaxtraws Lewd Art
Jaxtraws Lewd ArtJaxtraws Lewd Art
Jaxtraws Lewd Art
 
2009 videojuegos en-el_instituto._ocio_digital_como_estímulo_en_la_enseñanza
2009 videojuegos en-el_instituto._ocio_digital_como_estímulo_en_la_enseñanza2009 videojuegos en-el_instituto._ocio_digital_como_estímulo_en_la_enseñanza
2009 videojuegos en-el_instituto._ocio_digital_como_estímulo_en_la_enseñanza
 
Applying a systems framework to research on African farming systems
Applying a systems framework to research on African farming systemsApplying a systems framework to research on African farming systems
Applying a systems framework to research on African farming systems
 
119. pont eemprego 119 de data 09-01-2013
119.  pont eemprego 119 de data 09-01-2013119.  pont eemprego 119 de data 09-01-2013
119. pont eemprego 119 de data 09-01-2013
 
I'm digital2010
I'm digital2010I'm digital2010
I'm digital2010
 
Curriculum Vitae (Mutfi Muhammad Akhlaq)
Curriculum Vitae (Mutfi Muhammad Akhlaq)Curriculum Vitae (Mutfi Muhammad Akhlaq)
Curriculum Vitae (Mutfi Muhammad Akhlaq)
 
English mealtimes presentation_edit
English mealtimes presentation_editEnglish mealtimes presentation_edit
English mealtimes presentation_edit
 

Semelhante a Zynq design from scratch. part 29

OpenStack Integration with OpenContrail and OpenDaylight
OpenStack Integration with OpenContrail and OpenDaylightOpenStack Integration with OpenContrail and OpenDaylight
OpenStack Integration with OpenContrail and OpenDaylightSyed Moneeb
 
Think Different: Visualization Tools for Testers
Think Different: Visualization Tools for TestersThink Different: Visualization Tools for Testers
Think Different: Visualization Tools for TestersTechWell
 
OpenNebulaConf 2016 - The Lightweight Approach to Build Cloud CyberSecurity E...
OpenNebulaConf 2016 - The Lightweight Approach to Build Cloud CyberSecurity E...OpenNebulaConf 2016 - The Lightweight Approach to Build Cloud CyberSecurity E...
OpenNebulaConf 2016 - The Lightweight Approach to Build Cloud CyberSecurity E...OpenNebula Project
 
TDC2018FLN | Trilha Machine Learning - Intel movidius: Neural Compute Stick
TDC2018FLN | Trilha Machine Learning - Intel movidius: Neural Compute Stick TDC2018FLN | Trilha Machine Learning - Intel movidius: Neural Compute Stick
TDC2018FLN | Trilha Machine Learning - Intel movidius: Neural Compute Stick tdc-globalcode
 
Arco Linux Introduction. Lets see how it looks?
Arco Linux Introduction. Lets see how it looks?Arco Linux Introduction. Lets see how it looks?
Arco Linux Introduction. Lets see how it looks?Marek Zawadzki
 
Open source, What | Why | How
Open source, What | Why | How Open source, What | Why | How
Open source, What | Why | How Nikhil Agrawal
 
Let's unRiddle jsFiddle
Let's unRiddle jsFiddleLet's unRiddle jsFiddle
Let's unRiddle jsFiddlerhoward_blk
 
ODROID Magazine April 2014
ODROID Magazine April 2014ODROID Magazine April 2014
ODROID Magazine April 2014Nanik Tolaram
 
Bhopal mule soft_meetup_17july2021_azuredevopsintegration_mulesoft
Bhopal mule soft_meetup_17july2021_azuredevopsintegration_mulesoftBhopal mule soft_meetup_17july2021_azuredevopsintegration_mulesoft
Bhopal mule soft_meetup_17july2021_azuredevopsintegration_mulesoftAnkitaJaggi1
 
[Webinar] Automating Developer Workspace Construction for the Nuxeo Platform ...
[Webinar] Automating Developer Workspace Construction for the Nuxeo Platform ...[Webinar] Automating Developer Workspace Construction for the Nuxeo Platform ...
[Webinar] Automating Developer Workspace Construction for the Nuxeo Platform ...Nuxeo
 
Java EE Microservices
Java EE MicroservicesJava EE Microservices
Java EE Microservicesjclingan
 
OpenStack Ottawa Q2 MeetUp - May 31st 2017
OpenStack Ottawa Q2 MeetUp - May 31st 2017OpenStack Ottawa Q2 MeetUp - May 31st 2017
OpenStack Ottawa Q2 MeetUp - May 31st 2017Stacy Véronneau
 
Introduction to OutSystems.pptx
Introduction to OutSystems.pptxIntroduction to OutSystems.pptx
Introduction to OutSystems.pptxsunil60471
 
Neo4j GraphTalks Rome - CONOSCERE ED INTEGRARE CON SUCCESSO NEO4J NELLA TUA A...
Neo4j GraphTalks Rome - CONOSCERE ED INTEGRARE CON SUCCESSO NEO4J NELLA TUA A...Neo4j GraphTalks Rome - CONOSCERE ED INTEGRARE CON SUCCESSO NEO4J NELLA TUA A...
Neo4j GraphTalks Rome - CONOSCERE ED INTEGRARE CON SUCCESSO NEO4J NELLA TUA A...Neo4j
 
Xlab #2: wzorce projektowe
Xlab #2: wzorce projektoweXlab #2: wzorce projektowe
Xlab #2: wzorce projektoweXSolve
 
Turning huge ships - Open Source and Microsoft
Turning huge ships - Open Source and MicrosoftTurning huge ships - Open Source and Microsoft
Turning huge ships - Open Source and MicrosoftChristian Heilmann
 
An Introduction to Node.js Development with Windows Azure
An Introduction to Node.js Development with Windows AzureAn Introduction to Node.js Development with Windows Azure
An Introduction to Node.js Development with Windows AzureTroy Miles
 
LV Dev Efficiency NIDays 2015
LV Dev Efficiency NIDays 2015LV Dev Efficiency NIDays 2015
LV Dev Efficiency NIDays 2015Jeffrey Habets
 
Cinder Update, OpenInfra Meetup Q3 China, 2020-09-26
Cinder Update, OpenInfra Meetup Q3 China, 2020-09-26Cinder Update, OpenInfra Meetup Q3 China, 2020-09-26
Cinder Update, OpenInfra Meetup Q3 China, 2020-09-26Brian Rosmaita
 
Ecosystem Projects for Data Management Challenges: Cinder
Ecosystem Projects for Data Management Challenges: CinderEcosystem Projects for Data Management Challenges: Cinder
Ecosystem Projects for Data Management Challenges: CinderBrian Rosmaita
 

Semelhante a Zynq design from scratch. part 29 (20)

OpenStack Integration with OpenContrail and OpenDaylight
OpenStack Integration with OpenContrail and OpenDaylightOpenStack Integration with OpenContrail and OpenDaylight
OpenStack Integration with OpenContrail and OpenDaylight
 
Think Different: Visualization Tools for Testers
Think Different: Visualization Tools for TestersThink Different: Visualization Tools for Testers
Think Different: Visualization Tools for Testers
 
OpenNebulaConf 2016 - The Lightweight Approach to Build Cloud CyberSecurity E...
OpenNebulaConf 2016 - The Lightweight Approach to Build Cloud CyberSecurity E...OpenNebulaConf 2016 - The Lightweight Approach to Build Cloud CyberSecurity E...
OpenNebulaConf 2016 - The Lightweight Approach to Build Cloud CyberSecurity E...
 
TDC2018FLN | Trilha Machine Learning - Intel movidius: Neural Compute Stick
TDC2018FLN | Trilha Machine Learning - Intel movidius: Neural Compute Stick TDC2018FLN | Trilha Machine Learning - Intel movidius: Neural Compute Stick
TDC2018FLN | Trilha Machine Learning - Intel movidius: Neural Compute Stick
 
Arco Linux Introduction. Lets see how it looks?
Arco Linux Introduction. Lets see how it looks?Arco Linux Introduction. Lets see how it looks?
Arco Linux Introduction. Lets see how it looks?
 
Open source, What | Why | How
Open source, What | Why | How Open source, What | Why | How
Open source, What | Why | How
 
Let's unRiddle jsFiddle
Let's unRiddle jsFiddleLet's unRiddle jsFiddle
Let's unRiddle jsFiddle
 
ODROID Magazine April 2014
ODROID Magazine April 2014ODROID Magazine April 2014
ODROID Magazine April 2014
 
Bhopal mule soft_meetup_17july2021_azuredevopsintegration_mulesoft
Bhopal mule soft_meetup_17july2021_azuredevopsintegration_mulesoftBhopal mule soft_meetup_17july2021_azuredevopsintegration_mulesoft
Bhopal mule soft_meetup_17july2021_azuredevopsintegration_mulesoft
 
[Webinar] Automating Developer Workspace Construction for the Nuxeo Platform ...
[Webinar] Automating Developer Workspace Construction for the Nuxeo Platform ...[Webinar] Automating Developer Workspace Construction for the Nuxeo Platform ...
[Webinar] Automating Developer Workspace Construction for the Nuxeo Platform ...
 
Java EE Microservices
Java EE MicroservicesJava EE Microservices
Java EE Microservices
 
OpenStack Ottawa Q2 MeetUp - May 31st 2017
OpenStack Ottawa Q2 MeetUp - May 31st 2017OpenStack Ottawa Q2 MeetUp - May 31st 2017
OpenStack Ottawa Q2 MeetUp - May 31st 2017
 
Introduction to OutSystems.pptx
Introduction to OutSystems.pptxIntroduction to OutSystems.pptx
Introduction to OutSystems.pptx
 
Neo4j GraphTalks Rome - CONOSCERE ED INTEGRARE CON SUCCESSO NEO4J NELLA TUA A...
Neo4j GraphTalks Rome - CONOSCERE ED INTEGRARE CON SUCCESSO NEO4J NELLA TUA A...Neo4j GraphTalks Rome - CONOSCERE ED INTEGRARE CON SUCCESSO NEO4J NELLA TUA A...
Neo4j GraphTalks Rome - CONOSCERE ED INTEGRARE CON SUCCESSO NEO4J NELLA TUA A...
 
Xlab #2: wzorce projektowe
Xlab #2: wzorce projektoweXlab #2: wzorce projektowe
Xlab #2: wzorce projektowe
 
Turning huge ships - Open Source and Microsoft
Turning huge ships - Open Source and MicrosoftTurning huge ships - Open Source and Microsoft
Turning huge ships - Open Source and Microsoft
 
An Introduction to Node.js Development with Windows Azure
An Introduction to Node.js Development with Windows AzureAn Introduction to Node.js Development with Windows Azure
An Introduction to Node.js Development with Windows Azure
 
LV Dev Efficiency NIDays 2015
LV Dev Efficiency NIDays 2015LV Dev Efficiency NIDays 2015
LV Dev Efficiency NIDays 2015
 
Cinder Update, OpenInfra Meetup Q3 China, 2020-09-26
Cinder Update, OpenInfra Meetup Q3 China, 2020-09-26Cinder Update, OpenInfra Meetup Q3 China, 2020-09-26
Cinder Update, OpenInfra Meetup Q3 China, 2020-09-26
 
Ecosystem Projects for Data Management Challenges: Cinder
Ecosystem Projects for Data Management Challenges: CinderEcosystem Projects for Data Management Challenges: Cinder
Ecosystem Projects for Data Management Challenges: Cinder
 

Último

DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAnitaRaj43
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 

Último (20)

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by Anitaraj
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 

Zynq design from scratch. part 29