* Optimization: added a specialization of Block for xpr with DirectAccessBit

* some simplifications and fixes in cache friendly products
This commit is contained in:
Gael Guennebaud
2008-07-12 22:59:34 +00:00
parent 1bbaea9885
commit 861d18d553
6 changed files with 198 additions and 80 deletions

View File

@@ -206,6 +206,11 @@ enum {
RowMajor = RowMajorBit
};
enum {
NoDirectAccess = 0,
HasDirectAccess = DirectAccessBit
};
const int FullyCoherentAccessPattern = 0x1;
const int InnerCoherentAccessPattern = 0x2 | FullyCoherentAccessPattern;
const int OuterCoherentAccessPattern = 0x4 | InnerCoherentAccessPattern;