mirror of https://github.com/google/gemma.cpp.git
Merge pull request #432 from ufownl:bugfix/compress_weights_ce
PiperOrigin-RevId: 688126076
This commit is contained in:
commit
054935d24b
|
|
@ -444,8 +444,10 @@ class CompressStats {
|
||||||
char padding_[64]; // prevent false sharing
|
char padding_[64]; // prevent false sharing
|
||||||
};
|
};
|
||||||
#else
|
#else
|
||||||
|
class DistortionStats;
|
||||||
|
|
||||||
struct CompressStats {
|
struct CompressStats {
|
||||||
void Notify(...) {}
|
void Notify(const DistortionStats&) {}
|
||||||
void NotifyIn(int) {}
|
void NotifyIn(int) {}
|
||||||
void Assimilate(const CompressStats&) {}
|
void Assimilate(const CompressStats&) {}
|
||||||
void PrintAll() {}
|
void PrintAll() {}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue