/third_party/gn/src/util/ |
D | worker_pool.cc | 25 int group_ = 0; member in __anon79d5ec930111::ProcessorGroupSetter 27 int num_available_cores_in_group_ = ::GetActiveProcessorCount(group_) / 2; 37 group_affinity_.Group = group_; in SetProcessorGroup() 45 group_++; in SetProcessorGroup() 46 if (group_ >= num_groups_) { in SetProcessorGroup() 47 group_ = 0; in SetProcessorGroup() 49 num_available_cores_in_group_ = ::GetActiveProcessorCount(group_) / 2; in SetProcessorGroup()
|
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/int8/ |
D | convolution_int8_creator.cc | 106 …if (conv_param->group_ > conv_param->input_channel_ || conv_param->input_channel_ % conv_param->gr… in CpuGroupConvInt8KernelCreator() 107 MS_LOG(ERROR) << "group num " << conv_param->group_ << " is invalid for input channel " in CpuGroupConvInt8KernelCreator() 124 if (conv_param->group_ == 1) { in CpuConvInt8KernelCreator() 126 …} else if (conv_param->group_ == conv_param->input_channel_ && conv_param->group_ == conv_param->o… in CpuConvInt8KernelCreator() 130 MS_ASSERT(conv_param->group_ > 1); in CpuConvInt8KernelCreator() 132 conv_param->group_); in CpuConvInt8KernelCreator()
|
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp32_grad/ |
D | convolution.cc | 53 …conv_param_->group_ = (conv_param_->group_ == 0) ? conv_param_->input_channel_ : conv_param_->grou… in ReSize() 54 const int n = conv_param_->output_channel_ * conv_param_->group_; in ReSize() 55 …onv_param_->kernel_h_ * conv_param_->kernel_w_ * conv_param_->input_channel_ / conv_param_->group_; in ReSize() 60 … (conv_param_->stride_h_ == 1) && (conv_param_->stride_w_ == 1) && (conv_param_->group_ == 1) in ReSize() 63 do_dw_ = (conv_param_->output_channel_ == conv_param_->group_) && in ReSize() 70 ws_size_ = do_dw_ ? ws_size_ : ws_size_ / conv_param_->group_; in ReSize() 97 const int groups = conv_param_->group_; in Execute()
|
D | convolution_grad_input.cc | 53 … * conv_param->kernel_h_ * conv_param->kernel_w_ * conv_param->input_channel_ / conv_param->group_; in ReSize() 55 … = conv_param->kernel_w_ * conv_param->kernel_h_ * conv_param->input_channel_ / conv_param->group_; in ReSize() 56 int k = conv_param->output_channel_ / conv_param->group_; in ReSize() 64 (conv_param->stride_w_ == 1) && (conv_param->group_ == 1) in ReSize() 68 do_dw_ = (conv_param->output_channel_ == conv_param->group_) && in ReSize() 98 int groups = conv_param->group_; in Execute()
|
D | deconvolution_grad_filter.cc | 47 MS_CHECK_GT(conv_param->group_, 0, RET_ERROR); in Init() 60 conv_param->group_; in Init() 62 int m = conv_param->input_channel_ / conv_param->group_; in Init() 63 …= conv_param->kernel_h_ * conv_param->kernel_w_ * conv_param->output_channel_ / conv_param->group_; in Init() 94 int groups = conv_param->group_; in Execute()
|
D | convolution_grad_filter.cc | 59 NNACL_CHECK_ZERO_RETURN_ERR(conv_param->group_); in ReSize() 63 (conv_param->stride_w_ == 1) && (conv_param->group_ == 1) in ReSize() 66 do_dw_ = (conv_param->output_channel_ == conv_param->group_) && in ReSize() 73 ws_size_ = do_dw_ ? ws_size_ : ws_size_ / conv_param->group_; in ReSize() 74 … = conv_param->kernel_h_ * conv_param->kernel_w_ * conv_param->input_channel_ / conv_param->group_; in ReSize() 75 int k = conv_param->output_channel_ / conv_param->group_; in ReSize() 104 int groups = conv_param->group_; in Execute()
|
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp16_grad/ |
D | convolution_fp16_grad_input.cc | 53 … * conv_param->kernel_h_ * conv_param->kernel_w_ * conv_param->input_channel_ / conv_param->group_; in ReSize() 55 … = conv_param->kernel_w_ * conv_param->kernel_h_ * conv_param->input_channel_ / conv_param->group_; in ReSize() 56 int k = conv_param->output_channel_ / conv_param->group_; in ReSize() 64 (conv_param->stride_w_ == 1) && (conv_param->group_ == 1) in ReSize() 68 do_dw_ = (conv_param->output_channel_ == conv_param->group_) && in ReSize() 97 int groups = conv_param->group_; in DoExecute()
|
D | convolution_fp16_grad_filter.cc | 56 NNACL_CHECK_ZERO_RETURN_ERR(conv_param->group_); in ReSize() 60 (conv_param->stride_w_ == 1) && (conv_param->group_ == 1) in ReSize() 63 do_dw_ = (conv_param->output_channel_ == conv_param->group_) && in ReSize() 70 ws_size_ = do_dw_ ? ws_size_ : ws_size_ / conv_param->group_; in ReSize() 71 … = conv_param->kernel_h_ * conv_param->kernel_w_ * conv_param->input_channel_ / conv_param->group_; in ReSize() 72 int k = conv_param->output_channel_ / conv_param->group_; in ReSize() 101 int groups = conv_param->group_; in DoExecute()
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/infer/ |
D | deconv2d_infer.c | 37 if (param->group_ == 0) { in Deconv2dInferShape() 38 param->group_ = weight->shape_[0]; in Deconv2dInferShape() 50 …if (param->group_ == GetChannel(input) && param->group_ == GetBatch(weight) && 1 == GetChannel(wei… in Deconv2dInferShape()
|
D | conv2d_infer.c | 86 if (param->group_ == 0) { in Conv2dInferShape() 87 param->group_ = weight_tensor->shape_[0]; in Conv2dInferShape() 105 MS_CHECK_FALSE(param->group_ == 0, NNACL_PARAM_INVALID); in Conv2dInferShape() 106 …if (input_c != weight_tensor->shape_[3] && input_c != 1 && (input_c / param->group_) != weight_ten… in Conv2dInferShape()
|
/third_party/protobuf/src/google/protobuf/ |
D | unknown_field_set.cc | 120 total_size += field.data_.group_->SpaceUsedLong(); in SpaceUsedExcludingSelfLong() 171 field.data_.group_ = new UnknownFieldSet; in AddGroup() 173 return field.data_.group_; in AddGroup() 245 delete data_.group_; in Delete() 260 group->InternalMergeFrom(*data_.group_); in DeepCopy() 261 data_.group_ = group; in DeepCopy()
|
D | unknown_field_set.h | 297 UnknownFieldSet* group_; member 363 return *data_.group_; in group() 388 return data_.group_; in mutable_group()
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/ |
D | GPUBindGroup.h | 32 return group_; 40 wgpu::BindGroup group_;
|
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp16/ |
D | convolution_delegate_fp16.cc | 202 …inputs, outputs, ctx, group_conv_creator, reinterpret_cast<ConvParameter *>(op_parameter)->group_); in CpuGroupConvFp16KernelCreator() 218 if (conv_param->group_ == 1) { in CpuConvFp16KernelCreator() 221 …} else if (conv_param->group_ == conv_param->input_channel_ && conv_param->group_ == conv_param->o… in CpuConvFp16KernelCreator() 227 if (conv_param->group_ == 1 && kernel == nullptr) { in CpuConvFp16KernelCreator()
|
/third_party/ltp/testcases/kernel/controllers/memctl/ |
D | myfunctions.sh | 85 group=group_$i; 111 echo -n $limit >/dev/memctl/group_$i/memory.limit_in_bytes;
|
/third_party/mindspore/mindspore/lite/src/ops/populate/v0/ |
D | conv2d_populate_v0.cc | 43 conv_param->group_ = conv2d_prim->group(); in PopulateConvParameter() 54 conv_param->group_ = conv2d_prim->group(); in PopulateConvParameter()
|
/third_party/ltp/testcases/kernel/controllers/cpuctl/ |
D | run_cpuctl_test.sh | 112 ./cpuctl_task_$i $i /dev/cpuctl/group_$i $$ $NUM_CPUS $TEST_NUM \ 159 MYGROUP=/dev/cpuctl/group_$i 226 MYGROUP=/dev/cpuctl/group_$i
|
D | run_cpuctl_stress_test.sh | 157 MYGROUP=/dev/cpuctl/group_$i 221 MYGROUP=/dev/cpuctl/group_$i 296 MYGROUP=/dev/cpuctl/group_$i;
|
/third_party/mindspore/mindspore/lite/micro/coder/opcoders/nnacl/fp32/ |
D | conv2d_delegate_fp32_coder.cc | 133 if (conv_param->group_ == 1) { in CPUConv2DFusionFP32CoderCreator() 135 …} else if (conv_param->group_ == conv_param->input_channel_ && conv_param->group_ == conv_param->o… in CPUConv2DFusionFP32CoderCreator()
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/nn/ |
D | conv2d_gpu_kernel.h | 106 group_ = static_cast<int>(GetAttr<int64_t>(kernel_node, "group")); in Init() 107 CHECK_CUDNN_RET_WITH_EXCEPT(kernel_node_, cudnnSetConvolutionGroupCount(conv_desc_, group_), in Init() 197 group_ = 1; in ResetResource() 328 if (group_ > 1) { in SelectAlgorithm() 385 int group_; variable
|
D | conv2d_grad_filter_gpu_kernel.h | 53 group_(1), in ConvGradFilterGpuBkwKernel() 133 group_ = static_cast<int>(GetAttr<int64_t>(kernel_node, "group")); in Init() 134 CHECK_CUDNN_RET_WITH_EXCEPT(kernel_node_, cudnnSetConvolutionGroupCount(conv_desc_, group_), in Init() 297 if (group_ > 1) { in SelectAlgorithm() 383 int group_; variable
|
D | conv2d_grad_input_gpu_kernel.h | 55 group_(1), in ConvGradInputGpuBkwKernel() 146 group_ = static_cast<int>(GetAttr<int64_t>(kernel_node, "group")); in Init() 147 CHECK_CUDNN_RET_WITH_EXCEPT(kernel_node_, cudnnSetConvolutionGroupCount(conv_desc_, group_), in Init() 312 if (group_ > 1) { in SelectAlgorithm() 405 int group_; variable
|
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp32/ |
D | convolution_delegate_fp32.cc | 271 …inputs, outputs, ctx, group_conv_creator, reinterpret_cast<ConvParameter *>(op_parameter)->group_); in CpuGroupConvFp32KernelCreator() 289 if (conv_param->group_ == 1) { in CpuConvFp32KernelCreator() 292 …} else if (conv_param->group_ == conv_param->input_channel_ && conv_param->group_ == conv_param->o… in CpuConvFp32KernelCreator()
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/fp32_grad/ |
D | pack_ext.c | 90 const int channels = conv_param->input_channel_ / conv_param->group_; in rolling_im2col_hwc() 162 const int channels = tot_channels / conv_param->group_; in rolling_im2row_hwc() 209 const int channels = conv_param->input_channel_ / conv_param->group_; in col2im_hwc() 256 const int channels = conv_param->input_channel_ / conv_param->group_; in rolling_col2im_hwc()
|
/third_party/vk-gl-cts/executor/ |
D | xeTestCase.hpp | 195 GroupState (const TestGroup* group_) : group(group_), childNdx(0) {} in GroupState()
|