Click or drag to resize

GraphXlaRngBitGenerator Method

https://www.emgu.com/wiki/index.php/Emgu_TF
Stateless PRNG bit generator.

Namespace:  Emgu.TF
Assembly:  Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntax
public Operation XlaRngBitGenerator(
	Output algorithm,
	Output initial_state,
	Output shape,
	DataType? dtype = null,
	string opName = "XlaRngBitGenerator"
)

Parameters

algorithm
Type: Emgu.TFOutput
Input to the operation: The PRNG algorithm to use, one of tf.random.Algorithm.{PHILOX, THREEFRY, AUTO_SELECT}.
initial_state
Type: Emgu.TFOutput
Input to the operation: Initial state for the PRNG algorithm. For THREEFRY, it should be a u64[2] and for PHILOX a u64[3].
shape
Type: Emgu.TFOutput
Input to the operation: The output shape of the generated data.
dtype (Optional)
Type: SystemNullableDataType
The type of the tensor.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] output_key(type: DtUint64). [1] output(type: DtInvalid).
See Also