Skip to content

Commit

Permalink
Only link to up-to-date tasks on SOTA page
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathfulSpatula committed Oct 25, 2024
1 parent 4a132f9 commit feb2d55
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 13 deletions.
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 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

0 comments on commit feb2d55

Please sign in to comment.