Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rng_algorithm (0.3 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 (1)
  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/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)
  4. 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)
Back to top