/third_party/boost/boost/histogram/detail/ |
D | argument_traits.hpp | 62 static constexpr std::size_t weight_ = mp11::mp_find_if<list_, is_weight>::value; member 65 static constexpr int wpos_ = (weight_ < size_ ? static_cast<int>(weight_) : -1); 68 argument_traits_holder<(size_ - (weight_ < size_) - (sample_ < size_)), 69 (weight_ < size_ && sample_ < size_ && 70 (weight_ + sample_ < 2) 72 : ((weight_ == 0 || sample_ == 0) ? 1 : 0)),
|
/third_party/grpc/src/core/ext/filters/client_channel/ |
D | server_address.h | 120 explicit ServerAddressWeightAttribute(uint32_t weight) : weight_(weight) {} in ServerAddressWeightAttribute() 122 uint32_t weight() const { return weight_; } in weight() 125 return absl::make_unique<ServerAddressWeightAttribute>(weight_); in Copy() 131 return GPR_ICMP(weight_, other_locality_attr->weight_); in Cmp() 135 return absl::StrFormat("%d", weight_); in ToString() 139 uint32_t weight_;
|
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/trt_pass/ |
D | layer_input.h | 29 LayerInput() : type_(InputType::kUnknown), weight_(), tensor_(nullptr) {} in LayerInput() 31 : type_(InputType::kWeight), weight_(w), tensor_(nullptr), shape_(s) {} in LayerInput() 33 : type_(InputType::kTensor), weight_(), tensor_(t), shape_(s) {} in LayerInput() 43 return &weight_; in weight() 60 nvinfer1::Weights weight_; variable
|
/third_party/mindspore/mindspore/lite/src/delegate/npu/op/ |
D | convolution_base_npu.cc | 27 if (weight_ != nullptr) { in ~ConvolutionBaseNPUOp() 28 delete weight_; in ~ConvolutionBaseNPUOp() 29 weight_ = nullptr; in ~ConvolutionBaseNPUOp() 49 weight_ = new (std::nothrow) hiai::op::Const(name_ + "_w"); in InitWeightConst() 50 if (weight_ == nullptr) { in InitWeightConst() 101 weight_->set_attr_value(weight_tensor); in InitWeightConst()
|
D | fullconnection_npu.cc | 70 weight_ = new (std::nothrow) hiai::op::Const(name_ + "_w"); in SetNPUInputs() 71 if (weight_ == nullptr) { in SetNPUInputs() 76 weight_->set_attr_value(weight_tensor); in SetNPUInputs() 77 fc_->set_input_x2(*weight_).set_attr_transpose_x2(true); in SetNPUInputs()
|
D | deconvolution_npu.cc | 111 CHECK_NULL_RETURN(weight_); in SetNPUInputs() 112 deconv_->set_input_filter(*weight_); in SetNPUInputs()
|
D | convolution_base_npu.h | 43 hiai::op::Const *weight_ = nullptr; variable
|
D | convolution_npu.cc | 102 conv_->set_input_filter(*weight_); in SetNPUInputs() 124 conv_->set_input_filter(*weight_); in SetNPUInputs()
|
D | convolution_depthwise_npu.cc | 82 conv_dw_->set_input_filter(*weight_); in SetNPUInputs()
|
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/gnn/ |
D | node.h | 44 Node(NodeIdType id, NodeType type, WeightType weight) : id_(id), type_(type), weight_(weight) {} in Node() 55 WeightType weight() const { return weight_; } in weight() 104 WeightType weight_; variable
|
D | edge.h | 42 : id_(id), type_(type), weight_(weight), src_node_(src_node), dst_node_(dst_node) {} in Edge() 53 WeightType weight() const { return weight_; } in weight() 84 WeightType weight_; variable
|
/third_party/mindspore/mindspore/ccsrc/backend/optimizer/ascend/ir_fusion/ |
D | prelu_fusion.h | 29 weight_ = std::make_shared<Var>(); 37 VarPtr weight_; variable
|
D | prelu_fusion.cc | 30 VectorRef mul_pattern({prim::kPrimMul, VectorRef({prim::kPrimNeg, weight_}), x_pattern}); in DefinePattern() 41 BaseRef &weight_gnode = (*equiv)[weight_]; in Process()
|
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/string/ |
D | lsh_projection.cc | 58 …weight_ = in_tensors_.size() == 2 ? nullptr : reinterpret_cast<float *>(in_tensors_.at(2)->Mutable… in Run() 59 CHECK_NULL_RETURN(weight_); in Run() 118 LshProjectionSparse(hash_seed_, feature_, weight_, output_, param_, start, end, hash_buff); in DoExecute() 121 LshProjectionDense(hash_seed_, feature_, weight_, output_, param_, start, end, hash_buff); in DoExecute()
|
D | lsh_projection.h | 51 float *weight_ = nullptr; variable
|
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp32/ |
D | deconvolution_winograd_fp32.cc | 78 if (unit.weight_ != nullptr) { in FreeDeconvParam() 79 free(unit.weight_); in FreeDeconvParam() 80 unit.weight_ = nullptr; in FreeDeconvParam() 266 unit.weight_ = malloc(unit.winograd_.kh_ * unit.winograd_.kw_ * deconv_param_->oc_up4_ * in InitComputeParam() 268 if (unit.weight_ == nullptr) { in InitComputeParam() 274 …unit.weight_ = malloc(h_size * w_size * deconv_param_->ic_up4_ * deconv_param_->oc_up4_ * sizeof(f… in InitComputeParam() 275 if (unit.weight_ == nullptr) { in InitComputeParam()
|
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp16/ |
D | deconvolution_winograd_fp16.cc | 85 if (unit.weight_ != nullptr) { in FreeDeconvParam() 86 free(unit.weight_); in FreeDeconvParam() 87 unit.weight_ = nullptr; in FreeDeconvParam() 309 unit.weight_ = malloc(unit.winograd_.kh_ * unit.winograd_.kw_ * deconv_param_->oc_up4_ * in InitComputeParam() 311 if (unit.weight_ == nullptr) { in InitComputeParam() 316 …unit.weight_ = malloc(h_size * w_size * deconv_param_->ic_up4_ * deconv_param_->oc_up4_ * sizeof(f… in InitComputeParam() 317 if (unit.weight_ == nullptr) { in InitComputeParam()
|
/third_party/grpc/src/core/ext/filters/client_channel/lb_policy/weighted_target/ |
D | weighted_target.cc | 131 uint32_t weight() const { return weight_; } in weight() 176 uint32_t weight_; member in grpc_core::__anonc87064770111::WeightedTargetLb::WeightedChild 481 weight_ = config.weight; in UpdateLocked() 551 if (weight_ == 0) return; in DeactivateLocked() 558 weight_ = 0; in DeactivateLocked() 579 !shutdown_ && weight_ == 0) { in OnDelayedRemovalTimerLocked()
|
/third_party/boost/boost/graph/ |
D | successive_shortest_path_nonnegative_weights.hpp | 47 : g_(g), weight_(w), distance_(d), rev_(r) in MapReducedWeight() 54 + get(weight_, v); in operator []() 59 Weight weight_; member in boost::detail::MapReducedWeight
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/ |
D | conv_parameter.h | 106 void *weight_; member
|
D | matmul_parameter.h | 69 QuantArg weight_; member
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/fp32/ |
D | deconv_winograd_fp32.c | 143 float *dst_weight = (float *)unit->weight_; in PackDeConvWgDataFp32() 571 …DeConvWgCalWgFp32(tile_in, tile_out, (float *)unit->weight_, tmp_buf, unit->winograd_.AT_, wg_mid_… in DeconvWg() 577 …DeConvWgCalCommFp32(tile_in, tile_out, (float *)unit->weight_, tmp_buf, unit->h_start_, unit->w_st… in DeconvWg()
|
/third_party/ffmpeg/libavcodec/arm/ |
D | h264dsp_neon.S | 545 weight_\w vhadd.s16 547 weight_\w vhsub.s16 552 weight_\w vadd.s16 554 weight_\w vsub.s16
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/fp16/ |
D | deconv_winograd_fp16.c | 324 float16_t *dst_weight = (float16_t *)unit->weight_; in PackDeConvWgDataFp16() 393 …DeConvWgCalWgFp16(tile_in, tile_out, (float16_t *)unit->weight_, tmp_buf, unit->winograd_.AT_, mid… in DeconvWgFp16() 399 …DeConvWgCalCommFp16(tile_in, tile_out, (float16_t *)unit->weight_, tmp_buf, unit->h_start_, unit->… in DeconvWgFp16()
|
/third_party/ffmpeg/libavcodec/aarch64/ |
D | h264dsp_neon.S | 814 weight_\w shadd 816 weight_\w shsub 821 weight_\w add 823 weight_\w sub
|