Post Reply 
Informal Benchmark HW C vs HW D
10-15-2018, 05:52 AM
Post: #20
RE: Informal Benchmark HW C vs HW D
(10-14-2018 09:00 PM)akmon Wrote:  I´ve just executed the python mendelbrot program, in G2 version, chronograph on hand.
So taking the time in the video, these are the results:

Prime G1: 140 seconds
Numworks: 85 seconds
Prime G2: 57 seconds

Try this one:
Code:

#cas
def fra1(X,Y,Nmax):
  w=2.7/X
  h=-1.87/Y
  Y=Y-1
  for y in range(ceiling(Y/2)+1):
    c = -2.1+i*(h*y+0.935)
    for x in range(X):
      z = 0
      for j in range(Nmax):
        if abs(z=z**2+c)>2:
          break
      PIXON_P(x,y,5100*j+512)
      PIXON_P(x,Y-y,5100*j+512)
      c = c+w;
  FREEZE
#end
fra1(320,220,10)[/code]
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Informal Benchmark HW C vs HW D - sasa - 10-06-2018, 08:33 AM
RE: Informal Benchmark HW C vs HW D - sasa - 10-07-2018, 07:37 AM
RE: Informal Benchmark HW C vs HW D - parisse - 10-15-2018 05:52 AM



User(s) browsing this thread: 1 Guest(s)