File:Supercomputing-rmax-graph.png
File:Supercomputing-rmax-graph2.svg is a vector version of this file. It should be used in place of this PNG file when not inferior.Category:Vector version available
File:Supercomputing-rmax-graph.png → File:Supercomputing-rmax-graph2.svg
For more information, see Help:SVG. |
Summary
| Description |
Plot of the fastest computer over time... The two curves represent the two measures (OPS and FLOPS) which have been used to quantify supercomputer speed, these are approximately the same (but not quite). First and Third columns of data taken from en.wikipedia.com/wiki/Supercomputer and put into file "sc". Removed UPenn ENIAC entry. Used python 2.6 code as follows (I make no excuses for readability/general quality): <source lang='python'>
fid = open("sc") lastThing = 1066 lineno=-1 sizedic={"O":1, "k":1e3,
"M":1e6,
"G":1e9,
"T":1e12,
"P":1e15}
X1 = [] Y1 = [] X2 = [] Y2 = [] for line in fid: lineno+=1
if lineno==0:
continue
x = line.split("\t")
a = x[0]
y = x[1].split("\xc2\xa0")
if len(y) != 2:
y = x[1].split(" ")
b = y[0]
c = y[1]
try:
a = float(a)
lastThing = a
except:
pass
b = float(b) d = sizedic[c.strip()[0]] print lastThing,":",b,"x",d if c.strip().endswith("FLOPS"):
X1.append(lastThing)
Y1.append(b*d)
else:
X2.append(lastThing)
Y2.append(b*d)
import matplotlib.pyplot as plt plt.semilogy(X1,Y1) plt.semilogy(X2,Y2) plt.legend(["FLOPS","OPS"],"upper left") plt.xlabel("Year") plt.ylabel("Rmax") </syntaxhighlight> |
| Date | |
| Source | Own work |
| Author | Lucaswilkins |
Licensing
| This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication. | |
| The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.
|