Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ public static void Main(string[] args)
tstName = "Dummy";
break;
case 1:
gates = Suprem44.Run(sim).Result;
gates = Advantage44.Run(sim).Result;
tstName = "4x4";
break;
case 2:
gates = Suprem55.Run(sim).Result;
gates = Advantage55.Run(sim).Result;
tstName = "5x5";
break;
case 3:
gates = Suprem56.Run(sim).Result;
gates = Advantage56.Run(sim).Result;
tstName = "5x6";
break;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
return(1);
}

operation Suprem44() : Int {
operation Advantage44() : Int {
let loops = 200;
let gateCnt = (171+27*2) * loops;
using (q = Qubit[16]) {
Expand Down Expand Up @@ -207,7 +207,7 @@
return(gateCnt);
}

operation Suprem55() : Int {
operation Advantage55() : Int {
let loops = 1;
let gateCnt = (269+44*2) * loops;
using (q = Qubit[25]) {
Expand Down Expand Up @@ -488,7 +488,7 @@
return(gateCnt);
}

operation Suprem56() : Int {
operation Advantage56() : Int {
let loops = 1;
let gateCnt = (323+53*2) * loops;
using (q = Qubit[30]) {
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.Quantum.Sdk/0.12.20072031">
<Project Sdk="Microsoft.Quantum.Sdk/0.12.20082705-beta">
<!-- Add project references to Simulator and other required packages: -->
<Import Project="..\..\src\Simulation\Common\Simulators.Dev.props" />

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
for ($tst=1; $tst -le 3; $tst++) {
for ($thrd=6; $thrd -ge 1; $thrd--) {
for ($span=7; $span -ge 0; $span--) {
for ($tst=1; $tst -le 2; $tst++) {
for ($thrd=4; $thrd -ge 1; $thrd--) {
for ($span=4; $span -ge 0; $span--) {
$env:OMP_NUM_THREADS = $thrd
$env:QDK_SIM_FUSESPAN = $span
.\bin\Release\netcoreapp3.1\host.exe $tst $tst 5
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.Quantum.Sdk/0.12.20072031">
<Project Sdk="Microsoft.Quantum.Sdk/0.12.20082705-beta">

<ItemGroup>
<QsharpCompile Include="..\..\privateBuild\quantum.qs" />
Expand Down
252 changes: 0 additions & 252 deletions SupremacyBenchmark/privateBuild/runTest.csv

This file was deleted.

Loading