"src/include/gridwise_direct_convolution_1.cuh" did not exist on "99d05ba77f6b075852d165d93926dc67cf0cad86"
Commit 4263fdcb authored by Khalique's avatar Khalique
Browse files

formatting

parent 45665c93
...@@ -71,8 +71,10 @@ struct lrn ...@@ -71,8 +71,10 @@ struct lrn
template <class Self, class F> template <class Self, class F>
static auto reflect(Self& self, F f) static auto reflect(Self& self, F f)
{ {
return pack( return pack(f(self.alpha, "alpha"),
f(self.alpha, "alpha"), f(self.beta, "beta"), f(self.bias, "bias"), f(self.size, "size")); f(self.beta, "beta"),
f(self.bias, "bias"),
f(self.size, "size"));
} }
shape compute_shape(std::vector<shape> inputs) const shape compute_shape(std::vector<shape> inputs) const
...@@ -80,7 +82,6 @@ struct lrn ...@@ -80,7 +82,6 @@ struct lrn
check_shapes{inputs, *this}.has(1); check_shapes{inputs, *this}.has(1);
return inputs.front(); return inputs.front();
} }
}; };
struct convolution struct convolution
......
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