mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
Use actual types instead of the auto keyword to make the code more portable
This commit is contained in:
parent
f197c3f55b
commit
e23c8c294e
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user