Skip to content

Commit

Permalink
Fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
maddyscientist committed Dec 20, 2023
1 parent c614356 commit e545e36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/clover_deriv_quda.cu
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace quda {
const GaugeField &oprod;
double coeff;
unsigned int minThreads() const override { return gauge.LocalVolumeCB(); }
unsigned int sharedBytesPerThread() const { return 4 * sizeof(int); } // for thread_array
unsigned int sharedBytesPerThread() const override { return 4 * sizeof(int); } // for thread_array

public:
DerivativeClover(const GaugeField &gauge, GaugeField &force, const GaugeField &oprod, double coeff) :
Expand Down

0 comments on commit e545e36

Please sign in to comment.