Home
last modified time | relevance | path

Searched refs:max_iter (Results 1 – 13 of 13) sorted by relevance

/external/eigen/demos/mandelbrot/
Dmandelbrot.cpp37 max_iter = (max_iter / iters_before_test) * iters_before_test; in render()
93 …while(j < max_iter/iters_before_test && pix_dont_diverge.any()); // any() is not yet vectorized by… in render()
98 buffer[4*(pix+i)] = 255*pix_iter[i]/max_iter; in render()
115 max_iter = 128; in run()
116 if(resolution < 1e-4f) max_iter += 128 * ( - 4 - std::log10(resolution)); in run()
154 +QString(", %1 iterations per pixel, ").arg(threads[0]->max_iter) in paintEvent()
Dmandelbrot.h25 int id, max_iter; variable
/external/tensorflow/tensorflow/contrib/solvers/python/kernel_tests/
Dleast_squares_test.py49 max_iter = 20
58 cgls_graph = least_squares.cgls(operator, rhs, tol=tol, max_iter=max_iter)
Dlinear_equations_test.py56 max_iter = 20
81 max_iter=max_iter)
/external/tensorflow/tensorflow/contrib/solvers/python/ops/
Dleast_squares.py32 def cgls(operator, rhs, tol=1e-6, max_iter=20, name="cgls"): argument
81 return math_ops.logical_and(i < max_iter, state.gamma > tol)
Dlinear_equations.py39 max_iter=20, argument
88 return math_ops.logical_and(i < max_iter, linalg_ops.norm(state.r) > tol)
/external/mesa3d/src/compiler/nir/
Dnir_opt_loop_unroll.c454 unsigned max_iter = shader->options->max_unroll_iterations; in is_loop_small_enough_to_unroll() local
456 if (li->trip_count > max_iter) in is_loop_small_enough_to_unroll()
463 li->num_instructions * li->trip_count <= max_iter * 25; in is_loop_small_enough_to_unroll()
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorReductionCuda.h161 Index max_iter = numext::mini<Index>(num_coeffs - first_index, NumPerThread*BlockSize); in FullReductionKernel() local
162 for (Index i = 0; i < max_iter; i+=BlockSize) { in FullReductionKernel()
237 …const Index max_iter = numext::mini<Index>((num_coeffs - first_index) / 2, NumPerThread*BlockSize … in FullReductionKernelHalfFloat() local
238 for (Index i = 0; i < max_iter; i += BlockSize) { in FullReductionKernelHalfFloat()
680 const Index max_iter = num_preserved_coeffs * divup<Index>(num_coeffs_to_reduce, NumPerThread);
681 for (Index i = thread_id; i < max_iter; i += num_threads) {
/external/tensorflow/tensorflow/python/ops/
Dcontrol_flow_ops.py745 max_iter = while_ctxt.maximum_iterations
746 if max_iter is None:
753 max_iter_ctxt = max_iter.op._get_control_flow_context()
758 max_size *= max_iter
764 const_max_iter = tensor_util.constant_value(max_iter)
772 (value_name, max_iter.name, while_ctxt.name, curr_ctxt_name,
/external/e2fsprogs/lib/blkid/
Dprobe.c1475 const size_t max_iter = 10000; in find_exfat_entry_label() local
1478 for (; i < max_iter; ++i) { in find_exfat_entry_label()
/external/tensorflow/tensorflow/contrib/factorization/python/ops/
Dkmeans_test.py545 max_iter=50,
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
Dkmeans_test.py553 max_iter=50,
/external/clang/test/SemaCXX/
Dconstant-expression-cxx11.cpp417 constexpr const char *max_iter(const char *a, const char *b) { in max_iter() function
421 return (a+1 >= b) ? a : max_iter(a, max_element(a+1, b)); in max_element()