SlideShare ist ein Scribd-Unternehmen logo
1 von 27
Downloaden Sie, um offline zu lesen
Full stack component of
software and middleware for
superconducting & photonics
machine
Solve problem that human beings cannot solve
Introduction
Yuichiro Minato
CEO of MDR Inc.
Univ. of Tokyo (Architecture)
Kengo Kuma & associates (Architecture)
2008- MDR Inc.
2015- QC project adopted by ministry of internal affair and communications.
2017- Associate program manager on ImPACT project
2019- Advisor on Presto / Sakigake
MDR Overview
Company Name MDR Inc.‹
Location Hongo2-40-14-3F, Bunkyo-ku, Tokyo, Japan ‹
Established 2008
Capital‹ $2,030,000‹
Business‹ Quantum Computer Fullstack ‹
Employee‹ 15 (including advisor) ‹
Full-stack development team from software to hardware
Engineering and theory mainly from Univ. of Tokyo and Finance team
Univ. of Tokyo dep. of Engineering
Project manager at Japanese cabinet
office quantum computing project
CEO
Yuichiro Minato Daisuke Saida
Application/Middleware Superconducting qubit
Goldman Sachs
Morgan Stanley
Columbia University
Univ of Tokyo dep. of Engineering
Mitsubishi UFJ Bank‹
ABC Finance‹
Chuo Univ.‹
Finance Finance Management
ManagerCFO
Yoichi Takebayashi Hitoya Nakamura
Executive
Shinji Ishihara
Toshiba
Univ. of Tokyo dep. of Engineering
(Ph.D)
Tokyo Institute of Technology
Toshiba
PwCC / IBM
Sony Global Solutions‹
Hardware on superconducting and Application
on both QA and Universal
https://quantumcomputingreport.com/
Flux Transmon
Principle Verification of the Superconducting Flux Qubit Cell Toward the Quantum
Sampling Approach for Training of Deep Neural Networks
Yamanashi lab, Yokohama National University
National Institute of Advanced Industrial Science and Technology
Over 2100 Quantum Computing Application
Community.
around 400 people at once event
over 2100 offline
over 1500 online
https://qnn.connpass.com/
Clients
Bank‹
Insurance‹
Automotive‹
Heavy Industry‹
Trading‹
Telecom Career‹
Material company‹
Ministries‹
Universities,National Labs Over 20 Clients on QC‹
MUFG Bank, Ltd.
・Portfolio Optimization‹
・Risk management‹
・Monte Carlo Simulations‹
・Crypto Security‹
Applications
・Quantum Simulations‹
・Combinatorial Optimization‹
・Quantum Machine Learning‹
Business Area
・Finance (shor/risk calc)‹
・Automotive (self-driving)‹
・Material and Drug discovery (chemistry)‹
from blueqat import vqe
from blueqat.pauli import qubo_bit as q
hamiltonian =
-3*q(0)-3*q(1)-3*q(2)-3*q(3)-3*q(4)+2*q(0)*q(1)+2*q(0)*q(2)+2*q(0)*q(3)+2*q(0)*q(4)+2
*q(1)*q(2)+2*q(1)*q(3)+2*q(1)*q(4)+2*q(2)*q(3)+2*q(2)*q(4)+2*q(3)*q(4)
step = 2
result = vqe.Vqe(vqe.QaoaAnsatz(hamiltonian, step)).run()
print(result.most_common(12))
---------------------
from blueqat.pauli import *
hamiltonian1 = (1.23 * Z[0] + 4.56 * X[1] * Z[2]) ** 2
hamiltonian2 = (2.46 * Y[0] + 5.55 * Z[1] * X[2] * X[1]) ** 2
hamiltonian = hamiltonian1 + hamiltonian2
print(hamiltonian)
OSS Python SDK for quantum computing ‹
https://github.com/Blueqat/Blueqat
Ising model tutorial for
beginners on ipython
To create quantum computing community for
industry
Community and eco system is the most important to improve the whole system.
We need some components to maintain the community and industry.
SDK
Software development Kit
Tutorials on SDK Communication tools and place to disscuss
Hardware
Middleware to handle
the hardware
Application and Software based on the SDK
Cloudsystem to deliver the
service
Simulators
libraries
For national project we don’t need full component
If we just accomplish the research project we don’t need a lot.
SDK
Software development Kit
Tutorials on SDK Communication tools and place to disscuss
Hardware
Middleware to handle
the hardware
Application and Software based on the SDK
Cloudsystem to deliver the
service
Simulators
libraries
QC
SDK is a userside python based software stack
Installing SDK into the user’s PC handling the process to the qc machine.
And basically it contains basic simulator of quantum computer inside it.
Application is working on this SDK
User’s PC
SDK
gaussian
fock
CPU/GPU
Application /
Software
Simulator?‹
Usually users using simulator to develop the application before send
the data to the actual quantum computing machine. The simulator
simulate the quantum computing effect efficiently for a small size of
qubits.
The process to develop applications
Applications developed with simulator first and sent to the qc at last.
SimulatorSmall problems
adjustment of parameters
Quantum computer
through cloud
SimulatorBig problems
adjustment of parameters
Quantum computer
through cloud
decomposition
QC
Quantum Classical hybrid algorithm
SDK handle the Quantum-Classical hybrid algorithm using inside/outside simulator
and quantum computer.
User’s PC
SDK CPU/GPU
Application /
Software
HPC Simulator
There are many types hybrid algorithms for quantum computer.
Quantum classical hybrid‹
Quantum computer HPC
quantum calc 1
quantum calc 2
quantum calc N
opti
mizat
ion
parameter on phase
Hybrid algorithm reduce the error of the existing quantum computer for NISQ era.
The QC service is provided through cloud.
Basically quantum computer is placed inside labs and the calculation provided
through cloud system which controlling user auth and job schedules. Users and
system communicate each other through API interface.
User’s PC
SDK CPU/GPU
Application /
Software
Cloud system
API interface
Internet
user projectjobAPI interface2
QCHPC Simulator
local or internet through secured network
QC
System
HPC Simulator
System
API
interface
API
interface
Cloud system
API interface2
HPC simulator and Quantum computer need
independent PC system each.
Inside the lab near Quantum computer or HPC simulator, need some basic PC
systems to handle job.
local or internet through secured network
job scheduler job scheduler
QC machine
HPC machine
Graphic based user interface built on API
Graphic based user interface like a quantum circuit to control with mouse or touch
panels is located on internet built on the API specification. The GUI interface is not
installed on the user’s PC, we just use it through basic browser.
html/css/js
QCHPC API interface
job scheduler HPC machine
API interface
job scheduler QC machine
Cloud system
The whole system needs robustness for unstable
quantum computer
The robustness guaranteed by some job schedulers, hpc simulator and userside
simulator.
User’s PC
SDK CPU/GPU
Application /
Software
API interface
Internet
user projectjobAPI interface2
local or internet through secured network
User tend to use qc with a lot users and tutorials.
Basically SDK is written in english language because the english user is the most
over the world. If you want to gather domestic users like inside Japan, you need to
write the basic documents on Japanese language.
Basic SDK located on pip and github
Usually users acquire software from github and quick installing package system
installed inside their computer like “pip” based on python.
Install
git clone https://github.com/Blueqat/Blueqat
cd Blueqat
pip3 install -e .
or
pip3 install blueqat
The hardware and software partners
Startups usually contract partnership with hardware providers. Software startups
have a lot of clients on quantum computing projects.
Summary : The whole economy
The hardware company provides hardware. The software company is using it
providing solution for their clients. The hardware and software service providers
have their own community to get feedback from the community and improving the
service. SDK is provided for free and application and hardware is usually provided
with prices.
hardware
SDK (For free)
Applications
Solve problem that human beings cannot solve

Weitere Àhnliche Inhalte

Was ist angesagt?

Auto conversion of serial C code to CUDA code
Auto conversion of serial C code to CUDA codeAuto conversion of serial C code to CUDA code
Auto conversion of serial C code to CUDA codeIRJET Journal
 
VLSI lab manual Part A, VTU 7the sem KIT-tiptur
VLSI lab manual Part A, VTU 7the sem KIT-tipturVLSI lab manual Part A, VTU 7the sem KIT-tiptur
VLSI lab manual Part A, VTU 7the sem KIT-tipturPramod Kumar S
 
Matrix Multiplication with Ateji PX for Java
Matrix Multiplication with Ateji PX for JavaMatrix Multiplication with Ateji PX for Java
Matrix Multiplication with Ateji PX for JavaPatrick Viry
 
EC6612 VLSI Design Lab Manual
EC6612 VLSI Design Lab ManualEC6612 VLSI Design Lab Manual
EC6612 VLSI Design Lab Manualtamil arasan
 
Ieee 2014 2015 matlab projects completed final list
Ieee 2014 2015 matlab projects completed final listIeee 2014 2015 matlab projects completed final list
Ieee 2014 2015 matlab projects completed final listIEEEJAVAPROJECTS
 
2014 ieee matlab projects titles globalsoft technologies
2014 ieee matlab projects titles globalsoft technologies2014 ieee matlab projects titles globalsoft technologies
2014 ieee matlab projects titles globalsoft technologiesIEEEBULKIEEEPROJECTS2014
 
Ieee 2014 2015 matlab project titles-globalsoft technologies
Ieee 2014 2015 matlab project titles-globalsoft technologiesIeee 2014 2015 matlab project titles-globalsoft technologies
Ieee 2014 2015 matlab project titles-globalsoft technologiesIEEEDOTNETPROJECTS
 
2014 2015 ieee matlab projects lists
2014 2015 ieee matlab projects lists2014 2015 ieee matlab projects lists
2014 2015 ieee matlab projects listsIEEEBULKIEEEPROJECTS2014
 
Ieee 2014 2015 matlab projects titles list globalsoft technologies
Ieee 2014 2015 matlab projects titles list globalsoft technologiesIeee 2014 2015 matlab projects titles list globalsoft technologies
Ieee 2014 2015 matlab projects titles list globalsoft technologiesIEEEMATLABPROJECTS
 

Was ist angesagt? (11)

Symbexecsearch
SymbexecsearchSymbexecsearch
Symbexecsearch
 
Auto conversion of serial C code to CUDA code
Auto conversion of serial C code to CUDA codeAuto conversion of serial C code to CUDA code
Auto conversion of serial C code to CUDA code
 
Isorc18 keynote
Isorc18 keynoteIsorc18 keynote
Isorc18 keynote
 
VLSI lab manual Part A, VTU 7the sem KIT-tiptur
VLSI lab manual Part A, VTU 7the sem KIT-tipturVLSI lab manual Part A, VTU 7the sem KIT-tiptur
VLSI lab manual Part A, VTU 7the sem KIT-tiptur
 
Matrix Multiplication with Ateji PX for Java
Matrix Multiplication with Ateji PX for JavaMatrix Multiplication with Ateji PX for Java
Matrix Multiplication with Ateji PX for Java
 
EC6612 VLSI Design Lab Manual
EC6612 VLSI Design Lab ManualEC6612 VLSI Design Lab Manual
EC6612 VLSI Design Lab Manual
 
Ieee 2014 2015 matlab projects completed final list
Ieee 2014 2015 matlab projects completed final listIeee 2014 2015 matlab projects completed final list
Ieee 2014 2015 matlab projects completed final list
 
2014 ieee matlab projects titles globalsoft technologies
2014 ieee matlab projects titles globalsoft technologies2014 ieee matlab projects titles globalsoft technologies
2014 ieee matlab projects titles globalsoft technologies
 
Ieee 2014 2015 matlab project titles-globalsoft technologies
Ieee 2014 2015 matlab project titles-globalsoft technologiesIeee 2014 2015 matlab project titles-globalsoft technologies
Ieee 2014 2015 matlab project titles-globalsoft technologies
 
2014 2015 ieee matlab projects lists
2014 2015 ieee matlab projects lists2014 2015 ieee matlab projects lists
2014 2015 ieee matlab projects lists
 
Ieee 2014 2015 matlab projects titles list globalsoft technologies
Ieee 2014 2015 matlab projects titles list globalsoft technologiesIeee 2014 2015 matlab projects titles list globalsoft technologies
Ieee 2014 2015 matlab projects titles list globalsoft technologies
 

Ähnlich wie Full stack component of software and middleware for quantum machine

Dipak_Desai_Resume
Dipak_Desai_ResumeDipak_Desai_Resume
Dipak_Desai_Resumenotoha
 
Marek Suplata Projects
Marek Suplata ProjectsMarek Suplata Projects
Marek Suplata Projectsguest14f12f
 
Rachit_HMI_Development_resume
Rachit_HMI_Development_resumeRachit_HMI_Development_resume
Rachit_HMI_Development_resumeRachit Kushwaha
 
veera (updated)
veera (updated)veera (updated)
veera (updated)Veeranna Babu
 
OpenACC Monthly Highlights: July 2020
OpenACC Monthly Highlights: July 2020OpenACC Monthly Highlights: July 2020
OpenACC Monthly Highlights: July 2020OpenACC
 
Portfolio control version sn_v5
Portfolio control version sn_v5Portfolio control version sn_v5
Portfolio control version sn_v5Samuel Narcisse
 
Kotra Pavan Kumar(es)
Kotra Pavan Kumar(es)Kotra Pavan Kumar(es)
Kotra Pavan Kumar(es)Pavan Kumar
 
Design of LDPC Decoder Based On FPGA in Digital Image Watermarking Technology
Design of LDPC Decoder Based On FPGA in Digital Image Watermarking TechnologyDesign of LDPC Decoder Based On FPGA in Digital Image Watermarking Technology
Design of LDPC Decoder Based On FPGA in Digital Image Watermarking TechnologyTELKOMNIKA JOURNAL
 
Julio andradecv
Julio andradecvJulio andradecv
Julio andradecvjulio Andrade
 
Resume-Rohit_Vijay_Bapat_December_2016
Resume-Rohit_Vijay_Bapat_December_2016Resume-Rohit_Vijay_Bapat_December_2016
Resume-Rohit_Vijay_Bapat_December_2016Rohit Bapat
 
How To make your own Robot And control it using labview
How To make your own Robot And control it using labviewHow To make your own Robot And control it using labview
How To make your own Robot And control it using labviewAymen Lachkhem
 
Dsp lab manual 15 11-2016
Dsp lab manual 15 11-2016Dsp lab manual 15 11-2016
Dsp lab manual 15 11-2016Gopinath.B.L Naidu
 
Computer aided process planning
Computer aided process planningComputer aided process planning
Computer aided process planningjashid41
 
B Kindilien-Does Manufacturing Have a Future?
B Kindilien-Does Manufacturing Have a Future?B Kindilien-Does Manufacturing Have a Future?
B Kindilien-Does Manufacturing Have a Future?jgIpotiwon
 

Ähnlich wie Full stack component of software and middleware for quantum machine (20)

UNIT 1.pdf
UNIT 1.pdfUNIT 1.pdf
UNIT 1.pdf
 
UNIT 1.pptx
UNIT 1.pptxUNIT 1.pptx
UNIT 1.pptx
 
Dipak_Desai_Resume
Dipak_Desai_ResumeDipak_Desai_Resume
Dipak_Desai_Resume
 
ESL report
ESL reportESL report
ESL report
 
Marek Suplata Projects
Marek Suplata ProjectsMarek Suplata Projects
Marek Suplata Projects
 
Rachit_HMI_Development_resume
Rachit_HMI_Development_resumeRachit_HMI_Development_resume
Rachit_HMI_Development_resume
 
veera (updated)
veera (updated)veera (updated)
veera (updated)
 
UDP Report
UDP ReportUDP Report
UDP Report
 
OpenACC Monthly Highlights: July 2020
OpenACC Monthly Highlights: July 2020OpenACC Monthly Highlights: July 2020
OpenACC Monthly Highlights: July 2020
 
Portfolio control version sn_v5
Portfolio control version sn_v5Portfolio control version sn_v5
Portfolio control version sn_v5
 
Kotra Pavan Kumar(es)
Kotra Pavan Kumar(es)Kotra Pavan Kumar(es)
Kotra Pavan Kumar(es)
 
Pavan(ES)
Pavan(ES)Pavan(ES)
Pavan(ES)
 
Design of LDPC Decoder Based On FPGA in Digital Image Watermarking Technology
Design of LDPC Decoder Based On FPGA in Digital Image Watermarking TechnologyDesign of LDPC Decoder Based On FPGA in Digital Image Watermarking Technology
Design of LDPC Decoder Based On FPGA in Digital Image Watermarking Technology
 
Julio andradecv
Julio andradecvJulio andradecv
Julio andradecv
 
Resume-Rohit_Vijay_Bapat_December_2016
Resume-Rohit_Vijay_Bapat_December_2016Resume-Rohit_Vijay_Bapat_December_2016
Resume-Rohit_Vijay_Bapat_December_2016
 
GCF
GCFGCF
GCF
 
How To make your own Robot And control it using labview
How To make your own Robot And control it using labviewHow To make your own Robot And control it using labview
How To make your own Robot And control it using labview
 
Dsp lab manual 15 11-2016
Dsp lab manual 15 11-2016Dsp lab manual 15 11-2016
Dsp lab manual 15 11-2016
 
Computer aided process planning
Computer aided process planningComputer aided process planning
Computer aided process planning
 
B Kindilien-Does Manufacturing Have a Future?
B Kindilien-Does Manufacturing Have a Future?B Kindilien-Does Manufacturing Have a Future?
B Kindilien-Does Manufacturing Have a Future?
 

Mehr von Yuichiro MInato

ă“ă‚Œă‚’èŠ‹ă‚Œă°äž–ç•Œăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ”ă‚ŒăŒă‚ă‹ă‚‹
ă“ă‚Œă‚’èŠ‹ă‚Œă°äž–ç•Œăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ”ă‚ŒăŒă‚ă‹ă‚‹ă“ă‚Œă‚’èŠ‹ă‚Œă°äž–ç•Œăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ”ă‚ŒăŒă‚ă‹ă‚‹
ă“ă‚Œă‚’èŠ‹ă‚Œă°äž–ç•Œăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ”ă‚ŒăŒă‚ă‹ă‚‹Yuichiro MInato
 
190904FITæƒ…ć ±ć‡Šç†ć­ŠäŒšăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚ż
190904FITæƒ…ć ±ć‡Šç†ć­ŠäŒšăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚ż190904FITæƒ…ć ±ć‡Šç†ć­ŠäŒšăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚ż
190904FITæƒ…ć ±ć‡Šç†ć­ŠäŒšăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żYuichiro MInato
 
190702é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăƒŒăŻăƒ“ă‚žăƒă‚čă‚’ć€‰ăˆă‚‹ăźă‹ïŒŸ
190702é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăƒŒăŻăƒ“ă‚žăƒă‚čă‚’ć€‰ăˆă‚‹ăźă‹ïŒŸ190702é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăƒŒăŻăƒ“ă‚žăƒă‚čă‚’ć€‰ăˆă‚‹ăźă‹ïŒŸ
190702é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăƒŒăŻăƒ“ă‚žăƒă‚čă‚’ć€‰ăˆă‚‹ăźă‹ïŒŸYuichiro MInato
 
200325é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ‹“ăæœȘ杄
200325é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ‹“ăæœȘ杄200325é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ‹“ăæœȘ杄
200325é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ‹“ăæœȘ杄Yuichiro MInato
 
191120é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăšæ©Ÿæą°ć­Šçż’
191120é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăšæ©Ÿæą°ć­Šçż’191120é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăšæ©Ÿæą°ć­Šçż’
191120é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăšæ©Ÿæą°ć­Šçż’Yuichiro MInato
 
æœ€é©ćŒ–èšˆçź—ăźæŠ‚èŠăŸăšă‚
æœ€é©ćŒ–èšˆçź—ăźæŠ‚èŠăŸăšă‚æœ€é©ćŒ–èšˆçź—ăźæŠ‚èŠăŸăšă‚
æœ€é©ćŒ–èšˆçź—ăźæŠ‚èŠăŸăšă‚Yuichiro MInato
 
é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźăŸă‚ăźă‚œăƒ•ăƒˆă‚Šă‚§ă‚ąăƒ»ăƒŸăƒ‰ăƒ«ă‚Šă‚§ă‚ąăźăƒ•ăƒ«ă‚čă‚żăƒƒă‚Żă‚łăƒłăƒăƒŒăƒăƒłăƒˆ
é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźăŸă‚ăźă‚œăƒ•ăƒˆă‚Šă‚§ă‚ąăƒ»ăƒŸăƒ‰ăƒ«ă‚Šă‚§ă‚ąăźăƒ•ăƒ«ă‚čă‚żăƒƒă‚Żă‚łăƒłăƒăƒŒăƒăƒłăƒˆé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźăŸă‚ăźă‚œăƒ•ăƒˆă‚Šă‚§ă‚ąăƒ»ăƒŸăƒ‰ăƒ«ă‚Šă‚§ă‚ąăźăƒ•ăƒ«ă‚čă‚żăƒƒă‚Żă‚łăƒłăƒăƒŒăƒăƒłăƒˆ
é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźăŸă‚ăźă‚œăƒ•ăƒˆă‚Šă‚§ă‚ąăƒ»ăƒŸăƒ‰ăƒ«ă‚Šă‚§ă‚ąăźăƒ•ăƒ«ă‚čă‚żăƒƒă‚Żă‚łăƒłăƒăƒŒăƒăƒłăƒˆYuichiro MInato
 
Quantum Business in Japanese Market
Quantum Business in Japanese MarketQuantum Business in Japanese Market
Quantum Business in Japanese MarketYuichiro MInato
 
é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźMLOps
é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźMLOpsé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźMLOps
é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźMLOpsYuichiro MInato
 
190319é‡ć­æ©Ÿæą°ć­Šçż’
190319é‡ć­æ©Ÿæą°ć­Šçż’190319é‡ć­æ©Ÿæą°ć­Šçż’
190319é‡ć­æ©Ÿæą°ć­Šçż’Yuichiro MInato
 
Blueqat SDKハンă‚șă‚Șン
Blueqat SDKハンă‚șă‚ȘンBlueqat SDKハンă‚șă‚Șン
Blueqat SDKハンă‚șă‚ȘンYuichiro MInato
 
Quantum Computer Overview
Quantum Computer OverviewQuantum Computer Overview
Quantum Computer OverviewYuichiro MInato
 

Mehr von Yuichiro MInato (12)

ă“ă‚Œă‚’èŠ‹ă‚Œă°äž–ç•Œăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ”ă‚ŒăŒă‚ă‹ă‚‹
ă“ă‚Œă‚’èŠ‹ă‚Œă°äž–ç•Œăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ”ă‚ŒăŒă‚ă‹ă‚‹ă“ă‚Œă‚’èŠ‹ă‚Œă°äž–ç•Œăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ”ă‚ŒăŒă‚ă‹ă‚‹
ă“ă‚Œă‚’èŠ‹ă‚Œă°äž–ç•Œăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ”ă‚ŒăŒă‚ă‹ă‚‹
 
190904FITæƒ…ć ±ć‡Šç†ć­ŠäŒšăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚ż
190904FITæƒ…ć ±ć‡Šç†ć­ŠäŒšăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚ż190904FITæƒ…ć ±ć‡Šç†ć­ŠäŒšăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚ż
190904FITæƒ…ć ±ć‡Šç†ć­ŠäŒšăźé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚ż
 
190702é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăƒŒăŻăƒ“ă‚žăƒă‚čă‚’ć€‰ăˆă‚‹ăźă‹ïŒŸ
190702é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăƒŒăŻăƒ“ă‚žăƒă‚čă‚’ć€‰ăˆă‚‹ăźă‹ïŒŸ190702é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăƒŒăŻăƒ“ă‚žăƒă‚čă‚’ć€‰ăˆă‚‹ăźă‹ïŒŸ
190702é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăƒŒăŻăƒ“ă‚žăƒă‚čă‚’ć€‰ăˆă‚‹ăźă‹ïŒŸ
 
200325é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ‹“ăæœȘ杄
200325é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ‹“ăæœȘ杄200325é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ‹“ăæœȘ杄
200325é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźæ‹“ăæœȘ杄
 
191120é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăšæ©Ÿæą°ć­Šçż’
191120é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăšæ©Ÿæą°ć­Šçż’191120é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăšæ©Ÿæą°ć­Šçż’
191120é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăšæ©Ÿæą°ć­Šçż’
 
æœ€é©ćŒ–èšˆçź—ăźæŠ‚èŠăŸăšă‚
æœ€é©ćŒ–èšˆçź—ăźæŠ‚èŠăŸăšă‚æœ€é©ćŒ–èšˆçź—ăźæŠ‚èŠăŸăšă‚
æœ€é©ćŒ–èšˆçź—ăźæŠ‚èŠăŸăšă‚
 
é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźăŸă‚ăźă‚œăƒ•ăƒˆă‚Šă‚§ă‚ąăƒ»ăƒŸăƒ‰ăƒ«ă‚Šă‚§ă‚ąăźăƒ•ăƒ«ă‚čă‚żăƒƒă‚Żă‚łăƒłăƒăƒŒăƒăƒłăƒˆ
é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźăŸă‚ăźă‚œăƒ•ăƒˆă‚Šă‚§ă‚ąăƒ»ăƒŸăƒ‰ăƒ«ă‚Šă‚§ă‚ąăźăƒ•ăƒ«ă‚čă‚żăƒƒă‚Żă‚łăƒłăƒăƒŒăƒăƒłăƒˆé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźăŸă‚ăźă‚œăƒ•ăƒˆă‚Šă‚§ă‚ąăƒ»ăƒŸăƒ‰ăƒ«ă‚Šă‚§ă‚ąăźăƒ•ăƒ«ă‚čă‚żăƒƒă‚Żă‚łăƒłăƒăƒŒăƒăƒłăƒˆ
é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźăŸă‚ăźă‚œăƒ•ăƒˆă‚Šă‚§ă‚ąăƒ»ăƒŸăƒ‰ăƒ«ă‚Šă‚§ă‚ąăźăƒ•ăƒ«ă‚čă‚żăƒƒă‚Żă‚łăƒłăƒăƒŒăƒăƒłăƒˆ
 
Quantum Business in Japanese Market
Quantum Business in Japanese MarketQuantum Business in Japanese Market
Quantum Business in Japanese Market
 
é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźMLOps
é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźMLOpsé‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźMLOps
é‡ć­ă‚łăƒłăƒ”ăƒ„ăƒŒă‚żăźMLOps
 
190319é‡ć­æ©Ÿæą°ć­Šçż’
190319é‡ć­æ©Ÿæą°ć­Šçż’190319é‡ć­æ©Ÿæą°ć­Šçż’
190319é‡ć­æ©Ÿæą°ć­Šçż’
 
Blueqat SDKハンă‚șă‚Șン
Blueqat SDKハンă‚șă‚ȘンBlueqat SDKハンă‚șă‚Șン
Blueqat SDKハンă‚șă‚Șン
 
Quantum Computer Overview
Quantum Computer OverviewQuantum Computer Overview
Quantum Computer Overview
 

KĂŒrzlich hochgeladen

Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...amitlee9823
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysismanisha194592
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightDelhi Call girls
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...amitlee9823
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangaloreamitlee9823
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -Pooja Nehwal
 
Predicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science ProjectPredicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science ProjectBoston Institute of Analytics
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...amitlee9823
 
Call Girls In Doddaballapur Road ☎ 7737669865 đŸ„” Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 đŸ„” Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 đŸ„” Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 đŸ„” Book Your One night Standamitlee9823
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAroojKhan71
 
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...amitlee9823
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...amitlee9823
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...only4webmaster01
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFxolyaivanovalion
 
Probability Grade 10 Third Quarter Lessons
Probability Grade 10 Third Quarter LessonsProbability Grade 10 Third Quarter Lessons
Probability Grade 10 Third Quarter LessonsJoseMangaJr1
 
âž„đŸ” 7737669865 đŸ”â–» malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
âž„đŸ” 7737669865 đŸ”â–» malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...âž„đŸ” 7737669865 đŸ”â–» malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
âž„đŸ” 7737669865 đŸ”â–» malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...amitlee9823
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 

KĂŒrzlich hochgeladen (20)

Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
 
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
Thane Call Girls 7091864438 Call Girls in Thane Escort service book now -
 
Predicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science ProjectPredicting Loan Approval: A Data Science Project
Predicting Loan Approval: A Data Science Project
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
Call Girls In Doddaballapur Road ☎ 7737669865 đŸ„” Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 đŸ„” Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 đŸ„” Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 đŸ„” Book Your One night Stand
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Probability Grade 10 Third Quarter Lessons
Probability Grade 10 Third Quarter LessonsProbability Grade 10 Third Quarter Lessons
Probability Grade 10 Third Quarter Lessons
 
âž„đŸ” 7737669865 đŸ”â–» malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
âž„đŸ” 7737669865 đŸ”â–» malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...âž„đŸ” 7737669865 đŸ”â–» malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
âž„đŸ” 7737669865 đŸ”â–» malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 

Full stack component of software and middleware for quantum machine

  • 1. Full stack component of software and middleware for superconducting & photonics machine Solve problem that human beings cannot solve
  • 2. Introduction Yuichiro Minato CEO of MDR Inc. Univ. of Tokyo (Architecture) Kengo Kuma & associates (Architecture) 2008- MDR Inc. 2015- QC project adopted by ministry of internal affair and communications. 2017- Associate program manager on ImPACT project 2019- Advisor on Presto / Sakigake
  • 3. MDR Overview Company Name MDR Inc.‹ Location Hongo2-40-14-3F, Bunkyo-ku, Tokyo, Japan ‹ Established 2008 Capital‹ $2,030,000‹ Business‹ Quantum Computer Fullstack ‹ Employee‹ 15 (including advisor) ‹
  • 4. Full-stack development team from software to hardware Engineering and theory mainly from Univ. of Tokyo and Finance team Univ. of Tokyo dep. of Engineering Project manager at Japanese cabinet office quantum computing project CEO Yuichiro Minato Daisuke Saida Application/Middleware Superconducting qubit Goldman Sachs Morgan Stanley Columbia University Univ of Tokyo dep. of Engineering Mitsubishi UFJ Bank‹ ABC Finance‹ Chuo Univ.‹ Finance Finance Management ManagerCFO Yoichi Takebayashi Hitoya Nakamura Executive Shinji Ishihara Toshiba Univ. of Tokyo dep. of Engineering (Ph.D) Tokyo Institute of Technology Toshiba PwCC / IBM Sony Global Solutions‹
  • 5. Hardware on superconducting and Application on both QA and Universal https://quantumcomputingreport.com/ Flux Transmon
  • 6. Principle Verification of the Superconducting Flux Qubit Cell Toward the Quantum Sampling Approach for Training of Deep Neural Networks Yamanashi lab, Yokohama National University National Institute of Advanced Industrial Science and Technology
  • 7. Over 2100 Quantum Computing Application Community. around 400 people at once event over 2100 offline over 1500 online https://qnn.connpass.com/
  • 8. Clients Bank‹ Insurance‹ Automotive‹ Heavy Industry‹ Trading‹ Telecom Career‹ Material company‹ Ministries‹ Universities,National Labs Over 20 Clients on QC‹ MUFG Bank, Ltd. ・Portfolio Optimization‹ ・Risk management‹ ・Monte Carlo Simulations‹ ・Crypto Security‹
  • 9. Applications ・Quantum Simulations‹ ・Combinatorial Optimization‹ ・Quantum Machine Learning‹ Business Area ・Finance (shor/risk calc)‹ ・Automotive (self-driving)‹ ・Material and Drug discovery (chemistry)‹
  • 10. from blueqat import vqe from blueqat.pauli import qubo_bit as q hamiltonian = -3*q(0)-3*q(1)-3*q(2)-3*q(3)-3*q(4)+2*q(0)*q(1)+2*q(0)*q(2)+2*q(0)*q(3)+2*q(0)*q(4)+2 *q(1)*q(2)+2*q(1)*q(3)+2*q(1)*q(4)+2*q(2)*q(3)+2*q(2)*q(4)+2*q(3)*q(4) step = 2 result = vqe.Vqe(vqe.QaoaAnsatz(hamiltonian, step)).run() print(result.most_common(12)) --------------------- from blueqat.pauli import * hamiltonian1 = (1.23 * Z[0] + 4.56 * X[1] * Z[2]) ** 2 hamiltonian2 = (2.46 * Y[0] + 5.55 * Z[1] * X[2] * X[1]) ** 2 hamiltonian = hamiltonian1 + hamiltonian2 print(hamiltonian) OSS Python SDK for quantum computing ‹ https://github.com/Blueqat/Blueqat
  • 11. Ising model tutorial for beginners on ipython
  • 12. To create quantum computing community for industry Community and eco system is the most important to improve the whole system. We need some components to maintain the community and industry. SDK Software development Kit Tutorials on SDK Communication tools and place to disscuss Hardware Middleware to handle the hardware Application and Software based on the SDK Cloudsystem to deliver the service Simulators libraries
  • 13. For national project we don’t need full component If we just accomplish the research project we don’t need a lot. SDK Software development Kit Tutorials on SDK Communication tools and place to disscuss Hardware Middleware to handle the hardware Application and Software based on the SDK Cloudsystem to deliver the service Simulators libraries
  • 14. QC SDK is a userside python based software stack Installing SDK into the user’s PC handling the process to the qc machine. And basically it contains basic simulator of quantum computer inside it. Application is working on this SDK User’s PC SDK gaussian fock CPU/GPU Application / Software
  • 15. Simulator?‹ Usually users using simulator to develop the application before send the data to the actual quantum computing machine. The simulator simulate the quantum computing effect efficiently for a small size of qubits.
  • 16. The process to develop applications Applications developed with simulator first and sent to the qc at last. SimulatorSmall problems adjustment of parameters Quantum computer through cloud SimulatorBig problems adjustment of parameters Quantum computer through cloud decomposition
  • 17. QC Quantum Classical hybrid algorithm SDK handle the Quantum-Classical hybrid algorithm using inside/outside simulator and quantum computer. User’s PC SDK CPU/GPU Application / Software HPC Simulator There are many types hybrid algorithms for quantum computer.
  • 18. Quantum classical hybrid‹ Quantum computer HPC quantum calc 1 quantum calc 2 quantum calc N opti mizat ion parameter on phase Hybrid algorithm reduce the error of the existing quantum computer for NISQ era.
  • 19. The QC service is provided through cloud. Basically quantum computer is placed inside labs and the calculation provided through cloud system which controlling user auth and job schedules. Users and system communicate each other through API interface. User’s PC SDK CPU/GPU Application / Software Cloud system API interface Internet user projectjobAPI interface2 QCHPC Simulator local or internet through secured network
  • 20. QC System HPC Simulator System API interface API interface Cloud system API interface2 HPC simulator and Quantum computer need independent PC system each. Inside the lab near Quantum computer or HPC simulator, need some basic PC systems to handle job. local or internet through secured network job scheduler job scheduler QC machine HPC machine
  • 21. Graphic based user interface built on API Graphic based user interface like a quantum circuit to control with mouse or touch panels is located on internet built on the API specification. The GUI interface is not installed on the user’s PC, we just use it through basic browser. html/css/js
  • 22. QCHPC API interface job scheduler HPC machine API interface job scheduler QC machine Cloud system The whole system needs robustness for unstable quantum computer The robustness guaranteed by some job schedulers, hpc simulator and userside simulator. User’s PC SDK CPU/GPU Application / Software API interface Internet user projectjobAPI interface2 local or internet through secured network
  • 23. User tend to use qc with a lot users and tutorials. Basically SDK is written in english language because the english user is the most over the world. If you want to gather domestic users like inside Japan, you need to write the basic documents on Japanese language.
  • 24. Basic SDK located on pip and github Usually users acquire software from github and quick installing package system installed inside their computer like “pip” based on python. Install git clone https://github.com/Blueqat/Blueqat cd Blueqat pip3 install -e . or pip3 install blueqat
  • 25. The hardware and software partners Startups usually contract partnership with hardware providers. Software startups have a lot of clients on quantum computing projects.
  • 26. Summary : The whole economy The hardware company provides hardware. The software company is using it providing solution for their clients. The hardware and software service providers have their own community to get feedback from the community and improving the service. SDK is provided for free and application and hardware is usually provided with prices. hardware SDK (For free) Applications
  • 27. Solve problem that human beings cannot solve