Test mkldnn pack for doubles

This commit is contained in:
Eugene Zhulenev 2018-09-26 18:22:24 -07:00
parent 22ed98a331
commit b314376f9c

View File

@ -127,5 +127,8 @@ static void test_mkldnn_gemm_kernel() {
EIGEN_DECLARE_TEST(cxx11_tensor_contraction_mkldnn) {
CALL_SUBTEST(test_mkldnn_gemm_pack<float>());
CALL_SUBTEST(test_mkldnn_gemm_pack<double>());
// mkldnn has only sgemm (aka gemm for floats).
CALL_SUBTEST(test_mkldnn_gemm_kernel<float>());
}