Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 281 for seed2 (0.08 sec)

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

      func.return %0 : tensor<10xi64>
    
    // CHECK-LABEL:multinomial_i64
    // CHECK: "tfl.multinomial"(%arg0, %arg1) <{seed = 0 : i64, seed2 = 0 : i64}> : (tensor<2xf32>, tensor<1xi32>) -> tensor<10xi64>
    }
    
    func.func @multinomial_i32(%arg0: tensor<2xf32>, %arg1: tensor<1xi32>) -> tensor<10xi32> {
    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/tf2xla/api/v2/testdata/outside_compilation.mlir

          %outputs_4, %control_5 = tf_executor.island wraps "tf.RandomUniform"(%outputs_2) {device = "", seed = 87654321 : i64, seed2 = 0 : i64} : (tensor<1xi32>) -> tensor<*xf32>
          %outputs_6, %control_7 = tf_executor.island wraps "tf.AddV2"(%arg2, %outputs) {device = ""} : (tensor<i32>, tensor<i32>) -> tensor<*xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:19:45 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema.fbs

    table VarHandleOptions {
      container:string;
      shared_name:string;
    }
    
    table ReadVariableOptions {
    }
    
    table AssignVariableOptions {
    }
    
    table RandomOptions {
      seed: long;
      seed2: long;
    }
    
    table BucketizeOptions {
      boundaries: [float];  // The bucket boundaries.
    }
    
    table GeluOptions {
      approximate: bool;
    }
    
    table DynamicUpdateSliceOptions {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/constant-fold.mlir

    // CHECK-LABEL: func @testSideEffectOp() -> tensor<3xf32>
    func.func @testSideEffectOp() -> tensor<3xf32> {
      %0 = arith.constant dense<[3]> : tensor<1xi32>
      %1 = "tf.RandomUniform"(%0) {device = "", seed = 3 : i64, seed2 = 5 : i64} : (tensor<1xi32>) -> tensor<3xf32>
      // CHECK: %[[random:.*]] = "tf.RandomUniform"
      // CHECK: return %[[random]]
      func.return %1: tensor<3xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 23:22:24 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

          // expected-remark@above {{ID: 0}}
          %1 = "tf.RandomUniform"(%0) {device = "", seed = 3 : i64, seed2 = 5 : i64} : (tensor<1xi32>) -> tensor<3xf32>
          // expected-remark@above {{ID: 1}}
          // expected-remark@above {{Successors: {4}}}
          %2 = "tf.RandomUniform"(%0) {device = "", seed = 3 : i64, seed2 = 5 : i64} : (tensor<1xi32>) -> tensor<3xf32>
          // expected-remark@above {{ID: 2}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/ops.mlir

      %0 = "tfl.random_uniform"(%arg0) {seed = 0 : i64, seed2 = 0 : i64} : (tensor<3xi32>) -> tensor<?x?x?xf32>
      func.return %0 : tensor<?x?x?xf32>
    }
    
    // -----
    
    // CHECK-LABEL: testRandomStandardNormal
    func.func @testRandomStandardNormal(%arg0: tensor<3xi32>) -> tensor<?x?x?xf32> {
      // CHECK: "tfl.random_standard_normal"(%arg0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    lower bound 0 is included in the range, while the upper bound 1 is excluded.
      }];
    
      let arguments = (ins
        TFL_I32Tensor:$shape,
        DefaultValuedOptionalAttr<I64Attr, "0">:$seed,
        DefaultValuedOptionalAttr<I64Attr, "0">:$seed2
      );
    
       let results = (outs
        TFL_TensorOf<[F32]>:$out);
      let hasOptions = 1;
      let customOption = "RandomOptions";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    Outputs random values from a binomial distribution.
    
    The outputs are a deterministic function of `shape`, `seed`, `counts`, and `probs`.
      }];
    
      let arguments = (ins
        Arg<TF_I32OrI64Tensor, [{The shape of the output tensor.}]>:$shape,
        Arg<TF_I32OrI64Tensor, [{2 seeds (shape [2]).}]>:$seed,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Fingerprint2011.java

          byte[] bytes, int offset, long seedA, long seedB, long[] output) {
        long part1 = load64(bytes, offset);
        long part2 = load64(bytes, offset + 8);
        long part3 = load64(bytes, offset + 16);
        long part4 = load64(bytes, offset + 24);
    
        seedA += part1;
        seedB = rotateRight(seedB + seedA + part4, 51);
        long c = seedA;
        seedA += part2;
        seedA += part3;
        seedB += rotateRight(seedA, 23);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Dec 28 17:50:25 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/FarmHashFingerprint64.java

          byte[] bytes, int offset, long seedA, long seedB, long[] output) {
        long part1 = load64(bytes, offset);
        long part2 = load64(bytes, offset + 8);
        long part3 = load64(bytes, offset + 16);
        long part4 = load64(bytes, offset + 24);
    
        seedA += part1;
        seedB = rotateRight(seedB + seedA + part4, 21);
        long c = seedA;
        seedA += part2;
        seedA += part3;
        seedB += rotateRight(seedA, 44);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 01 22:39:48 UTC 2022
    - 7.6K bytes
    - Viewed (0)
Back to top