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

  /external/tensorflow/tensorflow/core/kernels/
gemm_functors.h 74 const T2 b_value = b[b_index]; local
75 total += (a_value * b_value);
reference_gemm.h 78 const int32 b_value = static_cast<int32>(b[b_index]) - offset_b; local
79 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);
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/python/cpython3/Modules/_ctypes/
ctypes.h 54 union value b_value; member in struct:tagCDataObject
84 union value b_value; member in struct:__anon33244
117 #define _CDataObject_HasExternalBuffer(v) ((v)->b_ptr != (char *)&(v)->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:__anon32650
157 #define _CDataObject_HasExternalBuffer(v) ((v)->b_ptr != (char *)&(v)->b_value)

Completed in 88 milliseconds