mirror of
https://github.com/immich-app/immich.git
synced 2025-01-21 00:52:43 -05:00
fix variable name
This commit is contained in:
parent
3abe3bec55
commit
d564d69726
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ index 7447113fdf..495aafa200 100644
|
||||||
y_data = reinterpret_cast<HipT*>(p.Y->MutableData<T>());
|
y_data = reinterpret_cast<HipT*>(p.Y->MutableData<T>());
|
||||||
|
|
||||||
- if (!s_.cached_benchmark_bwd_results.contains(x_dims)) {
|
- if (!s_.cached_benchmark_bwd_results.contains(x_dims)) {
|
||||||
+ const std::size_t algo_key = HashConvAlgoKey(x_dims_miopen, w_dims);
|
+ const std::size_t algo_key = HashConvAlgoKey(x_dims, w_dims);
|
||||||
+ if (!s_.cached_benchmark_bwd_results.contains(algo_key)) {
|
+ if (!s_.cached_benchmark_bwd_results.contains(algo_key)) {
|
||||||
IAllocatorUniquePtr<void> algo_search_workspace = GetScratchBuffer<void>(AlgoSearchWorkspaceSize, context->GetComputeStream());
|
IAllocatorUniquePtr<void> algo_search_workspace = GetScratchBuffer<void>(AlgoSearchWorkspaceSize, context->GetComputeStream());
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue