| /external/armnn/src/backends/backendsCommon/ |
| D | LayerSupportBase.cpp | 85 bool LayerSupportBase::IsActivationSupported(const TensorInfo&, // input in IsActivationSupported() 93 bool LayerSupportBase::IsAdditionSupported(const TensorInfo&, // input0 in IsAdditionSupported() 101 bool LayerSupportBase::IsArgMinMaxSupported(const armnn::TensorInfo&, // input in IsArgMinMaxSupported() 109 bool LayerSupportBase::IsBatchNormalizationSupported(const TensorInfo&, //input in IsBatchNormalizationSupported() 121 bool LayerSupportBase::IsBatchToSpaceNdSupported(const TensorInfo&, // input in IsBatchToSpaceNdSupported() 129 bool LayerSupportBase::IsCastSupported(const TensorInfo&, //input in IsCastSupported() 136 bool LayerSupportBase::IsChannelShuffleSupported(const TensorInfo&, //input in IsChannelShuffleSupported() 144 bool LayerSupportBase::IsComparisonSupported(const TensorInfo&, // input0 in IsComparisonSupported() 153 bool LayerSupportBase::IsConcatSupported(const std::vector<const TensorInfo*>, // inputs in IsConcatSupported() 154 const TensorInfo&, // output in IsConcatSupported() [all …]
|
| D | WorkloadFactoryBase.hpp | 28 std::unique_ptr<ITensorHandle> CreateTensorHandle(const TensorInfo& /*tensorInfo*/, in CreateTensorHandle() argument 32 std::unique_ptr<ITensorHandle> CreateTensorHandle(const TensorInfo& /*tensorInfo*/, in CreateTensorHandle() argument
|
| /external/tensorflow/tensorflow/lite/experimental/acceleration/mini_benchmark/model_modifier/ |
| D | validation_graph_builder.h | 130 struct TensorInfo { struct 131 ~TensorInfo() { std::free(jpeg_buffer_contents); } in ~TensorInfo() argument 133 std::vector<int32_t> entrypoint_inputs; 134 std::vector<int32_t> entrypoint_outputs; 135 std::vector<int32_t> jpeg_images; 140 std::vector<int32_t> quantized_images; 141 std::vector<int32_t> float_images; 143 std::vector<int32_t> main_outputs; // First half of validation_inputs. 144 std::vector<int32_t> validation_inputs; 150 std::vector<int32_t> dequantized_validation_inputs; [all …]
|
| /external/tflite-support/tensorflow_lite_support/codegen/ |
| D | android_java_generator.h | 36 struct TensorInfo { struct 58 std::vector<TensorInfo> inputs; argument
|
| /external/tensorflow/tensorflow/go/ |
| D | signature.go | 87 type TensorInfo struct { struct 88 Name string 89 DType DataType 90 Shape Shape 109 func tensorInfoFromProto(pb *corepb.TensorInfo) TensorInfo {
|
| D | signature_test.go | 171 func diffTensorInfos(a, b TensorInfo) (string, error) {
|
| /external/armnn/include/armnnTestUtils/ |
| D | MockBackend.hpp | 333 bool IsInputSupported(const TensorInfo& /*input*/, in IsInputSupported() argument 339 bool IsOutputSupported(const TensorInfo& /*input*/, in IsOutputSupported() argument 345 bool IsAdditionSupported(const TensorInfo& /*input0*/, in IsAdditionSupported() argument 353 bool IsConvolution2dSupported(const TensorInfo& /*input*/, in IsConvolution2dSupported() argument 357 const Optional<TensorInfo>& /*biases*/, in IsConvolution2dSupported()
|
| /external/ComputeLibrary/src/core/ |
| D | TensorInfo.cpp | 36 TensorInfo::TensorInfo() in TensorInfo() function in arm_compute::TensorInfo 42 TensorInfo::TensorInfo(const ITensorInfo &info) in TensorInfo() function in arm_compute::TensorInfo 63 TensorInfo::TensorInfo(const TensorInfo &info) in TensorInfo() function in arm_compute::TensorInfo 83 TensorInfo::TensorInfo(Format format) in TensorInfo() function in arm_compute::TensorInfo 88 TensorInfo::TensorInfo(unsigned int width, unsigned int height, Format format) in TensorInfo() function in arm_compute::TensorInfo 93 TensorInfo::TensorInfo(const TensorShape &tensor_shape, Format format) in TensorInfo() function in arm_compute::TensorInfo 99 TensorInfo::TensorInfo(size_t num_channels, DataType data_type) in TensorInfo() function in arm_compute::TensorInfo 105 TensorInfo::TensorInfo(const TensorShape &tensor_shape, size_t num_channels, DataType data_type) in TensorInfo() function in arm_compute::TensorInfo 111 TensorInfo::TensorInfo(const TensorShape &tensor_shape, size_t num_channels, DataType data_type, Qu… in TensorInfo() function in arm_compute::TensorInfo 118 TensorInfo::TensorInfo(const TensorShape &tensor_shape, size_t num_channels, DataType data_type, Da… in TensorInfo() function in arm_compute::TensorInfo
|
| /external/tensorflow/tensorflow/lite/experimental/acceleration/mini_benchmark/ |
| D | embedder.cc | 136 struct TensorInfo { struct in tflite::acceleration::__anon4fbff73f0111::ValidationGraphBuilder 137 std::vector<int32_t> entrypoint_inputs; 138 std::vector<int32_t> entrypoint_outputs; 139 std::vector<int32_t> jpeg_images; 144 std::vector<int32_t> quantized_images; 145 std::vector<int32_t> float_images; 147 std::vector<int32_t> main_outputs; // First half of validation_inputs. 148 std::vector<int32_t> validation_inputs; 154 std::vector<int32_t> dequantized_validation_inputs; 155 std::vector<int32_t> validation_outputs; [all …]
|
| /external/tensorflow/tensorflow/lite/experimental/examples/unity/TensorFlowLitePlugin/Assets/TensorFlowLite/SDK/Scripts/ |
| D | Interpreter.cs | 44 public struct TensorInfo { struct in TensorFlowLite.Interpreter 45 public string name { get; internal set; } 46 public DataType type { get; internal set; } 47 public int[] dimensions { get; internal set; } 48 public QuantizationParams quantizationParams { get; internal set; } 50 public override string ToString() { in ToString()
|
| /external/armnn/src/armnn/ |
| D | Tensor.cpp | 341 TensorInfo::TensorInfo() in TensorInfo() function in armnn::TensorInfo 346 TensorInfo::TensorInfo(const TensorShape& shape, in TensorInfo() function in armnn::TensorInfo 359 TensorInfo::TensorInfo(unsigned int numDimensions, in TensorInfo() function in armnn::TensorInfo 371 TensorInfo::TensorInfo(const TensorShape& shape, in TensorInfo() function in armnn::TensorInfo 384 TensorInfo::TensorInfo(unsigned int numDimensions, in TensorInfo() function in armnn::TensorInfo 398 TensorInfo::TensorInfo(const TensorInfo& other) in TensorInfo() function in armnn::TensorInfo
|
| /external/tensorflow/tensorflow/core/kernels/ |
| D | decode_proto_op.cc | 883 struct TensorInfo { in AccumulateFields() struct 884 explicit TensorInfo(Tensor* tensor) { in AccumulateFields() function 906 DataType dtype; in AccumulateFields() 907 int last_dim_size; in AccumulateFields() 908 int stride; in AccumulateFields() 909 uint8* data; in AccumulateFields()
|
| /external/ComputeLibrary/arm_compute/runtime/ |
| D | TensorAllocator.h | 39 class TensorInfo; variable
|
| D | OperatorTensor.h | 36 class TensorInfo; variable
|
| /external/ComputeLibrary/tests/validation/UNIT/ |
| D | TensorInfo.cpp | 39 TEST_SUITE(TensorInfo) in TEST_SUITE() argument
|
| /external/armnn/src/armnn/test/ |
| D | OptimizerTests.cpp | 168 bool IsInputSupported(const TensorInfo& /*input*/, in IsInputSupported() argument 174 bool IsOutputSupported(const TensorInfo& /*input*/, in IsOutputSupported() argument 180 bool IsActivationSupported(const TensorInfo& /*input0*/, in IsActivationSupported() argument
|
| /external/tensorflow/tensorflow/core/protobuf/ |
| D | meta_graph.proto | 214 message TensorInfo { message
|
| /external/armnn/include/armnn/ |
| D | Tensor.hpp | 152 class TensorInfo class
|
| /external/tensorflow/tensorflow/python/compiler/tensorrt/model_tests/ |
| D | model_handler.py | 89 def _generate_random_tensor_v1(tensor_info: meta_graph_pb2.TensorInfo,
|
| /external/armnn/shim/sl/canonical/ |
| D | ConversionUtils.cpp | 963 bool SetupAndTrackLayerOutputSlot(const Operation& operation, in SetupAndTrackLayerOutputSlot()
|
| D | ConversionUtils.hpp | 959 inline bool SetupAndTrackLayerOutputSlot( in SetupAndTrackLayerOutputSlot()
|
| /external/armnn/src/backends/reference/ |
| D | RefLayerSupport.cpp | 1622 bool RefLayerSupport::IsInputSupported(const TensorInfo& /*input*/, in IsInputSupported() argument 2089 bool RefLayerSupport::IsOutputSupported(const TensorInfo& /*output*/, in IsOutputSupported() argument
|
| /external/tensorflow/tensorflow/lite/delegates/gpu/common/ |
| D | model_builder.cc | 222 struct TensorInfo { struct 223 std::vector<std::pair<TfLiteNode*, TfLiteRegistration*>> producers; 224 std::vector<std::pair<TfLiteNode*, TfLiteRegistration*>> consumers;
|
| /external/android-nn-driver/ |
| D | ConversionUtils.hpp | 1461 bool SetupAndTrackLayerOutputSlot(const HalOperation& operation, in SetupAndTrackLayerOutputSlot() 1580 bool SetupAndTrackLayerOutputSlot(const HalOperation& operation, in SetupAndTrackLayerOutputSlot()
|