Home
last modified time | relevance | path

Searched refs:flops (Results 1 – 25 of 65) sorted by relevance

123

/external/tensorflow/tensorflow/core/profiler/g3doc/
Dprofile_model_architecture.md48 * It must have `RegisterStatistics('flops')` defined in TensorFlow. tfprof
52 * It must have known "shape" information for RegisterStatistics('flops') to
70 _TFProfRoot (--/17.63b flops)
71 gradients/pool_logit/xw_plus_b/MatMul_grad/MatMul (163.84k/163.84k flops)
72 gradients/pool_logit/xw_plus_b/MatMul_grad/MatMul_1 (163.84k/163.84k flops)
73 init/init_conv/Conv2D (113.25m/113.25m flops)
74 pool_logit/xw_plus_b (1.28k/165.12k flops)
75 pool_logit/xw_plus_b/MatMul (163.84k/163.84k flops)
76 unit_1_0/sub1/conv1/Conv2D (603.98m/603.98m flops)
77 unit_1_0/sub2/conv2/Conv2D (603.98m/603.98m flops)
[all …]
/external/pffft/
Dbench_pffft.c454 double show_output(const char *name, int N, int cplx, float flops, float t0, float t1, int max_iter…
456 float mflops = flops/1e6/(t1 - t0 + 1e-16);
458 if (flops != -1)
463 if (flops != -1) {
521 double te, t0, t1, tstop, flops, Tfastest;
582flops = (max_iter*2) * ((cplx ? 5 : 2.5)*N*log((double)N)/M_LN2); /* see http://www.fftw.org/speed…
584 tmeas[TYPE_MFLOPS][ALGO_FFTPACK] = flops/1e6/(t1 - t0 + 1e-16);
586 …tmeas[TYPE_DUR_NS][ALGO_FFTPACK] = show_output("FFTPack", N, cplx, flops, t0, t1, max_iter, tableF…
627flops = (max_iter*2) * ((cplx ? 5 : 2.5)*N*log((double)N)/M_LN2); /* see http://www.fftw.org/speed…
629 tmeas[TYPE_MFLOPS][ALGO_VECLIB] = flops/1e6/(t1 - t0 + 1e-16);
[all …]
/external/eigen/bench/perf_monitoring/
Dgemv_common.h41 double flops = 2. * m * n; in bench() local
42 long rep = std::max(1., std::min(100., up/flops) ); in bench()
43 long tries = std::max(tm0, std::min(tm1, up/flops) ); in bench()
47 return 1e-9 * rep * flops / t.best(); in bench()
Dgemm_common.h39 double flops = 2. * m * n * k; in bench() local
40 long rep = std::max(1., std::min(100., up/flops) ); in bench()
41 long tries = std::max(tm0, std::min(tm1, up/flops) ); in bench()
45 return 1e-9 * rep * flops / t.best(); in bench()
Dlazy_gemm.cpp44 double flops = 2. * m * n * k; in bench() local
45 long rep = std::max(10., std::min(10000., up/flops) ); in bench()
46 long tries = std::max(tm0, std::min(tm1, up/flops) ); in bench()
50 return 1e-9 * rep * flops / t.best(); in bench()
/external/tensorflow/tensorflow/core/kernels/
Deigen_benchmark_cpu_test.cc51 auto flops = in SpatialConvolution() local
53 state.SetItemsProcessed(flops * state.iterations()); in SpatialConvolution()
78 auto flops = in SpatialConvolutionBackwardInput() local
80 state.SetItemsProcessed(flops * state.iterations()); in SpatialConvolutionBackwardInput()
105 auto flops = in SpatialConvolutionBackwardKernel() local
107 state.SetItemsProcessed(flops * state.iterations()); in SpatialConvolutionBackwardKernel()
269 auto flops = num_computed_elements * in CuboidConvolution() local
271 state.SetItemsProcessed(flops * state.iterations()); in CuboidConvolution()
297 auto flops = num_computed_elements * in CuboidConvolutionBackwardInput() local
299 state.SetItemsProcessed(flops * state.iterations()); in CuboidConvolutionBackwardInput()
[all …]
/external/tensorflow/tensorflow/core/profiler/protobuf/
Dop_profile.proto71 // - utilization is flops/time
72 // - wasted potential flops is proportional to time - flops
74 double flops = 2; field
/external/tensorflow/tensorflow/core/profiler/convert/
Dop_metrics_to_record.h34 return SafeDivide(metrics.flops(), PicoToNano(metrics.time_ps())); in GigaFlopsPerSecondPerCore()
109 SafeDivide(metrics.flops(), metrics.bytes_accessed())); in SetRooflineMetrics()
115 : ((metrics.flops() != 0) ? "Compute" : "Unknown")); in SetRooflineMetrics()
Dop_metrics_db_combiner.cc74 dst->set_flops(src.flops() + dst->flops()); in CombineOpMetrics()
/external/tensorflow/tensorflow/core/profiler/utils/
Dop_utils.cc79 uint64 time_ps, uint64 children_time_ps, int64_t flops, in EnterOp() argument
96 op_metrics->set_flops(op_metrics->flops() + flops * occurrences); in EnterOp()
Dop_metrics_db_utils.cc60 tf_op_metrics->set_flops(tf_op_metrics->flops() + in UpdateTfOpMetricsWithDeviceOpMetrics()
61 device_op_metrics.flops()); in UpdateTfOpMetricsWithDeviceOpMetrics()
/external/tensorflow/tensorflow/compiler/xla/tests/
Dxla_hlo_profile_test.cc48 std::string flops; member
57 if (RE2::FullMatch(parsed_line.flops, "[0-9.TGMk]+FLOP/s")) { in HasFlops()
60 << parsed_line.flops << "'"; in HasFlops()
65 << parsed_line.flops << "'"; in HasFlops()
110 &parsed_line.usec, &parsed_line.flops, &parsed_line.trops,
/external/tensorflow/tensorflow/lite/delegates/gpu/common/task/
Dprofiling_info.cc54 if (dispatch.flops) { in GetDetailedReport()
55 const double giga_flops = dispatch.flops / 1000.0 / 1000.0 / 1000.0; in GetDetailedReport()
/external/tensorflow/tensorflow/python/kernel_tests/math_ops/
Dmatmul_op_test.py190 flops = ops.get_stats_for_node_def(g, op.node_def, "flops").value
192 self.assertEqual(7200, flops)
201 flops = ops.get_stats_for_node_def(g, op.node_def, "flops").value
203 self.assertEqual(7200, flops)
/external/virglrenderer/ci/previous_results/gl_host_softpipe/deqp_gl31/
Dignore_tests.txt1 # Flip-flops between Pass and Fail
/external/virglrenderer/ci/previous_results/es_host_softpipe/deqp_gl30/
Dignore_tests.txt1 # Flip-flops between Pass and Fail
/external/virglrenderer/ci/previous_results/gl_host_llvmpipe/deqp_gl31/
Dignore_tests.txt1 # Flip-flops between Pass and Fail
/external/virglrenderer/ci/previous_results/es_host_llvmpipe/deqp_gl31/
Dignore_tests.txt1 # Flip-flops between Pass and Fail
/external/virglrenderer/ci/previous_results/es_host_softpipe/deqp_gl31/
Dignore_tests.txt1 # Flip-flops between Pass and Fail
/external/virglrenderer/ci/previous_results/gl_host_softpipe/deqp_gl30/
Dignore_tests.txt1 # Flip-flops between Pass and Fail
/external/virglrenderer/ci/previous_results/gl_host_llvmpipe/deqp_gl32/
Dignore_tests.txt1 # Flip-flops between Pass and Fail
/external/virglrenderer/ci/previous_results/gl_host_llvmpipe/deqp_gl30/
Dignore_tests.txt1 # Flip-flops between Pass and Fail
/external/virglrenderer/ci/previous_results/es_host_llvmpipe/deqp_gl30/
Dignore_tests.txt1 # Flip-flops between Pass and Fail
/external/virglrenderer/ci/previous_results/gl_host_softpipe/deqp_gl32/
Dignore_tests.txt1 # Flip-flops between Pass and Fail
/external/virglrenderer/ci/previous_results/es_host_softpipe/deqp_gl32/
Dignore_tests.txt1 # Flip-flops between Pass and Fail

123