用法:
mxnet.context.current_context()
default_ctx:
返回:
返回类型:
返回当前上下文。
默认情况下,
mx.cpu()
用于所有计算,并且可以使用with mx.Context(x)
语句覆盖它,其中 x 可以是 cpu(device_id) 或 gpu(device_id)。例子:
>>> mx.current_context() cpu(0) >>> with mx.Context('gpu', 1): # Context changed in `with` block. ... mx.current_context() # Computation done here will be on gpu(1). ... gpu(1) >>> mx.current_context() # Back to default context. cpu(0)
相关用法
- Python mxnet.context.cpu用法及代码示例
- Python mxnet.context.cpu_pinned用法及代码示例
- Python mxnet.context.gpu用法及代码示例
- Python mxnet.context.Context.device_type用法及代码示例
- Python mxnet.context.Context用法及代码示例
- Python mxnet.context.Context.empty_cache用法及代码示例
- Python mxnet.contrib.ndarray.index_copy用法及代码示例
- Python mxnet.contrib.symbol.SparseEmbedding用法及代码示例
- Python mxnet.contrib.symbol.edge_id用法及代码示例
- Python mxnet.contrib.symbol.dgl_graph_compact用法及代码示例
- Python mxnet.contrib.symbol.dgl_adjacency用法及代码示例
- Python mxnet.contrib.ndarray.hawkesll用法及代码示例
- Python mxnet.contrib.ndarray.SparseEmbedding用法及代码示例
- Python mxnet.contrib.ndarray.ifft用法及代码示例
- Python mxnet.contrib.ndarray.group_adagrad_update用法及代码示例
- Python mxnet.contrib.ndarray.fft用法及代码示例
- Python mxnet.contrib.ndarray.boolean_mask用法及代码示例
- Python mxnet.contrib.symbol.dgl_csr_neighbor_non_uniform_sample用法及代码示例
- Python mxnet.contrib.ndarray.dgl_subgraph用法及代码示例
- Python mxnet.contrib.tensorboard.LogMetricsCallback用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 mxnet.context.current_context。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。