Home
last modified time | relevance | path

Searched refs:max_algorithm_count (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/tensorflow/tensorflow/core/kernels/
H A Dmatmul_util.cc110 std::optional<int> max_algorithm_count) { in GetPlanAndAlgorithms() argument
116 if (!max_algorithm_count) max_algorithm_count = max_autotune_algorithm_count; in GetPlanAndAlgorithms()
188 blas_lt->GetMatmulAlgorithms(plan, preference, *max_algorithm_count)); in GetPlanAndAlgorithms()
H A Dmatmul_op_impl.h428 std::optional<int> max_algorithm_count;
429 if (!use_autotune) max_algorithm_count = 1;
432 GetPlanAndAlgorithms(stream, matmul_params, max_algorithm_count);
H A Dmatmul_util.h84 std::optional<int> max_algorithm_count = std::nullopt);
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/stream_executor/cuda/
H A Dcuda_blas_lt.cc229 size_t max_algorithm_count) { in GetMatmulAlgorithms() argument
230 max_algorithm_count = std::min(max_algorithm_count, size_t{INT_MAX}); in GetMatmulAlgorithms()
231 std::vector<cublasLtMatmulHeuristicResult_t> results(max_algorithm_count); in GetMatmulAlgorithms()
242 preference.get(), max_algorithm_count, results.data(), in GetMatmulAlgorithms()
H A Dcuda_blas_lt.h151 size_t max_algorithm_count = 128);