Home
last modified time | relevance | path

Searched refs:bflops (Results 1 – 7 of 7) sorted by relevance

/dports/misc/darknet/darknet-darknet_yolo_v4_pre/src/
H A Dmaxpool_layer.c145 l.bflops = (l.size*l.size*l.c * l.out_h*l.out_w) / 1000000000.; in make_maxpool_layer()
148 … -> %4d x%4d x%4d %5.3f BF\n", size, size, stride_x, w, h, c, l.out_w, l.out_h, l.out_c, l.bflops); in make_maxpool_layer()
150 …4d x%4d %5.3f BF\n", size, size, stride_x, stride_y, w, h, c, l.out_w, l.out_h, l.out_c, l.bflops); in make_maxpool_layer()
154 … -> %4d x%4d x%4d %5.3f BF\n", size, size, stride_x, w, h, c, l.out_w, l.out_h, l.out_c, l.bflops); in make_maxpool_layer()
156 … -> %4d x%4d x%4d %5.3f BF\n", size, size, stride_x, w, h, c, l.out_w, l.out_h, l.out_c, l.bflops); in make_maxpool_layer()
158 …4d x%4d %5.3f BF\n", size, size, stride_x, stride_y, w, h, c, l.out_w, l.out_h, l.out_c, l.bflops); in make_maxpool_layer()
H A Dconv_lstm_layer.c202 l.bflops = l.uf->bflops + l.ui->bflops + l.ug->bflops + l.uo->bflops + in make_conv_lstm_layer()
203 l.wf->bflops + l.wi->bflops + l.wg->bflops + l.wo->bflops + in make_conv_lstm_layer()
204 l.vf->bflops + l.vi->bflops + l.vo->bflops; in make_conv_lstm_layer()
206 if(l.peephole) l.bflops += 12 * l.outputs*l.batch / 1000000000.; in make_conv_lstm_layer()
207 else l.bflops += 9 * l.outputs*l.batch / 1000000000.; in make_conv_lstm_layer()
H A Dcrnn_layer.c91 l.bflops = l.input_layer->bflops + l.self_layer->bflops + l.output_layer->bflops; in make_crnn_layer()
H A Dshortcut_layer.c88 l.bflops = l.out_w * l.out_h * l.out_c * l.n / 1000000000.; in make_shortcut_layer()
89 if (l.weights_type) l.bflops *= 2; in make_shortcut_layer()
90 …4d x%4d %5.3f BF\n", l.weights_type, l.weights_normalization, l.out_w, l.out_h, l.out_c, l.bflops); in make_shortcut_layer()
H A Dconvolutional_layer.c649 l.bflops = (2.0 * l.nweights * l.out_h*l.out_w) / 1000000000.; in make_convolutional_layer()
650 if (l.xnor) l.bflops = l.bflops / 32; in make_convolutional_layer()
666 …stderr, "%4d x%4d x%4d -> %4d x%4d x%4d %5.3f BF\n", w, h, c, l.out_w, l.out_h, l.out_c, l.bflops); in make_convolutional_layer()
H A Dparser.c1283 float bflops = 0; in parse_network_cfg_custom() local
1524 if (l.bflops > 0) bflops += l.bflops; in parse_network_cfg_custom()
1576 fprintf(stderr, "Total BFLOPS %5.3f \n", bflops); in parse_network_cfg_custom()
/dports/misc/darknet/darknet-darknet_yolo_v4_pre/include/
H A Ddarknet.h299 float bflops; member