Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only link to up-to-date tasks on SOTA page #937

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions src/components/SotaItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,6 @@ const SotaItem = (props) =>
<p>{props.description}</p>
</div>
</div>
<div className='row'>
<label htmlFor={props.name + '-value'} className='col-md-1 text-start'>Value:</label>
<div className='col-md-6 text-start'><Link to={'/Submission/' + props.submissionId}>{props.value}</Link></div>
</div>
<div className='row'>
<label htmlFor={props.name + '-value'} className='col-md-1 text-start'>{props.isPlatform ? 'Platform:' : 'Method:'}</label>
<div className='col-md-6 text-start'>{props.method}</div>
</div>
<div className='row'>
<label htmlFor={props.name + '-value'} className='col-md-1 text-start'>Architecture:</label>
<div className='col-md-6 text-start'>{props.architecture}</div>
</div>
<br />
</span>

Expand Down
7 changes: 6 additions & 1 deletion src/views/Sota.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ const Sota = (props) => {
<h4 align='left'>State of the Art Quantum Benchmarks</h4>
</div>
</div>
<div className='row'>
<div className='col text-start'>
<p>These are benchmarks that the Metriq team thinks give a handle on understanding the state-of-the-art in quantum computing. Click into each task comparison title link to see the latest data.</p>
</div>
</div>
<br />
<div className='row'>
<div className='col'>
Expand All @@ -19,7 +24,7 @@ const Sota = (props) => {
<SotaItem
title='Quantum Volume'
description='The Log-2 Quantum Volume is otherwise known as "algorithmic qubits" (in the absence of error correction) and constitutes the effective number of viable logical qubits (for QV-like tasks).'
value='2^20'
value='2^21'
submissionId={642}
taskId={34}
method={<Link to={'/Platform/' + 80}>Quantinuum System Model H1-1</Link>}
Expand Down