Skip to content

Commit

Permalink
Updated to latest iql version.
Browse files Browse the repository at this point in the history
  • Loading branch information
markkurossi committed Jun 2, 2021
1 parent 316fe71 commit 9220d5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rsa32.iql
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ SET REALFMT = '%.2f';

SELECT Version AS V,
Time,
HBAR(Time, MAX(Time), 6) AS "[Time]",
HBAR(Time, 0, MAX(Time), 6) AS "[Time]",
"Total Gates" AS Gates,
"Non-XOR Gates" AS NonXOR,
"Total Gates" / Time AS "Gates/s",
"Non-XOR Gates" / Time AS "NonXOR/s",
HBAR("Non-XOR Gates" / Time,
HBAR("Non-XOR Gates" / Time, 0,
MAX("Non-XOR Gates" / Time), 8) AS "[!XOR/s]"
FROM 'rsa32.csv';

0 comments on commit 9220d5b

Please sign in to comment.