Browse Source

[win/arm64]: Explicit casting for GMEMM_DEFAULT_ALIGN to create 64-bit value

Win64 uses LLP64 datamodel and unsigned long is only 32-bit. For 64-bit
architecture we need 64-bit mask to correctly generate address
tags/v0.3.18
Niyas Sait 4 years ago
parent
commit
d1ed72fa87
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      param.h

+ 1
- 1
param.h View File

@@ -2955,7 +2955,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


#define GEMM_DEFAULT_OFFSET_A 0 #define GEMM_DEFAULT_OFFSET_A 0
#define GEMM_DEFAULT_OFFSET_B 0 #define GEMM_DEFAULT_OFFSET_B 0
#define GEMM_DEFAULT_ALIGN 0x03fffUL
#define GEMM_DEFAULT_ALIGN (BLASULONG)0x03fffUL


#define SYMV_P 16 #define SYMV_P 16




Loading…
Cancel
Save