Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 115 for tile (0.31 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/internal/work/exec.go

    				return err
    			}
    		case strings.HasSuffix(name, _goos):
    			targ := file[:len(name)-len(_goos)] + "_GOOS." + ext
    			if err := sh.CopyFile(objdir+targ, filepath.Join(p.Dir, file), 0666, true); err != nil {
    				return err
    			}
    		}
    	}
    
    	for _, file := range cfiles {
    		out := file[:len(file)-len(".c")] + ".o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    		MinAge:             time.Duration(0),
    		MaxPerPodContainer: 1,
    		MaxContainers:      -1,
    	}
    	containerGC, err := kubecontainer.NewContainerGC(fakeRuntime, containerGCPolicy, kubelet.sourcesReady)
    	assert.NoError(t, err)
    	kubelet.containerGC = containerGC
    
    	fakeClock := testingclock.NewFakeClock(time.Now())
    	kubelet.backOff = flowcontrol.NewBackOff(time.Second, time.Minute)
    	kubelet.backOff.Clock = fakeClock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. src/cmd/trace/testdata/go122.test

    	pc=5032836 func=33 file=34 line=179
    	pc=5078635 func=35 file=36 line=73
    Stack id=77 nframes=16
    	pc=4756520 func=37 file=25 line=1442
    	pc=4751813 func=38 file=27 line=298
    	pc=4996815 func=39 file=40 line=59
    	pc=5049499 func=41 file=42 line=124
    	pc=5048282 func=43 file=42 line=70
    	pc=5021687 func=44 file=45 line=154
    	pc=5057739 func=46 file=47 line=85
    	pc=5057380 func=48 file=47 line=75
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    				RevokedCertificates: []pkix.RevokedCertificate{
    					{
    						SerialNumber:   big.NewInt(2),
    						RevocationTime: time.Time{}.Add(time.Hour),
    					},
    				},
    				Number:     big.NewInt(5),
    				ThisUpdate: time.Time{}.Add(time.Hour * 24),
    				NextUpdate: time.Time{}.Add(time.Hour * 48),
    			},
    			expectedError: "x509: requested SignatureAlgorithm does not match private key type",
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top