Home
last modified time | relevance | path

Searched refs:Cell (Results 1 – 25 of 1427) sorted by relevance

12345678910>>...58

/third_party/boost/tools/quickbook/test/
Dtable-1_7.quickbook54 [[Cell 1]]
55 [[Cell 2]]
61 [[Cell 1]]
62 [[Cell 2]]
95 Row 1. Cell 1.
98 Row 1. Cell 2.
100 Row 1. Cell 2. Paragraph 2.
105 Row 2. Cell 1.
107 * Row 2. Cell 1. List item 1.
108 * Row 2. Cell 1. List item 2.
[all …]
Dtable-1_6.quickbook54 [[Cell 1]]
55 [[Cell 2]]
61 [[Cell 1]]
62 [[Cell 2]]
95 Row 1. Cell 1.
98 Row 1. Cell 2.
100 Row 1. Cell 2. Paragraph 2.
/third_party/mindspore/tests/ut/python/numpy_native/
Dtest_numpy_ops.py20 from mindspore.nn import Cell
28 class MeshGrid(Cell):
34 class Choose(Cell):
40 class Histogram(Cell):
46 class Norm(Cell):
52 class Cross(Cell):
58 class Stack(Cell):
64 class Correlate(Cell):
70 class Split(Cell):
79 class MatrixPower(Cell):
[all …]
/third_party/libphonenumber/resources/carrier/en/
D27.txt75 2761|Cell C
77 2762|Cell C
82 27641|Cell C
83 27642|Cell C
84 27643|Cell C
85 27644|Cell C
86 27645|Cell C
91 27650|Cell C
92 27651|Cell C
93 27652|Cell C
[all …]
/third_party/mindspore/mindspore/core/ir/
Dcell.cc28 abstract::AbstractBasePtr Cell::ToAbstract() { return nullptr; } in ToAbstract()
30 bool Cell::operator==(const Value &other) const { in operator ==()
31 if (other.isa<Cell>()) { in operator ==()
32 auto other_prim = static_cast<const Cell &>(other); in operator ==()
39 bool Cell::operator==(const Cell &other) const { in operator ==()
60 std::string Cell::GetAttrString() const { in GetAttrString()
76 std::string Cell::ToString() const { in ToString()
82 void Cell::DelAttr(const std::string &name) { attrs_.erase(name); } in DelAttr()
Dcell.h34 class MS_CORE_API Cell : public Named {
36 explicit Cell(const std::string &name) : Named(name) {} in Cell() function
37 MS_DECLARE_PARENT(Cell, Named);
58 bool operator==(const Cell &other) const;
59 ~Cell() override = default;
65 using CellPtr = std::shared_ptr<Cell>;
/third_party/mindspore/tests/syntax/simple_expression/
Dtest_parse_exception.py13 class TestNoReturn(nn.Cell):
32 class TestSuper(nn.Cell):
51 class TestCompare(nn.Cell):
68 class TestUndefMemberChange(nn.Cell):
86 class TestMemberChange(nn.Cell):
104 class TestUnsupportSTMT(nn.Cell):
125 class TestUnsupportNum(nn.Cell):
143 class TestAssignAdd(nn.Cell):
160 class TestParseListComp(nn.Cell):
177 class TestAssign(nn.Cell):
[all …]
/third_party/mindspore/mindspore/nn/layer/
Dactivation.py25 from ..cell import Cell
47 class Softmax(Cell):
98 class LogSoftmax(Cell):
149 class ELU(Cell):
201 class ReLU(Cell):
247 class ReLU6(Cell):
291 class LeakyReLU(Cell):
346 class Tanh(Cell):
390 class GELU(Cell):
439 class FastGelu(Cell):
[all …]
/third_party/mindspore/tests/ut/python/pipeline/parse/
Dtest_sequence_assign.py29 class Net(nn.Cell):
46 class Net(nn.Cell):
63 class Net(nn.Cell):
81 class Net(nn.Cell):
99 class Net(nn.Cell):
118 class Net(nn.Cell):
137 class Net(nn.Cell):
151 class Net(nn.Cell):
165 class Net(nn.Cell):
179 class Net(nn.Cell):
[all …]
Dtest_use_undefined_name_or_unsupported_builtin_function.py27 class Net(nn.Cell):
42 class Net(nn.Cell):
57 class Net(nn.Cell):
73 class Net(nn.Cell):
89 class Net(nn.Cell):
107 class Net(nn.Cell):
126 class Net(nn.Cell):
149 class Net(nn.Cell):
171 class Net(nn.Cell):
191 class Net(nn.Cell):
[all …]
Dtest_enumerate.py27 class Net(nn.Cell):
45 class Net(nn.Cell):
63 class Net(nn.Cell):
76 class Net(nn.Cell):
95 class Net(nn.Cell):
114 class Net(nn.Cell):
132 class Net(nn.Cell):
150 class Net(nn.Cell):
168 class Net(nn.Cell):
187 class Net(nn.Cell):
[all …]
Dtest_view.py28 class Net(nn.Cell):
41 class Net(nn.Cell):
54 class Net(nn.Cell):
67 class Net(nn.Cell):
80 class Net(nn.Cell):
92 class Net(nn.Cell):
104 class Net(nn.Cell):
116 class Net(nn.Cell):
131 class Net(nn.Cell):
Dtest_cont_break.py19 from mindspore.nn import Cell
38 class for_loop_with_break(Cell):
57 class for_loop_with_continue(Cell):
75 class for_loop_with_cont_break(Cell):
98 class for_nested_loop_with_break(Cell):
117 class while_with_break(Cell):
137 class while_with_continue(Cell):
158 class while_for_nested(Cell):
182 class pass_branch(Cell):
Dtest_structure_output.py22 from mindspore.nn import Cell
29 class Net(Cell):
43 class Net(Cell):
58 class Net(Cell):
72 class Net(Cell):
87 class Net(Cell):
101 class Net(Cell):
114 class Net(Cell):
128 class Net(Cell):
150 class Net(Cell):
[all …]
/third_party/mindspore/mindspore/ccsrc/pybind_api/ir/
Dcell_py.cc40 REGISTER_PYBIND_DEFINE(Cell, ([](const py::module *m) { in __anon82cb0f150102()
41 (void)py::class_<Cell, std::shared_ptr<Cell>>(*m, "Cell_") in __anon82cb0f150102()
43 .def("__str__", &Cell::ToString) in __anon82cb0f150102()
45 .def("_del_attr", &Cell::DelAttr, "Delete Cell attr.") in __anon82cb0f150102()
50 [](const Cell &cell) { // __getstate__ in __anon82cb0f150102()
59 Cell data(tup[0].cast<std::string>()); in __anon82cb0f150102()
/third_party/mindspore/tests/st/control/
Dtest_cont_break.py20 from mindspore.nn import Cell
35 class ForLoopWithBreak(Cell):
45 class ForLoopWithContinue(Cell):
55 class ForLoopWithContBreak(Cell):
68 class ForNestedLoopWithBreak(Cell):
79 class WhileWithBreak(Cell):
91 class WhileWithContinue(Cell):
104 class WhileForNested(Cell):
120 class PassBranch(Cell):
/third_party/typescript/tests/baselines/reference/
D2dArrays.js2 class Cell { class
11 cells: Cell[];
19 var Cell = /** @class */ (function () {
20 function Cell() {
22 return Cell;
/third_party/mindspore/tests/ut/python/optimizer/
Dtest_auto_grad.py28 class CropAndResizeNet(nn.Cell):
41 class TestUserDefinedBpropNet(nn.Cell):
58 class TestUserDefinedBpropGradNet(nn.Cell):
75 class TwoInputBPropOperator(nn.Cell):
88 class BPropOperatatorNet(nn.Cell):
112 class SinNet(nn.Cell):
122 class SinGrad(nn.Cell):
133 class SinGradSec(nn.Cell):
156 class Net(nn.Cell):
184 class Net(nn.Cell):
[all …]
/third_party/mindspore/tests/ut/python/ops/
Dtest_control_ops.py39 class Net(nn.Cell):
78 class Net(nn.Cell):
107 class Net(nn.Cell):
128 class Net(nn.Cell):
149 class Net(nn.Cell):
170 class Net(nn.Cell):
191 class Net(nn.Cell):
212 class Net(nn.Cell):
233 class Net(nn.Cell):
254 class Net(nn.Cell):
[all …]
Dtest_ops_attr_infer.py49 class Conv2DSameNet(nn.Cell):
100 class Conv2dNet(nn.Cell):
107 class OpsNet(nn.Cell):
126 class FackOpNet(nn.Cell):
134 class OpNet(nn.Cell):
141 class OpsNet(nn.Cell):
160 class FackOpNet(nn.Cell):
168 class OpNet(nn.Cell):
175 class OpsNet(nn.Cell):
195 class OpAsPartial(nn.Cell):
[all …]
/third_party/mindspore/tests/st/networks/
Dtest_cell_bprop.py35 class MulAdd(nn.Cell):
53 class InlineMulADD(nn.Cell):
72 class WithParameter(nn.Cell):
94 class WithNoBprop(nn.Cell):
111 class GradInBprop_1(nn.Cell):
119 class GradInBprop_2(nn.Cell):
131 class GradInBprop_3(nn.Cell):
149 class GradInBprop_1(nn.Cell):
160 class GradInBprop_2(nn.Cell):
172 class GradInBprop_3(nn.Cell):
[all …]
/third_party/mindspore/tests/ut/python/parameter_feature/
Dtest_parameter.py21 from mindspore.nn import Cell
31 class SubNetDefaultMixedArgs(Cell):
41 class NetOut(Cell):
59 class FirstNet(Cell):
68 class SecondNet(Cell):
86 class FirstNet(Cell):
95 class SecondNet(Cell):
113 class FirstNet(Cell):
129 class SecondNet(Cell):
148 class FirstNet(Cell):
[all …]
Dtest_var_grad.py22 from mindspore.nn import Cell
36 class AddNet(Cell):
52 class VarNet(Cell):
65 class SecondNet(Cell):
76 class Bprop(Cell):
107 class GradNet(Cell):
125 class GradNet(Cell):
142 class GradNet(Cell):
159 class GradNet(Cell):
177 class GradNet(Cell):
[all …]
/third_party/mindspore/tests/ut/python/nn/
Dtest_cell.py25 class ModA(nn.Cell):
34 class ModB(nn.Cell):
43 class ModC(nn.Cell):
53 class Net(nn.Cell):
68 class Net2(nn.Cell):
79 class ConvNet(nn.Cell):
162 class ModError(nn.Cell):
173 class ModError1(nn.Cell):
186 class ModError2(nn.Cell):
199 m = nn.Cell()
[all …]
/third_party/mindspore/tests/ut/python/parallel/
Dtest_neighborexchange.py47 class MatMulNet(nn.Cell):
75 class MatMulNet2(nn.Cell):
102 class Net(nn.Cell):
124 class Net(nn.Cell):
146 class Net(nn.Cell):
168 class Net(nn.Cell):
196 class Net(nn.Cell):
225 class Net(nn.Cell):
254 class Net(nn.Cell):
282 class Net(nn.Cell):
[all …]

12345678910>>...58