Skip to content

Commit

Permalink
Fix bug in GammaApply with introduced in #1416
Browse files Browse the repository at this point in the history
  • Loading branch information
maddyscientist committed Jul 8, 2024
1 parent bb97c6d commit 230d589
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/dslash_gamma_helper.cu
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ namespace quda {

void preTune() { out.backup(); }
void postTune() { out.restore(); }
long long flops() const { return 0; }
long long bytes() const { return out.Bytes() + in.Bytes(); }
};

Expand Down Expand Up @@ -86,12 +85,11 @@ namespace quda {
void apply(const qudaStream_t &stream)
{
TuneParam tp = tuneLaunch(*this, getTuning(), getVerbosity());
launch<TwistGamma>(tp, stream, GammaArg<Float, nColor>(out, in, d, kappa, mu, epsilon, dagger, type));
launch<TwistGamma>(tp, stream, GammaArg<Float, nColor>(out, in, d, 0, kappa, mu, epsilon, dagger, type));
}

void preTune() { out.backup(); }
void postTune() { out.restore(); }
long long flops() const { return 0; }
long long bytes() const { return out.Bytes() + in.Bytes(); }
};

Expand Down

0 comments on commit 230d589

Please sign in to comment.