Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jun 24, 2024
1 parent fa12a91 commit 8a67487
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/tvm/scheme/internal/CompiledAssignment.h
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ class WeightMultBase<NONE>
public:
static const bool useArg = false;

WeightMultBase(NoArg){};
WeightMultBase(NoArg) {};

template<typename T>
const T & applyWeightMult(const T & M)
Expand All @@ -376,7 +376,7 @@ class WeightMultBase<MINUS>
public:
static const bool useArg = false;

WeightMultBase(NoArg){};
WeightMultBase(NoArg) {};

double applyWeightMult(const double & M) { return -M; }

Expand Down Expand Up @@ -408,7 +408,7 @@ template<>
class WeightMultBase<SCALAR>
{
public:
WeightMultBase(const double & s) : s_(s){};
WeightMultBase(const double & s) : s_(s) {};

template<typename T>
decltype(double() * std::declval<T>()) applyWeightMult(const T & M)
Expand Down

0 comments on commit 8a67487

Please sign in to comment.