Fix merge error.

This commit is contained in:
Rasmus Munk Larsen 2018-09-13 16:42:05 -07:00
parent 0db590d22d
commit 6313dde390
2 changed files with 4 additions and 5 deletions

View File

@ -1205,7 +1205,6 @@ struct TensorEvaluator<const TensorReductionOp<Op, Dims, ArgType, MakePointer_>,
const Index max_coeff_count,
const DSizes<Index, NumInputDims>& input_slice_sizes,
DSizes<Index, NumInputDims>* target_input_block_sizes) const {
typedef typename internal::packet_traits<Scalar>::type Packet;
typedef internal::BlockReducer<Self, Op> BlockReducer;
// TODO(andydavis) Compute reducer overhead correctly for the case where
// we are preserving the inner most dimension, and a single reducer

View File

@ -27,7 +27,7 @@ static array<Index, NumDims> RandomDims(int min_dim = 1, int max_dim = 20) {
dims[i] = internal::random<int>(min_dim, max_dim);
}
return dims;
};
}
template <typename T, int NumDims, typename Device, bool Vectorizable,
bool Tileable, int Layout>
@ -117,7 +117,7 @@ static void test_execute_broadcasting(Device d)
for (Index i = 0; i < dst.dimensions().TotalSize(); ++i) {
VERIFY_IS_EQUAL(dst.coeff(i), golden.coeff(i));
}
};
}
template <typename T, int NumDims, typename Device, bool Vectorizable,
bool Tileable, int Layout>
@ -155,7 +155,7 @@ static void test_execute_chipping_rvalue(Device d) {
TEST_CHIPPING(5)
#undef TEST_CHIPPING
};
}
template <typename T, int NumDims, typename Device, bool Vectorizable,
bool Tileable, int Layout>
@ -207,7 +207,7 @@ static void test_execute_chipping_lvalue(Device d) {
TEST_CHIPPING(5)
#undef TEST_CHIPPING
};
}
template <typename T, int NumDims, typename Device, bool Vectorizable,
bool Tileable, int Layout>