MCPcopy Create free account
hub / github.com/amov-lab/Prometheus / sum_array

Function sum_array

Modules/object_detection/src/darknet_lib/src/utils.c:479–485  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

477}
478
479float sum_array(float *a, int n)
480{
481 int i;
482 float sum = 0;
483 for(i = 0; i < n; ++i) sum += a[i];
484 return sum;
485}
486
487float mean_array(float *a, int n)
488{

Callers 11

mean_arrayFunction · 0.85
sample_arrayFunction · 0.85
forward_cost_layerFunction · 0.85
forward_cost_layer_gpuFunction · 0.85
forward_logistic_layerFunction · 0.85
backward_biasFunction · 0.85
rescale_weightsFunction · 0.85
forward_softmax_layerFunction · 0.85
network_loss_dataFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected