DirectSolverOptions#
-
class nvmath.
linalg. DirectSolverOptions( - *,
- allocator: ~nvmath.memory.BaseCUDAMemoryManager | ~nvmath.memory.BaseCUDAMemoryManagerAsync | None = None,
- blocking: ~typing.Literal[True,
- 'auto'] = 'auto',
- logger: ~logging.Logger = <factory>,
- handle: int | None = None,
- inplace_a: bool = False,
- inplace_b: bool = False,
A data class for providing options to
direct_solver()andDirectSolver.- handle#
If
None(the default), the required library handle will be created automatically for the computation. If users wish to manage the library handle themselves, they may provide a cuSOLVER handle, which will be used unless the execution is dispatched to cuBLAS, e.g, for linear equation solver on batched operands. In this case, a cuBLAS handle will be created.- Type:
int | None
- blocking#
A flag specifying the behavior of the stream-ordered functions and methods. When
blockingisTrue, the stream-ordered methods do not return until the operation is complete. Whenblockingis"auto", the methods may execute asynchronously when the inputs are on the GPU, depending on the problem specification and runtime conditions. The stream-ordered methods always block when the operands are on the CPU to ensure that the user doesn’t inadvertently use the result before it becomes available. The default is"auto".- Type:
Literal[True, ‘auto’]
- allocator#
An object that supports the
BaseCUDAMemoryManagerprotocol, used to draw device memory. If an allocator is not provided, a memory allocator from the library package will be used (torch.cuda.caching_allocator_alloc()for PyTorch operands,cupy.cuda.alloc()otherwise).
- logger#
Python Logger object. The root logger will be used if a logger object is not provided.
- Type:
- inplace_a#
Whether LU factorization overwrites the input left-hand side matrix
awith the factors L, D, and U. The default isFalse.This attribute is experimental and potentially subject to future changes.
- Type:
- inplace_b#
Whether the solve overwrites the input right-hand side
bwith the solutionx. The default isFalse.This attribute is experimental and potentially subject to future changes.
- Type:
See also