Skip to content

Commit 2d7a652

Browse files
author
wanghaox
committed
del framework test_maxout_op
1 parent 25d76bc commit 2d7a652

File tree

2 files changed

+1
-42
lines changed

2 files changed

+1
-42
lines changed

paddle/operators/math/maxouting.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ __global__ void KernelMaxOut(const int nthreads, const T* input_data,
3737
(batch_idx * size + channel_idx * feat_len) * groups + feat_idx;
3838
T ele = static_cast<T>(-FLT_MAX);
3939
for (int g = 0; g < groups; ++g) {
40-
T x=input_data[data_idx + g * feat_len];
40+
T x = input_data[data_idx + g * feat_len];
4141
ele = ele > x ? ele : x;
4242
}
4343
output_data[i] = ele;

python/paddle/v2/framework/tests/test_maxout_op.py

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)