diff --git a/lib/dslash_gamma_helper.cu b/lib/dslash_gamma_helper.cu index 2824776915..9d53ffbd32 100644 --- a/lib/dslash_gamma_helper.cu +++ b/lib/dslash_gamma_helper.cu @@ -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(); } }; @@ -86,12 +85,11 @@ namespace quda { void apply(const qudaStream_t &stream) { TuneParam tp = tuneLaunch(*this, getTuning(), getVerbosity()); - launch(tp, stream, GammaArg(out, in, d, kappa, mu, epsilon, dagger, type)); + launch(tp, stream, GammaArg(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(); } };