Commit 174b9c1d authored by wky's avatar wky Committed by binmakeswell
Browse files

fix format (#574)

parent dfe423ae
...@@ -10,9 +10,8 @@ ...@@ -10,9 +10,8 @@
using namespace std; using namespace std;
template <typename T> template <typename T> class Normalize_Layer {
class Normalize_Layer { public:
public:
struct Config { struct Config {
uint32_t hidden_dim; uint32_t hidden_dim;
bool use_mean; bool use_mean;
...@@ -58,7 +57,7 @@ class Normalize_Layer { ...@@ -58,7 +57,7 @@ class Normalize_Layer {
inline bool use_mean() const { return config_.use_mean; } inline bool use_mean() const { return config_.use_mean; }
private: private:
Config config_; Config config_;
T *vars_; T *vars_;
T *means_; T *means_;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment