Home
last modified time | relevance | path

Searched refs:total_cost (Results 1 – 8 of 8) sorted by relevance

/external/libhevc/encoder/arm/
Dihevce_coarse_layer_sad_neon.c514 uint16x8_t total_cost; in hme_combine_4x4_sads_and_compute_cost_high_speed_neon() local
529 total_cost = vcombine_u16(vmovn_u32(total_cost_0), vmovn_u32(total_cost_1)); in hme_combine_4x4_sads_and_compute_cost_high_speed_neon()
531 sad_4x8 = vaddq_u16(total_cost, sad_4x8); in hme_combine_4x4_sads_and_compute_cost_high_speed_neon()
532 sad_8x4 = vaddq_u16(total_cost, sad_8x4); in hme_combine_4x4_sads_and_compute_cost_high_speed_neon()
553 uint32x4_t total_cost; in hme_combine_4x4_sads_and_compute_cost_high_speed_neon() local
559 total_cost = vmulq_u32(v_lambda, vmovl_u16(mv_wt)); in hme_combine_4x4_sads_and_compute_cost_high_speed_neon()
560 total_cost = vaddq_u32(total_cost, v_rnd_factor); in hme_combine_4x4_sads_and_compute_cost_high_speed_neon()
561 total_cost = vshlq_u32(total_cost, v_lambda_q_shift); in hme_combine_4x4_sads_and_compute_cost_high_speed_neon()
563 sad_4x8 = vadd_u16(vmovn_u32(total_cost), sad_4x8); in hme_combine_4x4_sads_and_compute_cost_high_speed_neon()
564 sad_8x4 = vadd_u16(vmovn_u32(total_cost), sad_8x4); in hme_combine_4x4_sads_and_compute_cost_high_speed_neon()
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dpopulation_count_op.cc111 const double total_cost = (Eigen::TensorOpCost::CastCost<T, uint8>() + in operator ()() local
113 const int64 shard_cost = (total_cost >= static_cast<double>(kint64max)) in operator ()()
115 : static_cast<int64>(total_cost); in operator ()()
Dcompare_and_bitpack_op.cc153 const double total_cost = 8 * (Eigen::TensorOpCost::AddCost<T>() + in operator ()() local
155 const int64 shard_cost = (total_cost >= static_cast<double>(kint64max)) in operator ()()
157 : static_cast<int64>(total_cost); in operator ()()
Dtopk_op.cc218 const double total_cost = sort_cost + copy_cost; in Compute() local
219 const int64 final_cost = (total_cost >= static_cast<double>(kint64max)) in Compute()
221 : static_cast<int64>(total_cost); in Compute()
/external/tensorflow/tensorflow/python/debug/cli/
Dprofile_analyzer_cli.py645 total_cost = self._get_total_cost(source_annotation[line_index],
647 max_total_cost = max(max_total_cost, total_cost)
691 total_cost = RL(cli_shared.time_to_readable_str(
695 total_cost += " " * (column_widths["total_cost"] - len(total_cost))
696 annotated_line += total_cost
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorCostModel.h83 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE double total_cost( in total_cost() function
205 cost_per_coeff.total_cost(kLoadCycles, kStoreCycles, in totalCost()
/external/brotli/research/
Ddeorummolae.cc220 TextIdx total_cost = 0; in DM_generate() local
291 total_cost, best_cost, total, best_isle.lcp); in DM_generate()
295 total_cost += best_cost; in DM_generate()
/external/python/cpython3/Doc/library/
Ddataclasses.rst29 def total_cost(self) -> float: