feature requestfrontend: Python3good first issue
倉庫指標
- 星標
- (160 顆星)
- PR 合併指標
- (PR 指標待抓取)
描述
We could simplify non-MPI Python code if we add another constructor to Dataset:
import openpmd_api as io
data = np.arange(size*size, dtype=np.double).reshape(3, 3)
# now
dataset = io.Dataset(data.dtype, data.shape)
# future
dataset = io.Dataset(data)