mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-14 12:46:00 +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)
|
// call gebp (matrix kernel)
|
||||||
// The parameters here are copied from Eigen's GEMM implementation
|
// 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,
|
gebp(output_mapper, blockA, blockB, actual_mc, actual_kc, actual_nc,
|
||||||
Scalar(1), -1, -1, 0, 0);
|
Scalar(1), -1, -1, 0, 0);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user