Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for rng_algorithm (0.38 sec)

  1. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo.mlir

    // CHECK-NEXT:  return %0 : tensor<2x3x2xi32>
    // CHECK-NEXT:}
    
    func.func @rng_bit_generator(%arg0: tensor<2xui64>) -> (tensor<2xui64>, tensor<10x12xui32>) {
      %output_state, %output = "vhlo.rng_bit_generator_v1"(%arg0) <{rng_algorithm = #vhlo<rng_algorithm_v1 DEFAULT>}> : (tensor<2xui64>) -> (tensor<2xui64>, tensor<10x12xui32>)
      func.return %output_state, %output : tensor<2xui64>, tensor<10x12xui32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

            algorithm = mlir::vhlo::RngAlgorithmV1::DEFAULT;
        }
        auto attr =
            mlir::vhlo::RngAlgorithmV1Attr::get(builder.getContext(), algorithm);
        attributes.emplace_back(builder.getNamedAttr("rng_algorithm", attr));
        return;
      }
    }
    
    // Pull in FlatBuffer writers for TFLite generated using TableGen
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/kerberos/KerberosConstants.java

        static final int AUTH_DATA_RELEVANT = 1;
        static final int AUTH_DATA_PAC = 128;
    
        static final int DES_ENC_TYPE = 3;
        static final int RC4_ENC_TYPE = 23;
        static final String RC4_ALGORITHM = "ARCFOUR";
        static final String HMAC_ALGORITHM = "HmacMD5";
        static final int CONFOUNDER_SIZE = 8;
        static final int CHECKSUM_SIZE = 16;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 21 21:19:58 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      %cst_0 = "tf.Const"() {value = dense<3> : tensor<i32>} : () -> tensor<i32>
      // CHECK-NEXT: %[[OUTPUT_STATE:.*]], %[[OUTPUT:.*]] = "mhlo.rng_bit_generator"(%[[STATE]]) <{rng_algorithm = #mhlo.rng_algorithm<DEFAULT>}> : (tensor<2xui64>) -> (tensor<2xui64>, tensor<10x12xui32>)
      // CHECK-NEXT: return %[[OUTPUT_STATE]], %[[OUTPUT]] : tensor<2xui64>, tensor<10x12xui32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

            byte[] dataHmac = getHmac(dataChecksum, codeHmac);
            SecretKeySpec dataKey = new SecretKeySpec(dataHmac, KerberosConstants.RC4_ALGORITHM);
    
            cipher = Cipher.getInstance(KerberosConstants.RC4_ALGORITHM);
            cipher.init(Cipher.DECRYPT_MODE, dataKey);
    
            int plainDataLength = data.length - KerberosConstants.CHECKSUM_SIZE;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      tflite::RngAlgorithm algorithm = tflite::RngAlgorithm_DEFAULT;
      switch (rng_op.getRngAlgorithm()) {
        case mlir::stablehlo::RngAlgorithm::THREE_FRY:
          algorithm = tflite::RngAlgorithm_THREEFRY;
          break;
        case mlir::stablehlo::RngAlgorithm::PHILOX:
          algorithm = tflite::RngAlgorithm_PHILOX;
          break;
        case mlir::stablehlo::RngAlgorithm::DEFAULT:
          break;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema.fbs

      update_window_dims: [long];
      inserted_window_dims: [long];
      scatter_dims_to_operand_dims: [long];
      index_vector_dim: long;
      unique_indices: bool;
      update_computation_subgraph_index: int;
    }
    
    enum RngAlgorithm : byte {
      // An algorithm auto-selected by the system according to device type.
      DEFAULT = 0,
      // The Philox algorithm, as described in paper
      // ['Parallel Random Numbers: As Easy as 1, 2, 3']
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      return EnumNamesStablehloComparisonType()[index];
    }
    
    enum RngAlgorithm : int8_t {
      RngAlgorithm_DEFAULT = 0,
      RngAlgorithm_PHILOX = 1,
      RngAlgorithm_THREEFRY = 2,
      RngAlgorithm_MIN = RngAlgorithm_DEFAULT,
      RngAlgorithm_MAX = RngAlgorithm_THREEFRY
    };
    
    inline const RngAlgorithm (&EnumValuesRngAlgorithm())[3] {
      static const RngAlgorithm values[] = {
        RngAlgorithm_DEFAULT,
        RngAlgorithm_PHILOX,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top