HomeSort by relevance Sort by last modified time
    Searched refs:b_value (Results 1 - 15 of 15) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
reference_gemm.h 78 const int32 b_value = static_cast<int32>(b[b_index]) - offset_b; local
79 total += (a_value * b_value);
gemm_functors.h 81 const T2 b_value = b[b_index]; local
82 total += (a_value * b_value);
sparse_tensor_dense_matmul_op_gpu.cu.cc 57 // b_value == (ADJ_B) ? b[j, k] : b[k, j]
58 const T b_value = ldg(b + ((ADJ_B) ? j * b_cols + k : k * b_cols + j)); local
59 CudaAtomicAdd(out_location, a_value * b_value);
betainc_op.cc 95 auto b_value = b.shaped<T, NDIM>(b_shaper.x_reshape()); \
98 BCast::ToIndexArray<NDIM>(a_shaper.x_bcast()), b_value, \
sparse_tensor_dense_matmul_op.cc 278 const T b_value = maybe_adjoint_b(k, n); local
279 out(m, n) += a_value * b_value;
  /external/tensorflow/tensorflow/contrib/seq2seq/python/kernel_tests/
beam_search_ops_test.py 120 b_value = beams_value[max_sequence_lengths[b]:, b, :]
121 self.assertAllClose(b_value, end_token * np.ones_like(b_value))
  /external/python/cpython2/Modules/_ctypes/
ctypes.h 94 union value b_value; member in struct:tagCDataObject
124 union value b_value; member in struct:__anon36575
157 #define _CDataObject_HasExternalBuffer(v) ((v)->b_ptr != (char *)&(v)->b_value)
callproc.c     [all...]
_ctypes.c     [all...]
  /external/python/cpython3/Modules/_ctypes/
ctypes.h 54 union value b_value; member in struct:tagCDataObject
84 union value b_value; member in struct:__anon37194
117 #define _CDataObject_HasExternalBuffer(v) ((v)->b_ptr != (char *)&(v)->b_value)
callproc.c     [all...]
_ctypes.c     [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
algebraic_simplifier.cc 869 int64 b_value = c->literal().GetFirstElement<T>(); local
911 uint64 b_value = c->literal().GetFirstElement<T>(); local
    [all...]
  /external/tensorflow/tensorflow/python/framework/
test_util.py 200 b_value = b.collection_def[k]
207 len(a_value.bytes_list.value), len(b_value.bytes_list.value))
209 b_value.bytes_list.value):
214 tester.assertEquals(a_value, b_value)
    [all...]
  /external/tensorflow/tensorflow/python/ops/
gradients_test.py 421 def _GetFuncGradients(self, f, x_value, b_value):
423 b = constant_op.constant(b_value, name="b")
    [all...]

Completed in 1096 milliseconds