Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 192 for tile (0.11 sec)

  1. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      // CHECK:  return
    }
    
    func.func @tile(tensor<2x3xf32>, tensor<2xi32>) -> tensor<2x6xf32> {
    ^bb0(%arg0: tensor<2x3xf32>, %arg1: tensor<2xi32>):
      %cst = "tf.Const"() { value = dense<[1, 2]> : tensor<2xi32> } : () -> tensor<2xi32>
      %0 = "tf.Tile"(%arg0, %cst) : (tensor<2x3xf32>, tensor<2xi32>) -> tensor<2x6xf32>
      func.return %0 : tensor<2x6xf32>
    
      // CHECK-LABEL: tile
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        func.return
      }
      func.func @computation(%arg0: tensor<i32>) -> tensor<i32> {
        func.return %arg0: tensor<i32>
      }
    }
    
    // -----
    
    // Test `tf_device.cluster_func` on TPU with pre-split tile sharded input/
    // output using `tf.TPUPartitionedInputV2` and `tf.TPUPartitionedOutputV2`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      %cst = arith.constant dense <[2, 3, 4]> : tensor<3xi32>
      %0 = "tf.Tile"(%arg0, %cst) : (tensor<2x3x?xf32>, tensor<3xi32>) -> tensor<4x9x?xf32>
      func.return
    }
    
    // -----
    
    func.func @testTileMultipleNotRank1(%arg0: tensor<2x3xf32>, %arg1: tensor<1x1xi32>) {
      // expected-error @+1 {{expected multiples to be rank 1, got rank = 2}}
      %0 = "tf.Tile"(%arg0, %arg1) : (tensor<2x3xf32>, tensor<1x1xi32>) -> tensor<2x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

            /*scale=*/1.0 / (1<<(bit_width-1)), /*zero_point=*/0);
      }
      }];
    }
    
    def TFL_TileOp: TFL_Op<"tile", [
        Pure,
        SameOperandsAndResultsScale,
        QuantizableResult,
        PredOpTrait<"input and output must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 0>>]> {
      let summary = "Tile operator.";
      let description = [{
        Constructs a tensor by tiling a given tensor.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0#0 : tensor<? x f32>
    }
    
    // -----
    
    // CHECK-LABEL: testTileF32
    func.func @testTileF32(%arg0: tensor<4 x 1 x f32>, %arg1: tensor<4 x i32>) -> tensor<? x f32> {
      // CHECK: "tfl.tile"(%arg0, %arg1)
      %0 = "tfl.tile"(%arg0, %arg1): (tensor<4 x 1 x f32>, tensor<4 x i32>) -> tensor<? x f32>
      func.return %0 : tensor<? x f32>
    }
    
    // -----
    
    func.func @testEluI32(%arg0: tensor<? x i32>) -> tensor<? x i32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    const ARM_MAGIC_TRAMP_NUMBER = 0x5c000003
    
    // ELF32 File header.
    type Header32 struct {
    	Ident     [EI_NIDENT]byte /* File identification. */
    	Type      uint16          /* File type. */
    	Machine   uint16          /* Machine architecture. */
    	Version   uint32          /* ELF format version. */
    	Entry     uint32          /* Entry point. */
    	Phoff     uint32          /* Program header file offset. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/file-collection-vs-file-tree.png

    file-collection-vs-file-tree.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 185.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

    }
    
    // CHECK-LABEL: testTileMultiplesAllOnes
    func.func @testTileMultiplesAllOnes(%arg0: tensor<2x3xf32>) -> tensor<2x3xf32> {
      %cst = arith.constant dense <[1, 1]> : tensor<2xi32>
      // CHECK: return %arg0
      %0 = "tf.Tile"(%arg0, %cst) : (tensor<2x3xf32>, tensor<2xi32>) -> tensor<2x3xf32>
      func.return %0: tensor<2x3xf32>
    }
    
    // CHECK-LABEL: func @testStaticAndIdenticalTypeForEqualOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/dependency-management-file-dependencies.png

    dependency-management-file-dependencies.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-gc-stress.test

    	pc=4312466 func=25 file=26 line=564
    	pc=4247187 func=27 file=28 line=1333
    	pc=4245160 func=29 file=28 line=1021
    	pc=4502184 func=30 file=31 line=103
    	pc=4804475 func=32 file=33 line=60
    Stack id=26 nframes=7
    	pc=4300939 func=36 file=35 line=1196
    	pc=4297301 func=34 file=35 line=926
    	pc=4312466 func=25 file=26 line=564
    	pc=4247187 func=27 file=28 line=1333
    	pc=4245160 func=29 file=28 line=1021
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
Back to top