HomeSort by relevance Sort by last modified time
    Searched defs:compute (Results 1 - 25 of 591) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeBasicComputeShaderTests.hpp 23 * \brief Compute Shader Tests
31 namespace compute namespace in namespace:vkt
37 } // compute
vktComputeIndirectComputeDispatchTests.hpp 23 * \brief Indirect Compute Dispatch tests
31 namespace compute namespace in namespace:vkt
36 } // compute
vktComputeShaderBuiltinVarTests.hpp 23 * \brief Compute Shader Built-in variable tests.
31 namespace compute namespace in namespace:vkt
34 } // compute
vktComputeTests.hpp 23 * \brief Compute Shader Tests
31 namespace compute namespace in namespace:vkt
36 } // compute
vktComputeTests.cpp 21 * \brief Compute Shader Tests
32 namespace compute namespace in namespace:vkt
52 return createTestGroup(testCtx, "compute", "Compute shader tests", createChildren);
55 } // compute
vktComputeTestsUtil.hpp 23 * \brief Compute tests utility classes
36 namespace compute namespace in namespace:vkt
165 } // compute
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
TweenPath.java 21 public float compute(float t, float[] points, int pointsCnt); method in interface:TweenPath
TweenEquation.java 18 public abstract float compute(float t); method in class:TweenEquation
  /external/deqp/framework/delibs/decpp/
deSha1.cpp 39 Sha1 Sha1::compute (size_t size, const void* data) function in class:de::Sha1
  /external/tensorflow/tensorflow/python/ops/
functional_ops.py 123 def compute(i, a): function in function:foldl
127 lambda i, a: i < n, compute, [i, a],
210 def compute(i, a): function in function:foldr
215 lambda i, a: i > 0, compute, [i, a],
388 def compute(i, tas): function in function:map_fn.input_pack
410 lambda i, _: i < n, compute, (i, accs_ta),
590 def compute(i, a_flat, tas): function in function:scan.input_pack
616 lambda i, _1, _2: i < n, compute, (i, a_flat, accs_ta),
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/paths/
Linear.java 10 public float compute(float t, float[] points, int pointsCnt) { method in class:Linear
CatmullRom.java 10 public float compute(float t, float[] points, int pointsCnt) { method in class:CatmullRom
  /frameworks/support/room/compiler/src/test/data/common/input/
ComputableLiveData.java 6 abstract protected T compute(); method in class:ComputableLiveData
  /external/clang/test/Analysis/inlining/
eager-reclamation-path-notes.c 10 int compute() { function
21 use(p, compute());
33 use2(p, compute());
    [all...]
  /external/dagger2/producers/src/main/java/dagger/producers/internal/
SetProducer.java 66 public ListenableFuture<Set<T>> compute(ProducerMonitor unusedMonitor) { method in class:SetProducer
AbstractProducer.java 31 * An abstract {@link Producer} implementation that memoizes the result of its compute method.
52 protected abstract ListenableFuture<T> compute(ProducerMonitor monitor); method in class:AbstractProducer
63 instance = result = compute(monitor);
65 throw new NullPointerException("compute returned null");
SetOfProducedProducer.java 68 public ListenableFuture<Set<Produced<T>>> compute(ProducerMonitor unusedMonitor) { method in class:SetOfProducedProducer
  /external/eigen/Eigen/src/Eigenvalues/
GeneralizedSelfAdjointEigenSolver.h 35 * Call the function compute() to compute the eigenvalues and eigenvectors of
58 * perform decompositions via compute(). This constructor
70 * intends to perform decompositions via compute(). The \p size
74 * \sa compute() for an example
89 * This constructor calls compute(const MatrixType&, const MatrixType&, int)
90 * to compute the eigenvalues and (if requested) the eigenvectors of the
104 * \sa compute(const MatrixType&, const MatrixType&, int)
110 compute(matA, matB, options);
138 * The implementation uses LLT to compute the Cholesky decompositio
163 compute(const MatrixType& matA, const MatrixType& matB, int options) function in class:Eigen::GeneralizedSelfAdjointEigenSolver
    [all...]
  /external/tensorflow/tensorflow/contrib/rnn/kernels/
blas_gemm.h 40 static void compute(OpKernelContext* ctx, const Device& d, bool transa, function in struct:tensorflow::functor::TensorBlasGemm
56 static void compute(OpKernelContext* ctx, const Device& d, bool transa, function in struct:tensorflow::functor::TensorBlasGemm
  /libcore/ojluni/src/main/java/java/util/concurrent/
RecursiveAction.java 55 * protected void compute() {
88 * protected void compute() {
138 * protected void compute() {
171 protected abstract void compute(); method in class:RecursiveAction
189 compute(); method
RecursiveTask.java 47 * protected Integer compute() {
53 * return f2.compute() + f1.join();
57 * However, besides being a dumb way to compute Fibonacci functions
80 protected abstract V compute(); method in class:RecursiveTask
94 result = compute();
  /prebuilts/misc/common/swig/include/2.0.11/chicken/
swigclosprefix.scm 14 (define-method (compute-getter-and-setter (class <swig-metaclass-$module>) slot allocator)
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IncompleteLU.h 35 compute(mat);
42 IncompleteLU& compute(const MatrixType& mat) function in class:Eigen::IncompleteLU
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RegisterClassInfo.cpp 67 /// compute - Compute the preferred allocation order for RC with reserved
70 void RegisterClassInfo::compute(const TargetRegisterClass *RC) const { function in class:RegisterClassInfo
  /frameworks/support/lifecycle/livedata/src/main/java/androidx/lifecycle/
ComputableLiveData.java 33 * {@link #compute()} if there are active observers (or when they start observing)
61 * @param executor Executor that is used to compute new LiveData values.
93 // compute can happen only in 1 thread but no reason to lock others.
100 value = compute();
106 // release compute lock
110 // check invalid after releasing compute lock to avoid the following scenario.
111 // Thread A runs compute()
114 // Thread B runs, fails to acquire compute lock and skips
115 // Thread A releases compute lock
139 * When there are active observers, this will trigger a call to {@link #compute()}
147 protected abstract T compute(); method in class:ComputableLiveData
    [all...]

Completed in 1212 milliseconds

1 2 3 4 5 6 7 8 91011>>