Home
last modified time | relevance | path

Searched refs:tiled (Results 1 – 25 of 29) sorted by relevance

12

/external/tensorflow/tensorflow/python/kernel_tests/
Dshape_ops_test.py417 tiled = array_ops.tile(a, [])
418 result = tiled.eval()
420 self.assertEqual([], tiled.get_shape())
429 tiled = array_ops.tile(a, constant_op.constant([1, 4], dtype=dtype))
430 result = tiled.eval()
432 self.assertEqual([4, 4], tiled.get_shape())
439 tiled = array_ops.tile(a, [1, 1])
440 result = tiled.eval()
442 self.assertEqual([4, 1], tiled.get_shape())
449 tiled = array_ops.tile(a, [5, 0])
[all …]
/external/mesa3d/src/gallium/drivers/radeonsi/
Dcik_sdma.c257 struct r600_texture *tiled = src_mode >= RADEON_SURF_MODE_1D ? rsrc : rdst; in cik_sdma_copy_texture() local
258 struct r600_texture *linear = tiled == rsrc ? rdst : rsrc; in cik_sdma_copy_texture()
259 unsigned tiled_level = tiled == rsrc ? src_level : dst_level; in cik_sdma_copy_texture()
261 unsigned tiled_x = tiled == rsrc ? srcx : dstx; in cik_sdma_copy_texture()
263 unsigned tiled_y = tiled == rsrc ? srcy : dsty; in cik_sdma_copy_texture()
265 unsigned tiled_z = tiled == rsrc ? srcz : dstz; in cik_sdma_copy_texture()
267 unsigned tiled_width = tiled == rsrc ? src_width : dst_width; in cik_sdma_copy_texture()
269 unsigned tiled_pitch = tiled == rsrc ? src_pitch : dst_pitch; in cik_sdma_copy_texture()
271 unsigned tiled_slice_pitch = tiled == rsrc ? src_slice_pitch : dst_slice_pitch; in cik_sdma_copy_texture()
273 uint64_t tiled_address = tiled == rsrc ? src_address : dst_address; in cik_sdma_copy_texture()
[all …]
/external/drm_gralloc/
Dgralloc_drm_nouveau.c72 int tiled, scanout; in alloc_bo() local
81 tiled = !(usage & (GRALLOC_USAGE_SW_READ_OFTEN | in alloc_bo()
84 tiled = 0; in alloc_bo()
86 tiled = 1; in alloc_bo()
94 tiled = 1; in alloc_bo()
99 if (tiled) { in alloc_bo()
/external/mesa3d/src/amd/vulkan/
Dradv_formats.c546 VkFormatFeatureFlags linear = 0, tiled = 0, buffer = 0; in radv_physical_device_get_format_properties() local
551 out_properties->optimalTilingFeatures = tiled; in radv_physical_device_get_format_properties()
557 tiled |= VK_FORMAT_FEATURE_STORAGE_IMAGE_BIT; in radv_physical_device_get_format_properties()
569 tiled |= VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT; in radv_physical_device_get_format_properties()
570 tiled |= VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT; in radv_physical_device_get_format_properties()
571 tiled |= VK_FORMAT_FEATURE_BLIT_SRC_BIT | in radv_physical_device_get_format_properties()
578 tiled |= VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT | in radv_physical_device_get_format_properties()
582 tiled |= VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT; in radv_physical_device_get_format_properties()
587 tiled |= VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT | VK_FORMAT_FEATURE_BLIT_DST_BIT; in radv_physical_device_get_format_properties()
590 tiled |= VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BLEND_BIT; in radv_physical_device_get_format_properties()
[all …]
/external/mesa3d/src/intel/vulkan/
Danv_formats.c387 VkFormatFeatureFlags linear = 0, tiled = 0, buffer = 0; in anv_physical_device_get_format_properties() local
391 tiled |= VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT; in anv_physical_device_get_format_properties()
393 tiled |= VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT; in anv_physical_device_get_format_properties()
395 tiled |= VK_FORMAT_FEATURE_BLIT_SRC_BIT | in anv_physical_device_get_format_properties()
408 tiled = get_image_format_properties(&physical_device->info, in anv_physical_device_get_format_properties()
423 tiled &= ~VK_FORMAT_FEATURE_COLOR_ATTACHMENT_BIT & in anv_physical_device_get_format_properties()
433 out_properties->optimalTilingFeatures = tiled; in anv_physical_device_get_format_properties()
/external/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_resource.c358 struct etna_resource *tiled; in etna_resource_from_handle() local
364 tiled = etna_resource(ptiled); in etna_resource_from_handle()
365 tiled->scanout = renderonly_scanout_for_prime(prsc, screen->ro); in etna_resource_from_handle()
366 if (!tiled->scanout) in etna_resource_from_handle()
/external/tensorflow/tensorflow/contrib/seq2seq/python/ops/
Dbeam_search_decoder.py86 tiled = array_ops.tile(array_ops.expand_dims(t, 1), tiling)
87 tiled = array_ops.reshape(tiled,
90 tiled.set_shape(
93 return tiled
/external/libdrm/omap/
Domap_drm.c219 bo->size = round_up(size.tiled.width, PAGE_SIZE) * size.tiled.height; in omap_bo_new_impl()
251 .tiled = { in omap_bo_new_tiled()
Domap_drm.h72 } tiled; /* (for tiled formats) */ member
/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_resource.c276 if (rsc->tiled) { in vc4_resource_transfer_map()
427 if (!rsc->tiled) { in vc4_setup_slices()
528 if (!rsc->tiled) { in get_resource_texture_format()
556 rsc->tiled = false; in vc4_resource_create()
558 rsc->tiled = true; in vc4_resource_create()
604 rsc->tiled = false; in vc4_resource_from_handle()
Dvc4_resource.h60 bool tiled; member
/external/kernel-headers/original/uapi/drm/
Domap_drm.h61 } tiled; /* (for tiled formats) */ member
/external/mesa3d/src/gallium/drivers/ilo/
Dilo_transfer.c87 bool tiled; in resource_get_transfer_method() local
90 tiled = false; in resource_get_transfer_method()
116 tiled = (tex->image.tiling != GEN6_TILING_NONE); in resource_get_transfer_method()
119 if (tiled) in resource_get_transfer_method()
/external/tensorflow/tensorflow/examples/tutorials/deepdream/
DREADME.md10 - producing high-resolution images with tiled computation ([example](http://storage.googleapis.com/…
/external/mesa3d/src/gallium/drivers/i915/
DTODO10 Texture sampling from Y-tiled buffers seems to work, though (save above
/external/deqp/doc/testspecs/GL3/
Dstress.conditional_render.txt27 - For tiled renderers
/external/skqp/gm/
Dmultipicturedraw.cpp387 static void tiled(SkCanvas* finalCanvas, SkMultiPictureDraw* mpd, in tiled() function
426 constexpr PFLayoutMtd gLayoutMthds[] = { simple, tiled };
/external/skia/gm/
Dmultipicturedraw.cpp387 static void tiled(SkCanvas* finalCanvas, SkMultiPictureDraw* mpd, in tiled() function
426 constexpr PFLayoutMtd gLayoutMthds[] = { simple, tiled };
/external/libdrm/intel/tests/
Dgen4-3d.batch-ref.txt25 0x12300060: 0x2c0805ff: 2D, z24s8, pitch = 1536 bytes, tiled
Dgm45-3d.batch-ref.txt25 0x12300060: 0x2c0805ff: 2D, z24s8, pitch = 1536 bytes, tiled
Dgen5-3d.batch-ref.txt27 0x12300068: 0x2c0805ff: 2D, z24s8, pitch = 1536 bytes, tiled, HiZ 0, Separate Stencil 0
Dgen6-3d.batch-ref.txt143 0x12300238: 0x2c6c05ff: 2D, unknown, pitch = 1536 bytes, tiled, HiZ 1, Separate Stencil 1
/external/skia/site/dev/design/
Dpdftheory.md413 we generate will be tiled, so tiling is handled by default. To support
/external/skqp/site/dev/design/
Dpdftheory.md413 we generate will be tiled, so tiling is handled by default. To support
/external/vulkan-validation-layers/layers/
Dvk_validation_error_database.txt1793 …::linearTilingFeatures (for linearly tiled images) or VkFormatProperties::optimalTilingFeatures (f…
1798 …::linearTilingFeatures (for linearly tiled images) or VkFormatProperties::optimalTilingFeatures (f…
1810 …near image) or VkFormatProperties::optimalTilingFeatures(for an optimally tiled image) returned by…
1811 …near image) or VkFormatProperties::optimalTilingFeatures(for an optimally tiled image) returned by…
1843 …::linearTilingFeatures (for linearly tiled images) or VkFormatProperties::optimalTilingFeatures (f…
1869 …::linearTilingFeatures (for linearly tiled images) or VkFormatProperties::optimalTilingFeatures (f…
1916 …::linearTilingFeatures (for linearly tiled images) or VkFormatProperties::optimalTilingFeatures (f…
1939 …::linearTilingFeatures (for linearly tiled images) or VkFormatProperties::optimalTilingFeatures (f…
1944 …::linearTilingFeatures (for linearly tiled images) or VkFormatProperties::optimalTilingFeatures (f…
1975 …::linearTilingFeatures (for linearly tiled images) or VkFormatProperties::optimalTilingFeatures (f…
[all …]

12