Home
last modified time | relevance | path

Searched refs:t_total (Results 1 – 25 of 113) sorted by relevance

12345

/dports/science/py-chainer-chemistry/chainer-chemistry-0.7.1/chainer_chemistry/training/extensions/
H A Dprc_auc_evaluator.py86 def prc_auc_score(self, y_total, t_total): argument
89 valid_ind = numpy.in1d(t_total, self.ignore_labels, invert=True)
91 t_total = t_total[valid_ind]
94 pos_indices = numpy.in1d(t_total, self.pos_labels)
95 t_total = numpy.where(pos_indices, 1, 0)
97 if len(numpy.unique(t_total)) != 2:
104 precision, recall, _ = metrics.precision_recall_curve(t_total, y_total)
H A Droc_auc_evaluator.py86 def roc_auc_score(self, y_total, t_total): argument
89 valid_ind = numpy.in1d(t_total, self.ignore_labels, invert=True)
91 t_total = t_total[valid_ind]
94 pos_indices = numpy.in1d(t_total, self.pos_labels)
95 t_total = numpy.where(pos_indices, 1, 0)
97 roc_auc = metrics.roc_auc_score(t_total, y_total)
H A Dbatch_evaluator.py62 t_total = []
72 t_total.append(t_data)
75 t_total = numpy.concatenate(t_total).ravel()
77 metrics = {key: metric_fun(y_total, t_total) for key, metric_fun in
/dports/math/casadi/casadi-3.5.5/casadi/core/
H A Dlinsol.cpp83 if (m->t_total) m->t_total->tic(); in solve()
95 if (m->t_total) m->t_total->toc(); in solve()
117 if (m->t_total) m->fstats.at("sfact").tic(); in sfact()
120 if (m->t_total) m->fstats.at("sfact").toc(); in sfact()
142 if (m->t_total) m->fstats.at("nfact").tic(); in nfact()
144 if (m->t_total) m->fstats.at("nfact").toc(); in nfact()
174 if (m->t_total) m->fstats.at("solve").tic(); in solve()
176 if (m->t_total) m->fstats.at("solve").toc(); in solve()
/dports/math/minizinc/libminizinc-2.5.5/tests/spec/unit/regression/
H A Dsubsets_100.mzn11 t_total: 45
18 t_total: 100
25 t_total: 193
64 var int: t_total;
95 sum_set(t, t_total)
97 s_total = t_total
99 % t_total = n
/dports/security/palisade/palisade-release-d76213499af44558170cca6c72c5314755fec23c/src/core/examples/
H A Dparallel.cpp84 TimeVar t_total; // define timer variable for TIC() TOC() timing functions.
137 TIC(t_total); // set the timer.
151 timeTotal = TOC_MS(t_total);
163 TIC(t_total); // reset the timer.
173 timeTotal = TOC_US(t_total);
/dports/math/gecode/gecode-0916a1a/tools/flatzinc/
H A Dfzn-gecode.cpp43 Support::Timer t_total; in main() local
44 t_total.start(); in main()
78 fg->run(os, p, opt, t_total); in main()
81 fg->run(std::cout, p, opt, t_total); in main()
/dports/devel/libgit2/libgit2-1.3.0/tests/perf/
H A Dhelper__perf__do_merge.c22 perf_timer t_total = PERF_TIMER_INIT; in perf__do_merge() local
27 perf__timer__start(&t_total); in perf__do_merge()
69 perf__timer__stop(&t_total); in perf__do_merge()
74 perf__timer__report(&t_total, "%s: total", test_name); in perf__do_merge()
/dports/archivers/lzo2/lzo-2.10/examples/
H A Ddict.c188 time_t t_total; in main() local
254 t_total = time(NULL); in main()
261 t_total = time(NULL) - t_total; in main()
269 r == 0 ? "passed" : "FAILED", (unsigned long) t_total); in main()
/dports/multimedia/opentoonz/opentoonz-1.5.0/thirdparty/lzo/2.03/examples/
H A Ddict.c194 time_t t_total; in main() local
260 t_total = time(NULL); in main()
263 t_total = time(NULL) - t_total; in main()
271 r == 0 ? "passed" : "FAILED", (unsigned long) t_total); in main()
/dports/science/nwchem/nwchem-7b21660b82ebd85ef659f6fba7e1e73433b0bd0a/src/peigs/example/
H A Dtim_com.c39 void tim_com(t_total, tcom_me, iwork, work ) in tim_com() argument
42 DoublePrecision t_total, tcom_me;
92 fprintf(stderr, " (Max comm)/(total time) = %f \n", t_max/t_total);
/dports/science/nwchem-data/nwchem-7.0.2-release/src/peigs/example/
H A Dtim_com.c39 void tim_com(t_total, tcom_me, iwork, work ) in tim_com() argument
42 DoublePrecision t_total, tcom_me;
92 fprintf(stderr, " (Max comm)/(total time) = %f \n", t_max/t_total);
/dports/devel/gdb/gdb-11.1/gdb/python/lib/gdb/command/
H A Dpretty_printers.py207 (t_enabled, t_total) = count_enabled_printers(gdb.pretty_printers)
209 total_count += t_total
210 (t_enabled, t_total) = count_enabled_printers(
214 total_count += t_total
216 (t_enabled, t_total) = count_enabled_printers(objfile.pretty_printers)
218 total_count += t_total
/dports/devel/gdb761/gdb-7.6.1/gdb/python/lib/gdb/command/
H A Dpretty_printers.py192 (t_enabled, t_total) = count_enabled_printers(gdb.pretty_printers)
194 total_count += t_total
195 (t_enabled, t_total) = count_enabled_printers(gdb.current_progspace().pretty_printers)
197 total_count += t_total
199 (t_enabled, t_total) = count_enabled_printers(objfile.pretty_printers)
201 total_count += t_total
/dports/math/gecode/gecode-0916a1a/test/
H A Dflatzinc.cpp46 Support::Timer t_total; in run() local
47 t_total.start(); in run()
61 fg->run(os, p, fznopt, t_total); in run()
/dports/devel/stxxl/stxxl-1.4.1/tools/extras/
H A Diobench_scatter_in_place.cpp80 timer t_total(true); in main() local
150 t_total.stop(); in main()
166 …std::cout << "# Non-I/O time " << std::setw(8) << std::setprecision(3) << (t_total.seconds() - tot… in main()
167 …) << std::setprecision(3) << (throughput(totalsizewrite + totalsizeread, t_total.seconds() - total… in main()
169 …std::cout << "# Total time " << std::setw(8) << std::setprecision(3) << t_total.seconds() << " s… in main()
170 …) << std::setprecision(3) << (throughput(totalsizewrite + totalsizeread, t_total.seconds()) * ndis… in main()
/dports/devel/avr-gdb/gdb-7.3.1/gdb/python/lib/gdb/command/
H A Dpretty_printers.py196 (t_enabled, t_total) = count_enabled_printers(gdb.pretty_printers)
198 total_count += t_total
199 (t_enabled, t_total) = count_enabled_printers(gdb.current_progspace().pretty_printers)
201 total_count += t_total
203 (t_enabled, t_total) = count_enabled_printers(objfile.pretty_printers)
205 total_count += t_total
/dports/benchmarks/stress-ng/stress-ng-0.13.09/
H A Dstress-longjmp.c58 static double t_total; in stress_longjmp() local
74 t_total += (stress_time_now() - bufchk.ts); in stress_longjmp()
98 const double rate = (double)STRESS_NANOSECOND * t_total / (double)n; in stress_longjmp()
/dports/databases/mantis/mantisbt-2.25.2/core/
H A Dbilling_api.php189 $t_total = array(
202 $t_total['cost'] += $t_cost;
203 $t_total['minutes'] += $t_issue_info['minutes'];
225 'total' => $t_total );
/dports/net/librdkafka/librdkafka-1.8.2/examples/
H A Drdkafka_performance.c115 rd_ts_t t_total; member
495 rd_ts_t t_total; in print_stats() local
511 t_total = cnt.t_end_send - cnt.t_start; in print_stats()
513 t_total = cnt.t_end - cnt.t_start; in print_stats()
515 t_total = now - cnt.t_start; in print_stats()
517 t_total = 1; in print_stats()
560 COL_PR64("elapsed", t_total / 1000); in print_stats()
594 t_total / 1000, in print_stats()
626 COL_PR64("elapsed", t_total / 1000); in print_stats()
663 t_total / 1000, in print_stats()
[all …]
/dports/sysutils/vector/vector-0.10.0/cargo-crates/rdkafka-sys-2.0.0+1.4.2/librdkafka/examples/
H A Drdkafka_performance.c115 rd_ts_t t_total; member
462 rd_ts_t t_total; in print_stats() local
478 t_total = cnt.t_end_send - cnt.t_start; in print_stats()
480 t_total = cnt.t_end - cnt.t_start; in print_stats()
482 t_total = now - cnt.t_start; in print_stats()
484 t_total = 1; in print_stats()
527 COL_PR64("elapsed", t_total / 1000); in print_stats()
561 t_total / 1000, in print_stats()
593 COL_PR64("elapsed", t_total / 1000); in print_stats()
630 t_total / 1000, in print_stats()
[all …]
/dports/sysutils/fluent-bit/fluent-bit-1.8.11/plugins/out_kafka/librdkafka-1.7.0/examples/
H A Drdkafka_performance.c115 rd_ts_t t_total; member
495 rd_ts_t t_total; in print_stats() local
511 t_total = cnt.t_end_send - cnt.t_start; in print_stats()
513 t_total = cnt.t_end - cnt.t_start; in print_stats()
515 t_total = now - cnt.t_start; in print_stats()
517 t_total = 1; in print_stats()
560 COL_PR64("elapsed", t_total / 1000); in print_stats()
594 t_total / 1000, in print_stats()
626 COL_PR64("elapsed", t_total / 1000); in print_stats()
663 t_total / 1000, in print_stats()
[all …]
/dports/security/p5-Net-Radius-Server/Net-Radius-Server-1.116/bin/
H A Drad-bulk337 tie my $t_total, 'Time::Stopwatch';
339 $t_total = 0;
340 $t_diff -= $t_total;
341 $t_total = 0;
345 $t_diff += $t_total;
/dports/net/httping/httping-2.5/
H A Dmain.c179 printf("\"total_ms\" : \"%e\", ", t_total -> cur); in emit_json()
859 …double sd_final = t_total -> n ? sqrt((t_total -> sd / (double)t_total -> n) - pow(avg_httping_tim… in stats_line()
1045 init_statst(&t_total); in main()
2131 update_statst(&t_total, dummy_ms); in main()
2157 printf("%f", t_total.cur); in main()
2174 else if (!quiet && !nagios_mode && t_total.cur >= offset_show) in main()
2215 if (offset_red > 0.0 && t_total.cur >= offset_red) in main()
2217 else if (offset_yellow > 0.0 && t_total.cur >= offset_yellow) in main()
2228 tot_str = format_value(t_total.cur, 6, 2, abbreviate); in main()
2383 reset_statst_cur(&t_total); in main()
[all …]
/dports/cad/opencascade/opencascade-7.6.0/src/Approx/
H A DApprox_CurvilinearParameter.cxx51 Standard_Real t_total, t_init, t_approx; variable
139 t_total = t_init = t_approx = t_uparam = 0; in Approx_CurvilinearParameter()
199 ResultChron(chr_total, t_total); in Approx_CurvilinearParameter()
201 std::cout<<" total reparametrization time = "<<t_total<<std::endl; in Approx_CurvilinearParameter()
277 t_total = t_init = t_approx = t_uparam = 0; in Approx_CurvilinearParameter()
360 ResultChron(chr_total, t_total); in Approx_CurvilinearParameter()
362 std::cout<<" total reparametrization time = "<<t_total<<std::endl; in Approx_CurvilinearParameter()
442 t_total = t_init = t_approx = t_uparam = 0; in Approx_CurvilinearParameter()
533 ResultChron(chr_total, t_total); in Approx_CurvilinearParameter()
535 std::cout<<" total reparametrization time = "<<t_total<<std::endl; in Approx_CurvilinearParameter()

12345