HomeSort by relevance Sort by last modified time
    Searched defs:Tile (Results 1 - 11 of 11) sorted by null

  /external/tensorflow/tensorflow/compiler/xla/client/
sharding_builder.cc 35 OpSharding Tile(const Shape& tile_shape,
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
UserCredential.h 279 EFI_CREDENTIAL_TILE Tile;
UserCredential2.h 300 EFI_CREDENTIAL2_TILE Tile;
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_sharding.h 43 // Creates a trivial sharding that replicates a maximal tile across all
47 // Creates a sharding that emulates device placement; a tile shape equal to
48 // the input shape (one tile) assigned to a single device.
53 static HloSharding Tile(const Array<int64>& tile_assignment) {
108 // Returns true if the tile size is the same as the input size.
129 // Returns the tile that should be executed on the given device.
133 // Returns the device that should execute the given tile.
139 // tile that should be executed on the given core. This returns the lower
140 // extent of the tile in the input space.
146 // tile that should be executed on the given core. This returns the uppe
    [all...]
  /external/tensorflow/tensorflow/lite/toco/graph_transformations/
resolve_constant_tile.cc 26 // NOTE: the Tile implementation here is taken from tflite's Tile kernel.
72 inline void Tile(const Array& input_array, const Array& multiples_array,
99 // Resolves a constant Tile operation.
139 Tile<ArrayDataType::kFloat>(input_array, multiples_array, &output_array);
142 Tile<ArrayDataType::kUint8>(input_array, multiples_array, &output_array);
145 Tile<ArrayDataType::kInt16>(input_array, multiples_array, &output_array);
148 Tile<ArrayDataType::kInt32>(input_array, multiples_array, &output_array);
151 Tile<ArrayDataType::kInt64>(input_array, multiples_array, &output_array);
154 Tile<ArrayDataType::kComplex64>(input_array, multiples_array
    [all...]
  /external/tensorflow/tensorflow/lite/kernels/
tile.cc 26 namespace tile { namespace in namespace:tflite::ops::builtin
67 context, "Multipliers of type '%s' are not supported by tile.",
117 void Tile(const TfLiteIntArray& in_dimensions, const TfLiteTensor* in_data,
150 "Multipliers of type '%s' are not supported by tile.",
174 Tile<float>(*(input->dims), input, multipliers, output);
177 Tile<uint8_t>(*(input->dims), input, multipliers, output);
180 Tile<int32_t>(*(input->dims), input, multipliers, output);
183 Tile<int64_t>(*(input->dims), input, multipliers, output);
186 Tile<bool>(*(input->dims), input, multipliers, output);
189 context->ReportError(context, "Type '%s' is not supported by tile."
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/
layout.h 30 // Describes a tile used in tiling-based layout. Refer to
33 class Tile {
35 Tile() = default;
36 explicit Tile(absl::Span<const int64> dimensions)
39 // De/Serialize a Tile to and from a TileProto.
40 static Tile CreateFromProto(const TileProto& tile_proto) {
41 return Tile(AsInt64Slice(tile_proto.dimensions()));
45 bool operator==(const Tile& other) const {
48 bool operator!=(const Tile& other) const { return !(*this == other); }
52 // Returns the bound of the tile in the given dimension index
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
tile_ops.cc 51 struct Tile {
168 functor::Tile<Device, T, Tmultiples>()(context->eigen_device<Device>(),
393 // passed to the original Tile op.
523 REGISTER_KERNEL_BUILDER(Name("Tile")
528 REGISTER_KERNEL_BUILDER(Name("Tile")
546 REGISTER_KERNEL_BUILDER(Name("Tile") \
552 REGISTER_KERNEL_BUILDER(Name("Tile") \
594 REGISTER_KERNEL_BUILDER(Name("Tile") \
600 REGISTER_KERNEL_BUILDER(Name("Tile") \
  /external/tensorflow/tensorflow/lite/toco/tflite/
operator.cc 814 class Tile
    [all...]
  /external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/
SubsamplingScaleImageView.java 148 // Map of zoom level to tile grid
149 private Map<Integer, List<Tile>> tileMap;
151 // Overlay tile boundaries and other info
227 // Tile and image decoding
463 // Load the bitmap using tile decoding.
532 for (Map.Entry<Integer, List<Tile>> tileMapEntry : tileMap.entrySet()) {
533 for (Tile tile : tileMapEntry.getValue()) {
534 tile.visible = false;
535 if (tile.bitmap != null)
1502 Tile tile = new Tile(); local
1640 Tile tile = tileRef.get(); local
1674 final Tile tile = tileRef.get(); local
    [all...]
  /external/tensorflow/tensorflow/go/op/
wrappers.go     [all...]

Completed in 701 milliseconds