Commit a19e940f authored by Chao Liu's avatar Chao Liu
Browse files

fix

parent c5e1870a
...@@ -35,7 +35,7 @@ struct BiasReluAdd ...@@ -35,7 +35,7 @@ struct BiasReluAdd
template <typename T1, typename T2> template <typename T1, typename T2>
__device__ constexpr float operator()(float v0, T1 v1, T2 v2) const __device__ constexpr float operator()(float v0, T1 v1, T2 v2) const
{ {
#if 1 #if 0
float a = v1 + v0; float a = v1 + v0;
float b = a > 0 ? a : 0; float b = a > 0 ? a : 0;
float c = b + v2; float c = b + v2;
......
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