view python/pydc/examples/sintest.py @ 63:9b6cdffd30dd

- further fixes of inccorect overflow errors for int (and long on LLP64 systems) * prev commit had bugs * added overflow tests for also int, long, long long (for both, lp64 and llp64) - while at it, fixing a reference leak when not using python with utf8 caching
author Tassilo Philipp
date Sun, 19 May 2024 15:33:18 +0200
parents edbbd467f50a
children
line wrap: on
line source

import math
import os
import pydc
import sys
import platform

if sys.platform == "win32":
  libm = pydc.load("msvcrt")
elif sys.platform == "darwin":
  libm = pydc.load("/usr/lib/libm.dylib")
elif "bsd" in sys.platform:
  libm = pydc.load("/usr/lib/libm.so")
elif platform.architecture()[0] == "64bit":
  libm = pydc.load("/lib64/libm.so.6")
else:
  libm = pydc.load("/lib/libm.so.6")

fp_sin = pydc.find(libm,"sin")



def f1(n):
  x = 0
  while x < n:
    math.sin(x)
    x += 1
#  filter( math.sin, range(0,n) )

#def libmsin(x): pass

def f2(n):
  x = 0
  while x < n:
    pydc.call(fp_sin,"d)d",float(x))
    x += 1
#    libmsin(i)

#  filter( libmsin , range(0,n) )


print("start_native "+str(os.times()))
f1(10000000)
print("start_dc "+str(os.times()))
f2(10000000)
print("end "+str(os.times()))