Use actual types instead of the auto keyword to make the code more portable

This commit is contained in:
Benoit Steiner 2018-08-16 10:41:01 -07:00
parent f197c3f55b
commit e23c8c294e

View File

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