HomeSort by relevance Sort by last modified time
    Searched refs:IsVector (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
LowLevelTypeImpl.h 45 return LLT{/*isPointer=*/false, /*isVector=*/false, /*NumElements=*/0,
52 return LLT{/*isPointer=*/true, /*isVector=*/false, /*NumElements=*/0,
61 return LLT{/*isPointer=*/false, /*isVector=*/true, NumElements,
68 assert(!ScalarTy.isVector() && "invalid vector element type");
69 return LLT{ScalarTy.isPointer(), /*isVector=*/true, NumElements,
74 explicit LLT(bool isPointer, bool isVector, uint16_t NumElements,
76 init(isPointer, isVector, NumElements, SizeInBits, AddressSpace);
78 explicit LLT() : IsPointer(false), IsVector(false), RawData(0) {}
84 bool isScalar() const { return isValid() && !IsPointer && !IsVector; }
86 bool isPointer() const { return isValid() && IsPointer && !IsVector; }
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
sparse_slice_op.cc 41 OP_REQUIRES(context, TensorShapeUtils::IsVector(input_values.shape()),
45 OP_REQUIRES(context, TensorShapeUtils::IsVector(input_shape.shape()),
49 OP_REQUIRES(context, TensorShapeUtils::IsVector(input_start.shape()),
53 OP_REQUIRES(context, TensorShapeUtils::IsVector(input_size.shape()),
sparse_reorder_op.cc 46 OP_REQUIRES(context, TensorShapeUtils::IsVector(input_val.shape()),
52 OP_REQUIRES(context, TensorShapeUtils::IsVector(input_shape_in.shape()),
listdiff_op.cc 40 OP_REQUIRES(context, TensorShapeUtils::IsVector(x.shape()),
43 OP_REQUIRES(context, TensorShapeUtils::IsVector(y.shape()),
sparse_split_op.cc 42 OP_REQUIRES(context, TensorShapeUtils::IsVector(input_values.shape()),
46 OP_REQUIRES(context, TensorShapeUtils::IsVector(input_shape.shape()),
matching_files_op.cc 39 TensorShapeUtils::IsVector(patterns_t->shape()),
sparse_add_op.cc 51 TensorShapeUtils::IsVector(a_values_t->shape()) &&
52 TensorShapeUtils::IsVector(b_values_t->shape()),
68 TensorShapeUtils::IsVector(a_shape->shape()) &&
69 TensorShapeUtils::IsVector(b_shape->shape()),
sparse_sparse_binary_op_shared.cc 143 TensorShapeUtils::IsVector(a_values_t->shape()) &&
144 TensorShapeUtils::IsVector(b_values_t->shape()),
163 TensorShapeUtils::IsVector(a_shape_t->shape()) &&
164 TensorShapeUtils::IsVector(b_shape_t->shape()),
lookup_table_init_op.cc 62 ctx, TensorShapeUtils::IsVector(keys.shape()),
68 ctx, TensorShapeUtils::IsVector(values.shape()),
reshape_util.cc 41 OP_REQUIRES(context, TensorShapeUtils::IsVector(input_shape_in.shape()),
45 OP_REQUIRES(context, TensorShapeUtils::IsVector(target_shape_in.shape()),
sparse_dense_binary_op_shared.cc 74 TensorShapeUtils::IsVector(values_t->shape()) &&
75 TensorShapeUtils::IsVector(shape_t->shape()),
sparse_slice_grad_op.cc 45 ctx, TensorShapeUtils::IsVector(backprop_val_grad->shape()),
67 OP_REQUIRES(ctx, TensorShapeUtils::IsVector(input_start->shape()),
sparse_softmax_op.cc 54 TensorShapeUtils::IsVector(values_t->shape()) &&
55 TensorShapeUtils::IsVector(shape_t->shape()),
sparse_tensor_dense_add_op.cc 42 if (!TensorShapeUtils::IsVector(a_values->shape()) ||
43 !TensorShapeUtils::IsVector(a_shape->shape())) {
unravel_index_op.cc 43 TensorShapeUtils::IsVector(indices_tensor.shape()) ||
51 ctx, TensorShapeUtils::IsVector(dims_tensor.shape()),
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
dynamic_slice_ops.cc 46 TensorShapeUtils::IsVector(index_shape) &&
80 TensorShapeUtils::IsVector(start_indices_shape) &&
88 TensorShapeUtils::IsVector(size_indices_shape) &&
empty_op.cc 45 ctx, TensorShapeUtils::IsVector(shape_shape),
fill_op.cc 40 ctx, TensorShapeUtils::IsVector(dims_shape),
listdiff_op.cc 41 OP_REQUIRES(context, TensorShapeUtils::IsVector(context->InputShape(0)),
45 OP_REQUIRES(context, TensorShapeUtils::IsVector(context->InputShape(1)),
reverse_op.cc 40 OP_REQUIRES(ctx, TensorShapeUtils::IsVector(revd_shape),
78 OP_REQUIRES(ctx, TensorShapeUtils::IsVector(axes_shape),
slice_op.cc 46 TensorShapeUtils::IsVector(begin_tensor_shape) &&
47 TensorShapeUtils::IsVector(size_tensor_shape) &&
bcast_ops.cc 45 OP_REQUIRES(ctx, TensorShapeUtils::IsVector(in_shape),
94 OP_REQUIRES(ctx, TensorShapeUtils::IsVector(in_shape),
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/utils/
batch_features.cc 82 TensorShapeUtils::IsVector(sparse_float_feature_values.shape()),
86 TensorShapeUtils::IsVector(sparse_float_feature_shape.shape()),
126 TensorShapeUtils::IsVector(sparse_int_feature_values.shape()),
129 TensorShapeUtils::IsVector(sparse_int_feature_shape.shape()),
  /external/v8/src/arm64/
assembler-arm64.cc     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
LowLevelType.cpp 20 if (VT.isVector()) {
28 init(/*isPointer=*/false, /*isVector=*/false, /*NumElements=*/0,
32 IsVector = false;
38 if (isVector())

Completed in 2073 milliseconds

1 2 3 4 5