当前位置: 首页>>代码示例>>Python>>正文


Python numpy.setbufsize方法代码示例

本文整理汇总了Python中numpy.setbufsize方法的典型用法代码示例。如果您正苦于以下问题:Python numpy.setbufsize方法的具体用法?Python numpy.setbufsize怎么用?Python numpy.setbufsize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在numpy的用法示例。


在下文中一共展示了numpy.setbufsize方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_reduceat

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import setbufsize [as 别名]
def test_reduceat():
    """Test bug in reduceat when structured arrays are not copied."""
    db = np.dtype([('name', 'S11'), ('time', np.int64), ('value', np.float32)])
    a = np.empty([100], dtype=db)
    a['name'] = 'Simple'
    a['time'] = 10
    a['value'] = 100
    indx = [0, 7, 15, 25]

    h2 = []
    val1 = indx[0]
    for val2 in indx[1:]:
        h2.append(np.add.reduce(a['value'][val1:val2]))
        val1 = val2
    h2.append(np.add.reduce(a['value'][val1:]))
    h2 = np.array(h2)

    # test buffered -- this should work
    h1 = np.add.reduceat(a['value'], indx)
    assert_array_almost_equal(h1, h2)

    # This is when the error occurs.
    # test no buffer
    np.setbufsize(32)
    h1 = np.add.reduceat(a['value'], indx)
    np.setbufsize(np.UFUNC_BUFSIZE_DEFAULT)
    assert_array_almost_equal(h1, h2) 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:29,代码来源:test_umath.py

示例2: test_reduce_big_object_array

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import setbufsize [as 别名]
def test_reduce_big_object_array(self):
        # Ticket #713
        oldsize = np.setbufsize(10*16)
        a = np.array([None]*161, object)
        assert_(not np.any(a))
        np.setbufsize(oldsize) 
开发者ID:Frank-qlu,项目名称:recruit,代码行数:8,代码来源:test_regression.py

示例3: test_reduce_big_object_array

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import setbufsize [as 别名]
def test_reduce_big_object_array(self, level=rlevel):
        # Ticket #713
        oldsize = np.setbufsize(10*16)
        a = np.array([None]*161, object)
        assert_(not np.any(a))
        np.setbufsize(oldsize) 
开发者ID:abhisuri97,项目名称:auto-alt-text-lambda-api,代码行数:8,代码来源:test_regression.py

示例4: test_reduceat

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import setbufsize [as 别名]
def test_reduceat():
    """Test bug in reduceat when structured arrays are not copied."""
    db = np.dtype([('name', 'S11'), ('time', np.int64), ('value', np.float32)])
    a = np.empty([100], dtype=db)
    a['name'] = 'Simple'
    a['time'] = 10
    a['value'] = 100
    indx = [0, 7, 15, 25]

    h2 = []
    val1 = indx[0]
    for val2 in indx[1:]:
        h2.append(np.add.reduce(a['value'][val1:val2]))
        val1 = val2
    h2.append(np.add.reduce(a['value'][val1:]))
    h2 = np.array(h2)

    # test buffered -- this should work
    h1 = np.add.reduceat(a['value'], indx)
    assert_array_almost_equal(h1, h2)

    # This is when the error occurs.
    # test no buffer
    res = np.setbufsize(32)
    h1 = np.add.reduceat(a['value'], indx)
    np.setbufsize(np.UFUNC_BUFSIZE_DEFAULT)
    assert_array_almost_equal(h1, h2) 
开发者ID:ktraunmueller,项目名称:Computable,代码行数:29,代码来源:test_umath.py

示例5: test_reduce_big_object_array

# 需要导入模块: import numpy [as 别名]
# 或者: from numpy import setbufsize [as 别名]
def test_reduce_big_object_array(self, level=rlevel):
        """Ticket #713"""
        oldsize = np.setbufsize(10*16)
        a = np.array([None]*161, object)
        assert_(not np.any(a))
        np.setbufsize(oldsize) 
开发者ID:ktraunmueller,项目名称:Computable,代码行数:8,代码来源:test_regression.py


注:本文中的numpy.setbufsize方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。