Skip to content

Commit

Permalink
Fix ConvCkIgemmFwdV6r1DlopsNchw solver to reflect that it's not dynam…
Browse files Browse the repository at this point in the history
…ic (#2325)
  • Loading branch information
JehandadKhan authored Aug 17, 2023
1 parent 4e3ea83 commit 5c6d974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/miopen/solver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2954,7 +2954,7 @@ struct ConvCkIgemmFwdV6r1DlopsNchw final : ConvTunableSolver<PerformanceConvCkIg
bool IsApplicable(const ConvolutionContext&, const ProblemDescription&) const override;
size_t GetWorkspaceSize(const ConvolutionContext&, const ProblemDescription&) const override;
bool MayNeedWorkspace() const override { return true; }
bool IsDynamic() const override { return true; }
bool IsDynamic() const override { return false; }
PerformanceConvCkIgemmFwdV6r1DlopsNchw
GetDefaultPerformanceConfig(const ConvolutionContext&,
const ProblemDescription&) const override;
Expand Down

0 comments on commit 5c6d974

Please sign in to comment.