Home
last modified time | relevance | path

Searched refs:ops_count (Results 1 – 4 of 4) sorted by relevance

/external/libopus/silk/
DMacroCount.h33 #define varDefine opus_int64 ops_count = 0;
35 extern opus_int64 ops_count;
38 return(ops_count); in silk_SaveCount()
44 ret = ops_count; in silk_SaveResetCount()
45 ops_count = 0; in silk_SaveResetCount()
50 printf("ops_count = %d \n ", (opus_int32)ops_count); in silk_PrintCount()
56 ops_count += 4; in silk_MUL()
64 ops_count += 4; in silk_MUL_uint()
71 ops_count += 4; in silk_MLA()
79 ops_count += 4; in silk_MLA_uint()
[all …]
/external/tensorflow/tensorflow/lite/toco/
Dtoco_tooling.cc431 int64 ops_count; in TransformWithStatus() local
432 if (EstimateArithmeticOpsCount(*model, &ops_count)) { in TransformWithStatus()
433 LOG(INFO) << "Estimated count of arithmetic ops: " << 1e-9 * ops_count in TransformWithStatus()
436 model->ops_count = ops_count; in TransformWithStatus()
Ddump_graphviz.cc734 int64 ops_count; in GetGraphLabel() local
735 if (EstimateArithmeticOpsCount(model, &ops_count) && (ops_count > 0)) { in GetGraphLabel()
736 attrs["math"] = FormattedNumber(ops_count) + "ops"; in GetGraphLabel()
Dmodel.h2304 int64 ArithmeticOpsCount() const { return ops_count; }
2323 int64 ops_count = 0;