/third_party/boost/boost/hana/detail/ |
D | decay.hpp | 33 struct decay { struct 34 using type = typename std::remove_cv<U>::type; 38 struct decay<T, U[]> { using type = U*; }; argument 40 struct decay<T, U[N]> { using type = U*; }; argument 43 struct decay<T, R(A...)> { using type = R(*)(A...); }; struct 45 struct decay<T, R(A..., ...)> { using type = R(*)(A..., ...); }; struct
|
/third_party/boost/libs/hana/include/boost/hana/detail/ |
D | decay.hpp | 33 struct decay { struct 34 using type = typename std::remove_cv<U>::type; 38 struct decay<T, U[]> { using type = U*; }; struct 40 struct decay<T, U[N]> { using type = U*; }; struct 43 struct decay<T, R(A...)> { using type = R(*)(A...); }; argument 45 struct decay<T, R(A..., ...)> { using type = R(*)(A..., ...); }; argument
|
/third_party/boost/boost/type_traits/ |
D | decay.hpp | 32 struct decay struct 35 typedef typename remove_reference<T>::type Ty; 37 …boost::detail::decay_imp<Ty, boost::is_array<Ty>::value, boost::is_function<Ty>::value>::type type;
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/ |
D | rmsprop_impl.cu | 22 __global__ void RmsPropKernel(const T* learning_rate, const T decay, const T momentum, const T epsi… in RmsPropKernel() 32 void RmsProp(const T* learning_rate, const T decay, const T momentum, const T epsilon, in RmsProp() 39 __global__ void RmsPropCenterKernel(const T* learning_rate, const T* decay, const T* momentum, cons… in RmsPropCenterKernel() 52 void RmsPropCenter(const T* learning_rate, const T* decay, const T* momentum, const T* epsilon, T* … in RmsPropCenter()
|
D | adam_impl.cu | 45 … const float *beta1, const float *beta2, const float *epsilon, const float *decay, in AdamWeightDecayKernel() 59 … const float *beta1, const float *beta2, const float *epsilon, const float *decay, in AdamWeightDecayKernel() 79 … const float *beta2, const float *epsilon, const float *decay, T *variable, T *m, T *v, in AdamWeightDecayOp()
|
D | minmax_update_impl.cu | 27 const float decay) { in UpdateInputMinMaxPerLayerWithEMA()
|
/third_party/boost/boost/phoenix/core/ |
D | value.hpp | 118 struct decay struct 120 typedef T type; 123 struct decay<T[N]> : decay<T const *> {}; struct
|
/third_party/mindspore/tests/st/ops/cpu/ |
D | test_rmsprop.py | 30 def __init__(self, lr, decay, momentum, epsilon, var, g, mg, rms, mom): argument 49 def __init__(self, lr, decay, momentum, epsilon, var, g, mg, rms, mom): argument 67 learning_rate, decay, momentum, epsilon): argument 75 learning_rate, decay, momentum, epsilon): argument
|
/third_party/mindspore/tests/st/ops/gpu/ |
D | test_rmsprop.py | 30 def __init__(self, lr, decay, momentum, epsilon, var, g, mg, rms, mom): argument 49 def __init__(self, lr, decay, momentum, epsilon, var, g, mg, rms, mom): argument 67 learning_rate, decay, momentum, epsilon): argument 75 learning_rate, decay, momentum, epsilon): argument
|
/third_party/mindspore/mindspore/nn/optim/ |
D | rmsprop.py | 26 def _rmsprop_opt_(opt, decay, epsilon, momentum, learning_rate, weight, ms, mom, grad): argument 35 def _centered_rmsprop_opt_(opt, decay, epsilon, momentum, learning_rate, weight, mg, ms, mom, grad): argument 181 def __init__(self, params, learning_rate=0.1, decay=0.9, momentum=0.0, epsilon=1e-10, argument
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/cpp/analyzer/ |
D | PeakDetector.h | 58 void setDecay(double decay) { in setDecay()
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/ |
D | adam_weight_decay_cpu_kernel.cc | 45 T decay = static_cast<T>(reinterpret_cast<float *>(inputs[DECAY]->addr)[kScalarIndex]); in LaunchAdamWeightDecay() local 76 auto decay = reinterpret_cast<float *>(inputs[DECAY]->addr)[kScalarIndex]; in LaunchAdamWeightDecayNnacl() local
|
D | rmsprop_cpu_kernel.cc | 52 … T *mean_gradients, float *momentum, float *learning_rate, float *decay, in LaunchRMSPropUseCenter() 119 float *decay = reinterpret_cast<float *>(inputs[6]->addr); in Launch() local
|
D | fused_cast_adam_weight_decay_cpu_kernel.cc | 34 auto decay = reinterpret_cast<float *>(inputs[DECAY]->addr)[kScalarIndex]; in LaunchFusedCastAdamFp32() local 68 auto decay = reinterpret_cast<float *>(inputs[DECAY]->addr)[kScalarIndex]; in LaunchFusedCastAdamFp16() local
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/nnacl/fp32/ |
D | rmsprop_fp32.c | 32 … float learning_rate, float decay, float epsilon, size_t start, size_t end) { in RMSPropUnuseCenterFp32() 81 … float momentum, float learning_rate, float decay, float epsilon, size_t start, size_t end) { in RMSPropUseCenterFp32()
|
D | adam_fp32.c | 155 …p32(float *var, float *m, float *v, float lr, float beta1, float beta2, float epsilon, float decay, in AdamWeightDecayFp32() 209 …p32(float *var, float *m, float *v, float lr, float beta1, float beta2, float epsilon, float decay, in FusedCastAdamFp32() 256 float decay, const int16_t *gradient16, size_t start, size_t end) { in FusedCastAdamFp16()
|
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/nn/ |
D | rmsprop_gpu_kernel.h | 59 T *decay = GetDeviceAddress<T>(inputs, 6); in Launch() local
|
D | adam_weight_decay_gpu_kernel.h | 60 float *decay = GetDeviceAddress<float>(inputs, 7); in Launch() local
|
/third_party/ffmpeg/libavfilter/ |
D | af_asubboost.c | 32 double decay; member 128 const double feedback = s->feedback, decay = s->decay; in filter_channels() local
|
D | af_aphaser.c | 37 double decay; member
|
/third_party/boost/libs/hana/include/boost/hana/ |
D | traits.hpp | 192 constexpr auto decay = metafunction<std::decay>; variable
|
/third_party/boost/boost/hana/ |
D | traits.hpp | 192 constexpr auto decay = metafunction<std::decay>; variable
|
/third_party/mindspore/tests/st/networks/models/resnet50/ |
D | test_resnet50_imagenet.py | 57 def get_thor_lr(global_step, lr_init, decay, total_epochs, steps_per_epoch, decay_epochs=100): argument
|
/third_party/ffmpeg/libavcodec/ |
D | opus_rc.c | 275 int ff_opus_rc_dec_laplace(OpusRangeCoder *rc, uint32_t symbol, int decay) in ff_opus_rc_dec_laplace() 314 void ff_opus_rc_enc_laplace(OpusRangeCoder *rc, int *value, uint32_t symbol, int decay) in ff_opus_rc_enc_laplace()
|
D | ratecontrol.h | 38 double decay; member
|