mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-25 22:26:24 +00:00
[ROCm] change miopen_conv_use_max_workspace=true (#14982)
Change miopen_conv_use_max_workspace=true to get best algorithm during `miopenFindConvolutionForwardAlgorithm` process.
This commit is contained in:
parent
448e989df8
commit
c55f347689
1 changed files with 4 additions and 1 deletions
|
|
@ -56,7 +56,10 @@ struct ROCMExecutionProviderInfo {
|
|||
// arena config.
|
||||
OrtArenaCfg* default_memory_arena_cfg{nullptr};
|
||||
ROCMExecutionProviderExternalAllocatorInfo external_allocator_info{};
|
||||
bool miopen_conv_use_max_workspace{false};
|
||||
|
||||
// By default, try to use as much as possible memory for algo search.
|
||||
// If set to false, use fix workspace size (32M) for Conv algo search, the final algo might not be the best.
|
||||
bool miopen_conv_use_max_workspace{true};
|
||||
|
||||
rocm::TunableOpInfo tunable_op{};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue