Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isMapped (0.13 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          }
          rewriter.replaceOp(op, current);
          return success();
        }
    
        // The Fisher-Yates algorithm.
    
        // Generate range(n) as the initial value for the indices to be swapped.
        auto indices_type = tensorflow::GetTypeFromTFTensorShape(
            {first_dim_size}, rewriter.getIntegerType(32));
        Value indices = rewriter.create<mhlo::IotaOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    }
    
    // CHECK-LABEL: doNotConvertNonTrivialTransposeToReshape
    func.func @doNotConvertNonTrivialTransposeToReshape(%arg0: tensor<6x6x256x1xf32>) -> tensor<1x6x6x256xf32> {
      // Note: The dimension 0 and 1 are swapped, so it's not trivial
      // (elements are not in the same order).
      %cst = arith.constant dense<[3, 1, 0, 2]> : tensor<4xi32>
      %0 = "tfl.transpose"(%arg0, %cst) : (tensor<6x6x256x1xf32>, tensor<4xi32>) -> tensor<1x6x6x256xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/storage_test.go

    		},
    		update: svcTestCase{
    			svc: svctest.MakeService("foo",
    				svctest.SetTypeLoadBalancer,
    				svctest.SetExternalTrafficPolicy(api.ServiceExternalTrafficPolicyLocal),
    				svctest.SetPorts(
    					// swapped from above
    					svctest.MakeServicePort("q", 5309, intstr.FromInt32(5309), api.ProtocolTCP),
    					svctest.MakeServicePort("p", 867, intstr.FromInt32(867), api.ProtocolTCP))),
    			expectClusterIPs:          true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top