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

  /device/google/cuttlefish_common/guest/hals/camera/
EmulatedQemuCamera.cpp 74 char first_dim[128]; local
78 strncpy(first_dim, frame_dims, sizeof(first_dim));
79 first_dim[sizeof(first_dim) - 1] = '\0';
80 } else if (static_cast<size_t>(c - frame_dims) < sizeof(first_dim)) {
81 memcpy(first_dim, frame_dims, c - frame_dims);
82 first_dim[c - frame_dims] = '\0';
84 memcpy(first_dim, frame_dims, sizeof(first_dim));
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorIO.h 25 const Index first_dim = Eigen::internal::array_get<0>(tensor.dimensions()); local
27 Map<const Array<Scalar, Dynamic, Dynamic, layout> > matrix(const_cast<Scalar*>(tensor.data()), first_dim, total_size/first_dim); local
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
debug.py 97 first_dim = array_ops.shape(feature)[0]
99 batch_size = first_dim
101 size_checks.append(check_ops.assert_equal(batch_size, first_dim))
  /external/tensorflow/tensorflow/python/estimator/canned/
baseline.py 118 first_dim = array_ops.shape(feature)[0]
120 batch_size = first_dim
122 size_checks.append(check_ops.assert_equal(batch_size, first_dim))
  /external/tensorflow/tensorflow/python/kernel_tests/
scatter_ops_test.py 79 first_dim = 3 * size
80 indices = np.arange(first_dim)
100 old = _AsType(np.random.randn(*((first_dim,) + extra_shape)), vtype)
  /external/tensorflow/tensorflow/python/ops/
array_ops.py     [all...]

Completed in 162 milliseconds