Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for UNIFORM (0.16 sec)

  1. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    func.func @DontReorderReshapex2Add(%arg0: tensor<1x2x3x4x!quant.uniform<i8:f32, 3.0>>, %arg1: tensor<1x2x3x4x!quant.uniform<i8:f32, 5.0>>) -> tensor<6x4x!quant.uniform<i8:f32, 7.0>> {
      %shape = arith.constant dense<[6, 4]> : tensor<2xi32>
      %0 = "tfl.reshape"(%arg0, %shape) : (tensor<1x2x3x4x!quant.uniform<i8:f32, 3.0>>, tensor<2xi32>) -> tensor<6x4x!quant.uniform<i8:f32, 3.0>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    }
    
    // -----
    
    // CHECK-LABEL: @random_shuffle_1D_10240
    func.func @random_shuffle_1D_10240(%input: tensor<10240xf32>) -> tensor<10240xf32> {
      // CHECK: mhlo.rng{{.*UNIFORM.*}}
      // CHECK: mhlo.sort
      // CHECK: mhlo.rng{{.*UNIFORM.*}}
      // CHECK: mhlo.sort
      %0 = "tf.RandomShuffle"(%input) : (tensor<10240xf32>) -> (tensor<10240xf32>)
      func.return %0: tensor<10240xf32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/tests/legalize_hlo.mlir

    // CHECK-LABEL:   func @const_quant
    // CHECK-NOT:       "tf.Const"
    func.func @const_quant() -> tensor<512x1x!quant.uniform<i8:f32, 0.013133913278579712>> {
      %0 = mhlo.constant() {value = dense<0> : tensor<512x1xi8>} : () -> tensor<512x1x!quant.uniform<i8:f32, 0.013133913278579712>>
      func.return %0 : tensor<512x1x!quant.uniform<i8:f32, 0.013133913278579712>>
    }
    
    // CHECK-LABEL:   func @convert_dot_quant_type(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 07:26:59 UTC 2024
    - 340.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          loc, builder->getI32IntegerAttr(upper_limit));
    
      return builder->create<mhlo::RngOp>(loc, lower, upper, shape_tensor,
                                          ::mlir::mhlo::RngDistribution::UNIFORM);
    }
    
    using WhileBodyFnType = llvm::function_ref<void(
        Location loc, Value iteration, ArrayRef<Value> old_values,
        SmallVectorImpl<Value> *new_values, OpBuilder *builder)>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. doc/go_spec.html

    or assignment are not yet evaluated.
    </li>
    
    <li>
    If one or more of the communications can proceed,
    a single one that can proceed is chosen via a uniform pseudo-random selection.
    Otherwise, if there is a default case, that case is chosen.
    If there is no default case, the "select" statement blocks until
    at least one of the communications can proceed.
    </li>
    
    <li>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top