mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-14 12:46:00 +08:00
Fix stupid shadow-warnings (with old clang versions)
This commit is contained in:
parent
e54dc24d62
commit
e6667a7060
@ -245,9 +245,9 @@ template <typename ResScalar, typename LhsScalar, typename RhsScalar,
|
|||||||
typename RhsMapper>
|
typename RhsMapper>
|
||||||
struct TensorContractionKernel {
|
struct TensorContractionKernel {
|
||||||
EIGEN_DEVICE_FUNC
|
EIGEN_DEVICE_FUNC
|
||||||
TensorContractionKernel(StorageIndex m, StorageIndex k, StorageIndex n,
|
TensorContractionKernel(StorageIndex m_, StorageIndex k_, StorageIndex n_,
|
||||||
StorageIndex bm, StorageIndex bk, StorageIndex bn)
|
StorageIndex bm_, StorageIndex bk_, StorageIndex bn_)
|
||||||
: m(m), k(k), n(n), bm(bm), bk(bk), bn(bn) {}
|
: m(m_), k(k_), n(n_), bm(bm_), bk(bk_), bn(bn_) {}
|
||||||
|
|
||||||
// Pack blocks of Lhs and Rhs into contiguous blocks in memory.
|
// Pack blocks of Lhs and Rhs into contiguous blocks in memory.
|
||||||
typedef LhsScalar* LhsBlock;
|
typedef LhsScalar* LhsBlock;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user