Home
last modified time | relevance | path

Searched refs:add_weight (Results 1 – 6 of 6) sorted by relevance

/third_party/mindspore/tests/ut/python/parallel/
Dtest_adafactor.py26 def __init__(self, matmul_weight, add_weight, strategy1=None, strategy2=None): argument
31 self.bias = Parameter(add_weight, "bias")
Dtest_auto_parallel_reshape.py131 … self.add_weight = Parameter(Tensor(np.ones([128, 32]), dtype=ms.float32), name="weight1")
139 out = out + self.add_weight
/third_party/flatbuffers/android/app/src/main/cpp/generated/
Danimal_generated.h53 void add_weight(uint16_t weight) { in add_weight() function
76 builder_.add_weight(weight);
/third_party/mindspore/mindspore/lite/tools/optimizer/fusion/
Dconv_biasadd_fusion.cc138 auto add_weight = add_cnode->input(kInputIndexTwo); in CheckCanFusion() local
139 MS_ASSERT(add_weight != nullptr); in CheckCanFusion()
141 if (FetchShapeFromAbstract(add_weight->abstract(), &shape) != lite::RET_OK) { in CheckCanFusion()
/third_party/mindspore/mindspore/core/ir/
Dfunc_graph.h203 virtual ParameterPtr add_weight(const tensor::MetaTensorPtr &meta_tensor);
Dfunc_graph.cc725 ParameterPtr FuncGraph::add_weight(const tensor::MetaTensorPtr &meta_tensor) { in add_weight() function in mindspore::FuncGraph