Searched refs:fill_op (Results 1 – 5 of 5) sorted by relevance
/third_party/mindspore/tests/ut/python/dataset/ |
D | test_fill_op.py | 29 fill_op = data_trans.Fill(3) 31 data = data.map(operations=fill_op, input_columns=["col"]) 42 fill_op = data_trans.Fill(-3) 44 data = data.map(operations=fill_op, input_columns=["col"]) 55 fill_op = data_trans.Fill(3) 57 data = data.map(operations=fill_op, input_columns=["col"]) 68 fill_op = data_trans.Fill("error") 70 data = data.map(operations=fill_op, input_columns=["col"]) 81 fill_op = data_trans.Fill(b'abc') 83 data = data.map(operations=fill_op, input_columns=["col"]) [all …]
|
D | test_eager_transforms.py | 40 fill_op = data_trans.Fill(3) 42 assert np.array_equal(fill_op([4, 5, 6, 7]), expected)
|
D | test_serdes_dataset.py | 441 fill_op = c.Fill(3) 443 data = data.map(operations=fill_op, input_columns=["col"])
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/kernels/data/ |
D | CMakeLists.txt | 9 fill_op.cc
|
/third_party/mindspore/mindspore/ccsrc/frontend/parallel/pipeline_transformer/ |
D | pipeline_transformer.cc | 972 auto fill_op = CreatOpInstance(attrs, "Fill", ""); in CoverSensShape() local 975 std::vector<AnfNodePtr> fill_input = {NewValueNode(fill_op), NewValueNode(type_ptr_), in CoverSensShape()
|