Refactor computeProductBlockingSizes to make room for the possibility of using lookup tables

This commit is contained in:
Benoit Jacob
2015-03-15 18:05:12 -04:00
parent b6b88c0808
commit e56aabf205
5 changed files with 182 additions and 52 deletions

View File

@@ -287,6 +287,14 @@ struct stem_function
typedef std::complex<typename NumTraits<Scalar>::Real> ComplexScalar;
typedef ComplexScalar type(ComplexScalar, int);
};
template <typename LhsScalar,
typename RhsScalar>
struct BlockingSizesLookupTable
{
static const size_t NumSizes = 0;
};
}
} // end namespace Eigen