Home
last modified time | relevance | path

Searched refs:value_t (Results 1 – 18 of 18) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dtensor_array.h463 Tensor* value_t = value->AccessTensor(ctx); in LockedWriteOrAggregate() local
464 if (value_t->dtype() != dtype_) { in LockedWriteOrAggregate()
468 " because the value dtype is ", DataTypeString(value_t->dtype()), in LockedWriteOrAggregate()
471 if (!element_shape_.IsCompatibleWith(value_t->shape())) { in LockedWriteOrAggregate()
475 " because the value shape is ", value_t->shape().DebugString(), in LockedWriteOrAggregate()
480 element_shape_ = PartialTensorShape(value_t->shape().dim_sizes()); in LockedWriteOrAggregate()
500 if (value_t->shape() != t.shape) { in LockedWriteOrAggregate()
505 " but the new input shape is ", value_t->shape().DebugString(), "."); in LockedWriteOrAggregate()
520 existing_t, value_t); in LockedWriteOrAggregate()
528 existing_t, value_t); in LockedWriteOrAggregate()
[all …]
Dtensor_array_ops.cc688 const Tensor* value_t = values[i].AccessTensor(ctx); in Compute() local
690 ctx, value_0_t->shape() == value_t->shape(), in Compute()
694 " has shape: ", value_t->shape().DebugString())); in Compute()
696 value_t->shaped<T, 2>({1, value_t->NumElements()}))); in Compute()
920 const Tensor* value_t = value_tensors[i]; in Compute() local
921 if (value_t->NumElements() > 0) { in Compute()
923 value_t->shaped<T, 2>({1, value_t->NumElements()}))); in Compute()
/external/llvm-project/clang/test/Index/Core/
Dindex-pch.cpp8 using value_t = int; typedef
17 using is_detected = typename DETECTOR<nonesuch, void, _Op, _Args...>::value_t;
/external/rust/crates/criterion/src/
Dlib.rs38 use clap::value_t;
901 let num_seconds = value_t!(matches.value_of("profile-time"), u64).unwrap_or_else(|e| { in configure_from_args()
988 let num_size = value_t!(matches.value_of("sample-size"), usize).unwrap_or_else(|e| { in configure_from_args()
997 let num_seconds = value_t!(matches.value_of("warm-up-time"), u64).unwrap_or_else(|e| { in configure_from_args()
1009 value_t!(matches.value_of("measurement-time"), u64).unwrap_or_else(|e| { in configure_from_args()
1021 value_t!(matches.value_of("nresamples"), usize).unwrap_or_else(|e| { in configure_from_args()
1031 let num_noise_threshold = value_t!(matches.value_of("noise-threshold"), f64) in configure_from_args()
1042 let num_confidence_level = value_t!(matches.value_of("confidence-level"), f64) in configure_from_args()
1053 let num_significance_level = value_t!(matches.value_of("significance-level"), f64) in configure_from_args()
/external/libcxx/include/experimental/
Dtype_traits117 using value_t = false_type;
123 using value_t = true_type;
129 using is_detected = typename _DETECTOR<nonesuch, void, _Op, _Args...>::value_t;
/external/llvm-project/libcxx/include/experimental/
Dtype_traits116 using value_t = false_type;
122 using value_t = true_type;
128 using is_detected = typename _DETECTOR<nonesuch, void, _Op, _Args...>::value_t;
/external/deqp-deps/SPIRV-Tools/source/
Dtext.h37 union value_t { union
/external/swiftshader/third_party/SPIRV-Tools/source/
Dtext.h37 union value_t { union
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/
Dtext.h37 union value_t { union
/external/harfbuzz_ng/src/
Dhb-map.hh162 typedef V value_t; typedef
163 value_t operator [] (K k) const { return get (k); } in operator []()
Dhb-set.hh383 typedef bool value_t; typedef
384 value_t operator [] (hb_codepoint_t k) const { return get (k); } in operator []()
Dhb-ot-layout-common.hh1155 typedef unsigned int value_t; typedef
1156 value_t operator [] (hb_codepoint_t k) const { return get (k); } in operator []()
1687 typedef unsigned int value_t; typedef
1688 value_t operator [] (hb_codepoint_t k) const { return get (k); } in operator []()
/external/tensorflow/tensorflow/core/ops/
Dlookup_ops.cc326 DataType value_t; in MutableHashTableShape() local
327 TF_RETURN_IF_ERROR(c->GetAttr("value_dtype", &value_t)); in MutableHashTableShape()
331 0, std::vector<ShapeAndType>{{key_s, key_t}, {value, value_t}}); in MutableHashTableShape()
/external/rust/crates/clap/src/
Dmacros.rs61 macro_rules! value_t { macro
63 value_t!($m.value_of($v), $t)
/external/tensorflow/tensorflow/core/kernels/data/
Ddataset_utils.cc696 auto value_t = value.flat_outer_dims<type>(); \ in CopyPartialBatch()
698 output_t.template chip<0>(i) = value_t.template chip<0>(i); \ in CopyPartialBatch()
/external/llvm-project/llvm/include/llvm/ADT/
DSTLExtras.h92 using value_t = std::false_type;
96 using value_t = std::true_type;
101 using is_detected = typename detail::detector<void, Op, Args...>::value_t;
/external/tensorflow/tensorflow/python/ops/
Darray_ops.py1352 value_t = ops.convert_to_tensor(values[0])
1353 value_shape = ops.convert_to_tensor(value_t).get_shape()
/external/elfutils/src/
Dreadelf.c11577 typedef union { TYPES; } value_t; in handle_core_item() typedef
11578 void *data = alloca (count * sizeof (value_t)); in handle_core_item()