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

1 2 3 4

  /external/tensorflow/tensorflow/core/kernels/
l2loss_op.h 28 void Compute(OpKernelContext* context) {}
host_constant_op.cc 42 void _HostConstantOp::Compute(OpKernelContext* ctx) {
mfcc_dct.cc 60 void MfccDct::Compute(const std::vector<double> &input,
bucketize_op.cc 36 static Status Compute(OpKernelContext* context,
62 void Compute(OpKernelContext* context) override {
70 OP_REQUIRES_OK(context, functor::BucketizeFunctor<Device, T>::Compute(
fact_op.cc 80 void Compute(OpKernelContext* context) override = 0;
83 void Compute(OpKernelContext* context, const char* const facts[],
101 void Compute(OpKernelContext* context) override {
102 FactOpKernel::Compute(context, kFacts1, kNum1);
111 void Compute(OpKernelContext* context) override {
112 FactOpKernel::Compute(context, kFacts2, kNum2);
immutable_constant_op.cc 86 void ImmutableConstantOp::Compute(OpKernelContext* ctx) {
matrix_diag_op.h 72 EIGEN_ALWAYS_INLINE static void Compute(
82 EIGEN_ALWAYS_INLINE static void Compute(
mfcc.cc 47 void Mfcc::Compute(const std::vector<double>& spectrogram_frame,
54 mel_filterbank_.Compute(spectrogram_frame, &working);
62 dct_.Compute(working, output);
one_hot_op.h 58 EIGEN_ALWAYS_INLINE static void Compute(
reverse_sequence_op.h 63 EIGEN_ALWAYS_INLINE static void Compute(
searchsorted_op_gpu.cu.cc 62 static Status Compute(OpKernelContext* context,
82 static Status Compute(OpKernelContext* context,
softmax_op_functor.h 44 static void Compute(const Device& d, typename TTypes<T>::ConstMatrix logits,
sparse_xent_op_gpu.cu.cc 41 static inline void Compute(OpKernelContext* ctx,
66 SparseXentEigenImpl<GPUDevice, T, Index>::Compute(ctx, logits, labels,
xent_op.h 53 static void Compute(const Device &d,
bincount_op_gpu.cu.cc 38 static Status Compute(OpKernelContext* context,
cast_op.cc 95 void CastOpBase::Compute(OpKernelContext* ctx) {
  /external/tensorflow/tensorflow/compiler/jit/
xla_device_ops.cc 27 void XlaDeviceDummyOp::Compute(OpKernelContext* ctx) {
37 void XlaAssignVariableOp::Compute(OpKernelContext* context) {
  /external/golang-protobuf/protoc-gen-go/generator/internal/remap/
remap.go 71 // Compute constructs a location mapping from input to output. An error is
73 func Compute(input, output []byte) (Map, error) {
  /external/tensorflow/tensorflow/lite/kernels/internal/
mfcc_dct.cc 56 void MfccDct::Compute(const std::vector<double> &input,
mfcc.cc 46 void Mfcc::Compute(const std::vector<double>& spectrogram_frame,
53 mel_filterbank_.Compute(spectrogram_frame, &working);
61 dct_.Compute(working, output);
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_compilation_device.cc 90 void XlaCompilationDevice::Compute(OpKernel* op_kernel,
92 VLOG(4) << "XlaCompilationDevice::Compute "
110 op_kernel->Compute(context);
  /external/tensorflow/tensorflow/core/common_runtime/sycl/
sycl_device.cc 28 void SYCLDevice::Compute(OpKernel* op_kernel, OpKernelContext* context) {
35 op_kernel->Compute(context);
  /external/tensorflow/tensorflow/python/kernel_tests/
self_adjoint_eig_op_test.py 214 def Compute(x):
228 funcs = [lambda x: Compute(x)[0], lambda x: Compute(x)[1]]
  /art/compiler/optimizing/
nodes_x86.h 22 // Compute the address of the method for X86 Constant area support.
142 template <typename T> static T Compute(T x, T y) { return ~x & y; }
146 Compute(x->GetValue(), y->GetValue()), GetDexPc());
150 Compute(x->GetValue(), y->GetValue()), GetDexPc());
179 auto Compute(T x) const -> decltype(x & (x-1)) {
194 return GetBlock()->GetGraph()->GetIntConstant(Compute(x->GetValue()), GetDexPc());
197 return GetBlock()->GetGraph()->GetLongConstant(Compute(x->GetValue()), GetDexPc());
  /external/gemmlowp/internal/
compute.h 15 // compute.h: the central stage of the Gemm computation, operates
17 // to compute a block of the product.
51 void Compute(int depth) {
106 void Compute(const KernelBase& kernel, const BlockParams& block_params,
109 ScopedProfilingLabel label("compute");
113 impl.Compute(depth);

Completed in 1411 milliseconds

1 2 3 4