本文整理汇总了Python中py.test.cmdline.main函数的典型用法代码示例。如果您正苦于以下问题:Python main函数的具体用法?Python main怎么用?Python main使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了main函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: clrand
a_gpu = clrand(context, queue, (2000,), dtype=numpy.float32)
a = a_gpu.get().astype(numpy.float64)
a2 = a_gpu.astype(numpy.float64).get()
assert a2.dtype == numpy.float64
assert la.norm(a - a2) == 0, (a, a2)
a_gpu = clrand(context, queue, (2000,), dtype=numpy.float64)
a = a_gpu.get().astype(numpy.float32)
a2 = a_gpu.astype(numpy.float32).get()
assert a2.dtype == numpy.float32
assert la.norm(a - a2)/la.norm(a) < 1e-7
if __name__ == "__main__":
# make sure that import failures get reported, instead of skipping the tests.
import pyopencl as cl
import sys
if len(sys.argv) > 1:
exec(sys.argv[1])
else:
from py.test.cmdline import main
main([__file__])
示例2: wrapper
# simple test runner wrapper (useful for test debugging in IDEs)
if __name__ == "__main__":
from py.test import cmdline
import sys
sys.exit(cmdline.main(['.'] + sys.argv[1:]))