koblas

Uplo

enum Uplo : Enum<Uplo> (source)

Output-triangle selector for LinearAlgebra.syrk.

FULL (the default) writes the complete, exactly symmetric result — the koblas extension over BLAS. LOWER and UPPER follow dsyrk strictly: only the selected triangle (diagonal included) is written and beta-scaled, and the opposite strict triangle is never read or touched.

Entries

Link copied to clipboard

Write the complete, exactly symmetric result; beta scales all of C.

Link copied to clipboard

Standard dsyrk with uplo = L: write and beta-scale the lower triangle only.

Link copied to clipboard

Standard dsyrk with uplo = U: write and beta-scale the upper triangle only.

Properties

entries

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

Link copied to clipboard
expect val name: String
Link copied to clipboard
expect val ordinal: Int

Functions

valueOf

fun valueOf(value: String): Uplo(source)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Throws

if this enum type has no constant with the specified name

values

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.