Replace implicit cast with an explicit one

This commit is contained in:
Benoit Steiner
2016-05-12 10:40:07 -07:00
parent 2f9401b061
commit a071629fec
2 changed files with 2 additions and 2 deletions

View File

@@ -503,7 +503,7 @@ struct TensorContractionEvaluatorBase
// call gebp (matrix kernel)
// The parameters here are copied from Eigen's GEMM implementation
gebp(output.getSubMapper(i2, j2), blockA, blockB, actual_mc, actual_kc, actual_nc, 1.0, -1, -1, 0, 0);
gebp(output.getSubMapper(i2, j2), blockA, blockB, actual_mc, actual_kc, actual_nc, Scalar(1), -1, -1, 0, 0);
}
}
}