用法:
mxnet.engine.bulk(size)
批量执行将许多运算符捆绑在一起运行。这可以在顺序运行大量小型运算符时提高性能。
返回管理批量大小的范围:
with mx.engine.bulk(10): x = mx.nd.zeros((1,)) for i in range(100): x += 1
相关用法
- Python mxnet.executor.Executor.copy_params_from用法及代码示例
- Python mxnet.executor.Executor.set_monitor_callback用法及代码示例
- Python mxnet.executor.Executor.reshape用法及代码示例
- Python mxnet.executor.Executor用法及代码示例
- Python mxnet.executor.Executor.debug_str用法及代码示例
- Python mxnet.executor.Executor.backward用法及代码示例
- Python mxnet.executor.Executor.forward用法及代码示例
- Python mxnet.symbol.op.broadcast_logical_xor用法及代码示例
- Python mxnet.test_utils.get_zip_data用法及代码示例
- Python mxnet.ndarray.op.uniform用法及代码示例
- Python mxnet.symbol.op.log_softmax用法及代码示例
- Python mxnet.symbol.space_to_depth用法及代码示例
- Python mxnet.ndarray.op.sample_negative_binomial用法及代码示例
- Python mxnet.ndarray.NDArray.ndim用法及代码示例
- Python mxnet.module.BaseModule.get_outputs用法及代码示例
- Python mxnet.module.BaseModule.forward用法及代码示例
- Python mxnet.symbol.random_pdf_poisson用法及代码示例
- Python mxnet.ndarray.op.khatri_rao用法及代码示例
- Python mxnet.ndarray.op.unravel_index用法及代码示例
- Python mxnet.symbol.argmin用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 mxnet.engine.bulk。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。