pub enum MathLib {
    ISPCDefault,
    Fast,
    SVML,
    System,
}
Expand description

Different math libraries that ISPC can use for computations.

Variants

ISPCDefault

Use ispc’s built-in math functions (the default).

Fast

Use high-performance but lower-accuracy math functions.

SVML

Use the Intel(r) SVML math libraries.

System

Use the system’s math library (may be quite slow).

Trait Implementations

Converts the given value to a String. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.