MCPcopy Create free account
hub / github.com/numpy/numpy / items

Function items

tools/openblas_support.py:287–294  ·  view source on GitHub ↗

yields all combinations of arch, ilp64

()

Source from the content-addressed store, hash-verified

285 exist and can be opened
286 '''
287 def items():
288 """ yields all combinations of arch, ilp64
289 """
290 for plat in plats:
291 yield plat, None
292 osname, arch = plat.split("-")
293 if arch not in ('i686', '32'):
294 yield plat, '64_'
295
296 errs = []
297 for plat, ilp64 in items():

Callers 1

test_setupFunction · 0.85

Calls 1

splitMethod · 0.45

Tested by 1

test_setupFunction · 0.68