Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • LUFA-170418
  • LUFA-151115
  • LUFA-140928
  • LUFA-140302
  • LUFA-130901
  • LUFA-130901-BETA
  • LUFA-130303
  • LUFA-120730
  • LUFA-120730-BETA
  • LUFA-120219
  • LUFA-120219-BETA
  • LUFA-111009
  • LUFA-111009-BETA
  • LUFA-110528
  • LUFA-110528-BETA
16 results

makefile

Blame
  • pi.py 426 B
    #
    # pi.py
    # Neil Gershenfeld 1/23/17
    # calculation of pi by a scalar sum
    # pi = 3.14159265358979323846 
    #
    
    import time
    
    NPTS = 10000000
    a = 0.5
    b = 0.75
    c = 0.25
    pi = 0
    start_time = time.time()
    for i in range(1,(NPTS+1)):
       pi += a/((i-b)*(i-c))
    end_time = time.time()
    mflops = NPTS*5.0/(1.0e6*(end_time-start_time))
    print "NPTS = %d, pi = %f"%(NPTS,pi)
    print "time = %f, estimated MFlops = %f"%(end_time-start_time,mflops)