/external/tensorflow/tensorflow/lite/delegates/gpu/cl/ |
D | environment.cc | 60 case TensorStorageType::IMAGE_BUFFER: in IsGpuSupportsStorageType() 161 TensorStorageType::TEXTURE_ARRAY, TensorStorageType::IMAGE_BUFFER, in GetSupportedStorages() 205 return gpu_info.SupportsImageBuffer() ? TensorStorageType::IMAGE_BUFFER in GetFastestStorageType() 208 return gpu_info.SupportsImageBuffer() ? TensorStorageType::IMAGE_BUFFER in GetFastestStorageType() 223 return TensorStorageType::IMAGE_BUFFER; in GetStorageTypeWithMinimalMemoryConsumption() 230 return gpu_info.SupportsImageBuffer() ? TensorStorageType::IMAGE_BUFFER in GetStorageTypeWithMinimalMemoryConsumption() 233 return gpu_info.SupportsImageBuffer() ? TensorStorageType::IMAGE_BUFFER in GetStorageTypeWithMinimalMemoryConsumption()
|
D | tensor_type_util.cc | 24 case TensorStorageType::IMAGE_BUFFER: in ToObjectType() 41 case TensorStorageType::IMAGE_BUFFER: in ToDataLayout()
|
D | tensor.cc | 43 case TensorStorageType::IMAGE_BUFFER: { in AllocateTensorMemory() 226 if (descriptor.storage_type == TensorStorageType::IMAGE_BUFFER) { in CreateTensor() 243 if (descriptor.storage_type == TensorStorageType::IMAGE_BUFFER) { in CreateTensorShared() 384 } else if (descriptor_.storage_type == TensorStorageType::IMAGE_BUFFER) { in GetGPUResources() 401 case TensorStorageType::IMAGE_BUFFER: in GetFullTensorRegion() 467 case TensorStorageType::IMAGE_BUFFER: in GetMemorySizeInBytes() 480 return descriptor_.storage_type == TensorStorageType::IMAGE_BUFFER in GetMemoryPtr() 508 case TensorStorageType::IMAGE_BUFFER: in WriteDataBHWDC() 567 case TensorStorageType::IMAGE_BUFFER: in ReadDataBHWDC() 615 if (desc.storage_type == TensorStorageType::IMAGE_BUFFER) { in CreateFromDescriptor()
|
D | tensor_test.cc | 169 TensorTests(DataType::FLOAT32, TensorStorageType::IMAGE_BUFFER, &env_)); in TEST_F() 174 TensorTests(DataType::FLOAT16, TensorStorageType::IMAGE_BUFFER, &env_)); in TEST_F()
|
D | serialization.cc | 103 case TensorStorageType::IMAGE_BUFFER: in ToFB() 104 return data::TensorStorageType::IMAGE_BUFFER; in ToFB() 197 case data::TensorStorageType::IMAGE_BUFFER: in ToEnum() 198 return TensorStorageType::IMAGE_BUFFER; in ToEnum()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/task/ |
D | storage_type_util.cc | 37 case TensorStorageType::IMAGE_BUFFER: in CanCreateTensorWithShape() 94 TensorDescriptor{data_type, TensorStorageType::IMAGE_BUFFER, in SelectBestStorageType() 96 return TensorStorageType::IMAGE_BUFFER; in SelectBestStorageType() 130 case TensorStorageType::IMAGE_BUFFER: in SelectBestStorageType()
|
D | tensor_desc.cc | 71 case TensorStorageType::IMAGE_BUFFER: in ToString() 149 } else if (storage_type == TensorStorageType::IMAGE_BUFFER) { in GetGPUResources() 240 storage_type == TensorStorageType::IMAGE_BUFFER) { in PerformReadSelector() 306 storage_type != TensorStorageType::IMAGE_BUFFER) { in PerformWriteLinearSelector() 408 case TensorStorageType::IMAGE_BUFFER: in Read() 431 case TensorStorageType::IMAGE_BUFFER: in Write() 507 storage_type != TensorStorageType::IMAGE_BUFFER) { in PerformGetWHOffsetSelector() 545 case TensorStorageType::IMAGE_BUFFER: in PerformGetHandleSelector() 576 case TensorStorageType::IMAGE_BUFFER: in StorageTypeToAddressType() 593 case TensorStorageType::IMAGE_BUFFER: in GetPhysicalCoordsWHS() [all …]
|
D | serialization_base.fbs | 126 IMAGE_BUFFER = 2,
|
D | tensor_desc.h | 38 IMAGE_BUFFER, enumerator
|
/external/tensorflow/tensorflow/lite/delegates/gpu/metal/ |
D | metal_spatial_tensor.cc | 64 case TensorStorageType::IMAGE_BUFFER: { in AllocateTensorMemory() 78 if (descriptor.storage_type == TensorStorageType::IMAGE_BUFFER) { in AllocateTensorMemory() 288 } else if (descriptor_.storage_type == TensorStorageType::IMAGE_BUFFER) { in GetGPUResources() 304 case TensorStorageType::IMAGE_BUFFER: in GetFullTensorRegion() 364 case TensorStorageType::IMAGE_BUFFER: in GetMemorySizeInBytes() 404 case TensorStorageType::IMAGE_BUFFER: in WriteDataBHWDC() 467 case TensorStorageType::IMAGE_BUFFER: in ReadDataBHWDC() 534 if (descriptor_.storage_type == TensorStorageType::IMAGE_BUFFER) { in SetBufferHandle() 563 if (buffer && descriptor.storage_type == TensorStorageType::IMAGE_BUFFER) { in CreateSharedBufferTensor() 576 if (buffer && descriptor.storage_type == TensorStorageType::IMAGE_BUFFER) { in CreateSharedBufferTensor()
|
D | metal_spatial_tensor_test.mm | 189 auto status = TensorTests(DataType::FLOAT32, TensorStorageType::IMAGE_BUFFER, device); 195 auto status = TensorTests(DataType::FLOAT16, TensorStorageType::IMAGE_BUFFER, device);
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/selectors/ |
D | simple_selectors.cc | 195 src_storage == TensorStorageType::IMAGE_BUFFER) && in SelectWinograd4x4To36() 197 dst_storage == TensorStorageType::IMAGE_BUFFER)) { in SelectWinograd4x4To36() 213 src_storage == TensorStorageType::IMAGE_BUFFER) && in SelectWinograd36To4x4() 215 dst_storage == TensorStorageType::IMAGE_BUFFER)) { in SelectWinograd36To4x4()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/tasks/ |
D | depthwise_conv_3x3_stride_h2.cc | 32 src_tensor_type == TensorStorageType::IMAGE_BUFFER; in GetKernelDepthWiseConv3x3StrideH2() 131 } else if (src_tensor_type == TensorStorageType::IMAGE_BUFFER) { in GetKernelDepthWiseConv3x3StrideH2()
|
D | depthwise_conv_3x3.cc | 65 src_tensor_type == TensorStorageType::IMAGE_BUFFER; in GenerateDepthwiseConvCode() 181 } else if (src_tensor_type == TensorStorageType::IMAGE_BUFFER) { in GenerateDepthwiseConvCode()
|
D | winograd_test_util.cc | 204 {TensorStorageType::BUFFER, TensorStorageType::IMAGE_BUFFER}) { in Winograd4x4To36Test() 275 {TensorStorageType::BUFFER, TensorStorageType::IMAGE_BUFFER}) { in Winograd36To4x4Test()
|
D | convolution_transposed_3x3_thin.cc | 127 } else if (src_tensor_type == TensorStorageType::IMAGE_BUFFER) { in GenerateConvolutionTransposedCode()
|
D | conv_metal.cc | 211 src_storage_type == TensorStorageType::IMAGE_BUFFER; in GenerateConvolution() 214 dst_storage_type == TensorStorageType::IMAGE_BUFFER; in GenerateConvolution() 376 TensorStorageType::IMAGE_BUFFER) { in GenerateConvolution() 433 TensorStorageType::IMAGE_BUFFER) { in GenerateConvolution()
|
D | pooling.cc | 73 op_def.src_tensors[0].storage_type == TensorStorageType::IMAGE_BUFFER; in GetAveragePoolingKernelCode()
|
D | winograd.cc | 249 src_tensor_type == TensorStorageType::IMAGE_BUFFER; in GetWinograd4x4To36TileX6Code()
|
/external/deqp/external/openglcts/modules/common/ |
D | glcExtTokens.cpp | 105 IMAGE_BUFFER = GL_IMAGE_BUFFER; in init() 232 IMAGE_BUFFER = GL_IMAGE_BUFFER_EXT; in init()
|
D | glcExtTokens.hpp | 107 glw::GLenum IMAGE_BUFFER; member
|
/external/tensorflow/tensorflow/lite/delegates/gpu/common/selectors/default/ |
D | dw_convolution_selector.cc | 55 storage_type == TensorStorageType::IMAGE_BUFFER; in SelectDWConvolutionMali()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/metal/kernels/ |
D | test_util.cc | 50 return {TensorStorageType::BUFFER, TensorStorageType::IMAGE_BUFFER, in GetSupportedStorages()
|
D | conv_test.mm | 259 for (auto storage : {TensorStorageType::BUFFER, TensorStorageType::IMAGE_BUFFER}) {
|
/external/deqp/external/openglcts/modules/glesext/texture_buffer/ |
D | esextcTextureBufferActiveUniformValidation.cpp | 172 else if (uniformType == m_glExtTokens.IMAGE_BUFFER) in getUniformTypeName() 649 addTextureParam(m_glExtTokens.IMAGE_BUFFER, GL_R32F, sizeof(glw::GLfloat), "image_buffer", params); in configureParams()
|