/external/tensorflow/tensorflow/core/profiler/g3doc/ |
D | profile_model_architecture.md | 59 * If no RunMetadata is provided, tfprof counts float_ops of each graph node 62 RunMetadata is provided, tfprof calculates float_ops as float_ops * 68 tfprof> scope -min_float_ops 1 -select float_ops -account_displayed_op_only 69 node name | # float_ops 82 tfprof> op -min_float_ops 1 -select float_ops -account_displayed_op_only -order_by float_ops 83 node name | # float_ops 84 Conv2D 17.63b float_ops (100.00%, 100.00%) 85 MatMul 491.52k float_ops (0.00%, 0.00%) 86 BiasAdd 1.28k float_ops (0.00%, 0.00%)
|
D | options.md | 101 …bytes|residual_bytes|output_bytes|micros|accelerator_micros|cpu_micros|params|float_ops|occurrence] 125 [bytes|peak_bytes|residual_bytes|output_bytes|micros|accelerator_micros|cpu_micros|params|float_ops…
|
D | command_line.md | 151 # [bytes|micros|params|float_ops|occurrence|tensor_value|device|op_types]
|
/external/tensorflow/tensorflow/python/profiler/ |
D | tfprof_logger.py | 108 entry.float_ops = int(stats.value) 176 if entry.float_ops > 0 and all_ops[op_name].float_ops == 0: 177 all_ops[op_name].float_ops = entry.float_ops
|
/external/tensorflow/tensorflow/core/profiler/internal/ |
D | tfprof_node_show.cc | 42 mutable_proto()->set_float_ops(node->float_ops(step)); in ReInit() 109 proto().float_ops()); in AddSelfToTotalStats() 160 mutable_proto()->set_float_ops(node->float_ops()); in ReInit() 216 proto().float_ops()); in AddSelfToTotalStats()
|
D | tfprof_node.h | 355 void AddFloatOps(int64_t float_ops) { node_.set_float_ops(float_ops); } in AddFloatOps() argument 677 int64_t float_ops(int64_t step) const { in float_ops() function 680 return node_.float_ops(); in float_ops() 683 return node_.float_ops() * run_count(step); in float_ops() 812 float_ops_ += node->float_ops(step); in SnapshotNodes() 848 int64_t float_ops() const { return float_ops_; } in float_ops() function
|
D | tfprof_show.cc | 86 node->proto().float_ops() < opts.min_float_ops || in ShouldShow() 167 fops = FormatNumber(node->proto().float_ops()) + "/" + fops; in FormatNode()
|
D | tfprof_op.cc | 283 pct = 100.0 * node->proto().float_ops() / root->proto().total_float_ops(); in FormatNode() 288 FormatNumber(node->proto().float_ops()), in FormatNode()
|
D | tfprof_stats.cc | 255 if (entry.float_ops()) { in AddOpLogProto() 256 node->second->AddFloatOps(entry.float_ops()); in AddOpLogProto()
|
D | tfprof_code.cc | 228 sample_pb->mutable_value()->Add(gn->float_ops(node->node->step())); in Add() 679 fops = FormatNumber(node->proto().float_ops()) + "/" + fops; in FormatNode()
|
/external/tensorflow/tensorflow/core/profiler/ |
D | tfprof_log.proto | 31 // float_ops is filled by tfprof Python API when called. It requires the 34 int64 float_ops = 2; field 89 int64 float_ops = 8; field
|
D | tfprof_output.proto | 43 int64 float_ops = 13; field 105 int64 float_ops = 5; field
|
/external/ComputeLibrary/src/core/utils/helpers/ |
D | float_ops.h | 31 namespace float_ops
|
/external/ComputeLibrary/src/gpu/cl/kernels/ |
D | ClGemmMatrixMultiplyReshapedOnlyRhsMMULKernel.cpp | 111 if(src2 != nullptr && !(helpers::float_ops::is_zero(beta))) in validate_arguments() 238 …build_opts.add_option_if(!(helpers::float_ops::is_one(alpha)), "-DALPHA=" + float_to_string_with_f… in configure() 240 build_opts.add_option_if(helpers::float_ops::is_one(beta), "-DUNIT_BETA"); in configure()
|
D | ClGemmMatrixMultiplyReshapedKernel.cpp | 111 if(src2 != nullptr && !(helpers::float_ops::is_zero(beta))) in validate_arguments() 238 …build_opts.add_option_if(!(helpers::float_ops::is_one(alpha)), "-DALPHA=" + float_to_string_with_f… in configure() 240 build_opts.add_option_if(helpers::float_ops::is_one(beta), "-DUNIT_BETA"); in configure()
|
D | ClGemmMatrixMultiplyNativeKernel.cpp | 114 if(src2 != nullptr && !(helpers::float_ops::is_zero(beta))) in validate_arguments() 285 …build_opts.add_option_if(!(helpers::float_ops::is_one(alpha)), "-DALPHA=" + float_to_string_with_f… in configure() 287 build_opts.add_option_if(helpers::float_ops::is_one(beta), "-DUNIT_BETA"); in configure()
|
D | ClGemmMatrixMultiplyReshapedOnlyRhsKernel.cpp | 97 if(src2 != nullptr && !(helpers::float_ops::is_zero(beta))) in validate_arguments() 249 …build_opts.add_option_if(!(helpers::float_ops::is_one(alpha)), "-DALPHA=" + float_to_string_with_f… in configure() 251 build_opts.add_option_if(helpers::float_ops::is_one(beta), "-DUNIT_BETA"); in configure()
|
/external/mesa3d/src/glx/ |
D | indirect_vertex_array.c | 1155 static const uint16_t float_ops[5] = { in __indirect_glVertexPointer() local 1181 opcode = float_ops[size]; in __indirect_glVertexPointer() 1271 static const uint16_t float_ops[5] = { in __indirect_glColorPointer() local 1309 opcode = float_ops[size]; in __indirect_glColorPointer() 1413 static const uint16_t float_ops[5] = { in __indirect_glTexCoordPointer() local 1463 opcode = float_ops[size]; in __indirect_glTexCoordPointer() 1619 static const uint16_t float_ops[5] = { in __indirect_glVertexAttribPointer() local 1698 opcode = float_ops[size]; in __indirect_glVertexAttribPointer()
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.profiler.-multi-graph-node-proto.pbtxt | 60 name: "float_ops"
|
D | tensorflow.profiler.-graph-node-proto.pbtxt | 73 name: "float_ops"
|
/external/tensorflow/tensorflow/python/ops/parallel_for/ |
D | math_test.py | 167 float_ops = [ 200 float_ops += [math_ops.floor_div] 204 float_ops += [safe_zeta] 205 for op in logical_ops + float_ops:
|
/external/clang/test/SemaOpenCL/ |
D | invalid-logical-ops-1.2.cl | 10 kernel void float_ops() {
|
D | invalid-logical-ops-1.1.cl | 9 kernel void float_ops() {
|
/external/ComputeLibrary/src/cpu/kernels/gemm_matrix_mul/generic/neon/ |
D | impl.cpp | 69 const bool multiply_alpha = !(helpers::float_ops::is_one(alpha)); in vector_matrix_multiply_f16() 264 const bool multiply_alpha = !(helpers::float_ops::is_one(alpha)); in vector_matrix_multiply_f32() 494 const bool multiply_alpha = !(helpers::float_ops::is_one(alpha)); in matrix_matrix_multiply_f32() 865 const bool multiply_alpha = !(helpers::float_ops::is_one(alpha)); in matrix_matrix_multiply_f16()
|
/external/ComputeLibrary/src/gpu/cl/operators/ |
D | ClGemm.cpp | 579 const bool fuse_add_c = (!(helpers::float_ops::is_zero(beta)) && c != nullptr); in configure() 631 const bool fuse_add_c = (!(helpers::float_ops::is_zero(beta)) && c != nullptr); in validate()
|