0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-31 00:43:56 -05:00

fix variable name

This commit is contained in:
mertalev 2024-12-30 20:25:29 -05:00
parent 3abe3bec55
commit d564d69726
No known key found for this signature in database
GPG key ID: 3A2B5BFC678DBC80

View file

@ -126,7 +126,7 @@ index 7447113fdf..495aafa200 100644
y_data = reinterpret_cast<HipT*>(p.Y->MutableData<T>());
- 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)) {
IAllocatorUniquePtr<void> algo_search_workspace = GetScratchBuffer<void>(AlgoSearchWorkspaceSize, context->GetComputeStream());