Home
last modified time | relevance | path

Searched refs:logit (Results 1 – 18 of 18) sorted by relevance

/third_party/curl/tests/
Dtestcurl.pl217 sub logit($) { subroutine
233 logit "$text";
238 logit "removing the $build dir";
243 logit "removing the $buildlogname file";
246 logit "ENDING HERE"; # last line logged!
341 logit "STARTING HERE"; # first line logged, for scripts to trigger on
342 logit 'TRANSFER CONTROL ==== 1120 CHAR LINE' . $str1066os . 'LINE_END';
343 logit "NAME = $name";
344 logit "EMAIL = $email";
345 logit "DESC = $desc";
[all …]
/third_party/alsa-utils/alsaloop/
Dcontrol.c58 logit(LOG_CRIT, "Invalid numid %d\n", numid); in control_parse_id()
168 logit(LOG_WARNING, "Unable to read control info for '%s'\n", id_str(ctl->id)); in control_init1()
173 logit(LOG_WARNING, "Unable to read control info '%s': %s\n", id_str(ctl->id), snd_strerror(err)); in control_init1()
178logit(LOG_WARNING, "Unable to read control value (init1) '%s': %s\n", id_str(ctl->id), snd_strerro… in control_init1()
206 logit(LOG_CRIT, "Unable to copy control value for type %s\n", snd_ctl_elem_type_name(type)); in copy_value()
236 logit(LOG_INFO, "%s: Unable to initialize OSS Mixer ID '%s'\n", loop->id, ossmix->oss_id); in oss_set()
269 logit(LOG_CRIT, "Unable to handle control type %s\n", snd_ctl_elem_type_name(type)); in control_init2()
274 logit(LOG_CRIT, "Unable to create control '%s': %s\n", id_str(mix->dst.id), snd_strerror(err)); in control_init2()
279logit(LOG_CRIT, "Unable to unlock control info '%s': %s\n", id_str(mix->dst.id), snd_strerror(err)… in control_init2()
284 logit(LOG_CRIT, "Unable to read control info '%s': %s\n", id_str(mix->dst.id), snd_strerror(err)); in control_init2()
[all …]
Dalsaloop.c153 logit(LOG_WARNING, "Scheduler getparam failed.\n"); in setscheduler()
159logit(LOG_WARNING, "Scheduler set to Round Robin with priority %i\n", sched_param.sched_priority); in setscheduler()
163logit(LOG_INFO, "!!!Scheduler set to Round Robin with priority %i FAILED!\n", sched_param.sched_pr… in setscheduler()
240 logit(LOG_CRIT, "No enough memory\n"); in add_loop()
288 logit(LOG_CRIT, "Wrong mixer control ID syntax '%s'\n", *mixers); in add_mixers()
293 logit(LOG_CRIT, "Wrong mixer control ID syntax '%s'\n", str1 ? str1 + 1 : *mixers); in add_mixers()
331 logit(LOG_CRIT, "Not enough memory"); in add_oss_mixers()
466 logit(LOG_WARNING, "Unknown format, setting to default S16_LE\n"); in parse_config()
557 logit(LOG_CRIT, "Maximum redirected mixer controls reached (max %i)\n", (int)MAX_MIXERS); in parse_config()
564 logit(LOG_CRIT, "Maximum redirected mixer controls reached (max %i)\n", (int)MAX_MIXERS); in parse_config()
[all …]
Dpcmjob.c118logit(LOG_CRIT, "Broken configuration for %s PCM: no configurations available: %s\n", lhandle->id,… in setparams_stream()
123logit(LOG_CRIT, "Resample setup failed for %s (val %u): %s\n", lhandle->id, lhandle->resample, snd… in setparams_stream()
128 logit(LOG_CRIT, "Access type not available for %s: %s\n", lhandle->id, snd_strerror(err)); in setparams_stream()
133 logit(LOG_CRIT, "Sample format not available for %s: %s\n", lhandle->id, snd_strerror(err)); in setparams_stream()
138logit(LOG_CRIT, "Channels count (%u) not available for %s: %s\n", lhandle->channels, lhandle->id, … in setparams_stream()
144logit(LOG_CRIT, "Rate %uHz not available for %s: %s\n", lhandle->rate_req, lhandle->id, snd_strerr… in setparams_stream()
155logit(LOG_CRIT, "Rate does not match (requested %uHz, got %uHz, resample %u)\n", lhandle->rate, rr… in setparams_stream()
180logit(LOG_CRIT, "Unable to set buffer size %li for %s\n", (long)lhandle->buffer_size, lhandle->id); in setparams_bufsize()
187 logit(LOG_CRIT, "Buffer size too big\n"); in setparams_bufsize()
195logit(LOG_CRIT, "Unable to set buffer size %li for %s: %s\n", periodsize, lhandle->id, snd_strerro… in setparams_bufsize()
[all …]
Dalsaloop.h202 #define logit(priority, fmt, args...) do { \ macro
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/
Dcross_entropy_impl.cu29 T logit = logits[i * class_num + labels[i]]; in CrossEntropyWithSparseKernel() local
30 if (logit <= 0) { in CrossEntropyWithSparseKernel()
31 logit = epsilon; in CrossEntropyWithSparseKernel()
33 total_loss += -logf(logit); in CrossEntropyWithSparseKernel()
45 T logit = logits[index * class_num + labels[index]]; in LargeBatchCrossEntropyWithSparseKernel() local
46 if (logit <= 0) { in LargeBatchCrossEntropyWithSparseKernel()
47 logit = epsilon; in LargeBatchCrossEntropyWithSparseKernel()
49 MsAtomicAdd(loss, -logf(logit) / batch_size); in LargeBatchCrossEntropyWithSparseKernel()
Dsparse_cross_entropy_cuda_impl.cu27 float logit = logits[i * class_num + labels[i]]; in CalCrossEntropyKernel() local
28 if (logit <= 0) { in CalCrossEntropyKernel()
29 logit += epsilon; in CalCrossEntropyKernel()
31 float single_loss = -logf(logit); in CalCrossEntropyKernel()
/third_party/mindspore/tests/st/networks/models/resnet50/src/
DCrossEntropySmooth.py34 def construct(self, logit, label): argument
36 label = self.onehot(label, F.shape(logit)[1], self.on_value, self.off_value)
37 loss = self.ce(logit, label)
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/fp32_grad/
Dsoftmax_cross_entropy_with_logits.cc39 float logit = in ForwardPostExecute() local
43 loss += labels[i * param_->number_of_classes_ + j] * logit; in ForwardPostExecute()
51 float logit = in ForwardPostExecute() local
53 loss += labels[i * param_->number_of_classes_ + j] * logit; in ForwardPostExecute()
/third_party/mindspore/tests/st/quantization/resnet50_quant/
Dutils.py100 def construct(self, logit, label): argument
102 logit)[1], self.on_value, self.off_value)
103 loss = self.ce(logit, one_hot_label)
/third_party/mindspore/tests/st/quantization/mobilenetv2_quant/
Dutils.py115 def construct(self, logit, label): argument
116 one_hot_label = self.onehot(self.cast(label, mstype.int32), F.shape(logit)[1],
118 out_loss = self.ce(logit, one_hot_label)
/third_party/mindspore/tests/ut/python/parallel/
Dtest_auto_parallel_resnet_sharding_propagation2.py243 def construct(self, logit, label): argument
244 logit = self.cast1(logit, mstype.float32)
245 logit_max = self.max(logit)
246 exp = self.exp(self.sub(logit, logit_max))
250 label = self.onehot(label, F.shape(logit)[1], self.on_value, self.off_value)
Dtest_auto_parallel_resnet_sharding_propagation.py244 def construct(self, logit, label): argument
245 logit = self.cast1(logit, mstype.float32)
246 logit_max = self.max(logit)
247 exp = self.exp(self.sub(logit, logit_max))
251 label = self.onehot(label, F.shape(logit)[1], self.on_value, self.off_value)
Dtest_auto_parallel_resnet.py243 def construct(self, logit, label): argument
244 logit = self.cast1(logit, mstype.float32)
245 logit_max = self.max(logit)
246 exp = self.exp(self.sub(logit, logit_max))
250 label = self.onehot(label, F.shape(logit)[1], self.on_value, self.off_value)
/third_party/mindspore/tests/st/auto_parallel/
Dresnet50_expand_loss.py268 def construct(self, logit, label): argument
269 logit = self.cast(logit, mstype.float32)
270 logit_max = self.max(logit, -1)
271 exp = self.exp(self.sub(logit, logit_max))
275 label = self.onehot(label, F.shape(logit)[1], self.on_value, self.off_value)
Dsoft_entropy_loss_expand_parallel.py158 def construct(self, logit, label): argument
159 logit_max = self.reduce_max(logit, -1)
160 exp = self.exp(self.sub(logit, logit_max))
164 label = self.onehot(label, F.shape(logit)[1], self.on_value, self.off_value)
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/cpu/mkldnn/
Dsoftmax_cross_entropy_with_logits_cpu_kernel.cc73 float logit = logf(logits[i * class_num_ + j] <= 0.0 ? epsilon : logits[i * class_num_ + j]); in ForwardPostExecute() local
75 loss += labels[i * class_num_ + j] * logit; in ForwardPostExecute()
/third_party/toybox/toys/pending/
Ddhcp6.c135 static void logit(char *format, ...) in logit() function
546 if (toys.optflags & FLAG_v) dbg = logit; in dhcp6_main()
554 dbg = logit; in dhcp6_main()