Browse Source

Merge pull request #5214 from martin-frbg/issue5200

Remove spurious cast from Alpha and Cell's DEFAULT_ALIGN
tags/v0.3.30
Martin Kroeker GitHub 7 months ago
parent
commit
de2380e5a6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      param.h

+ 2
- 2
param.h View File

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


#define GEMM_DEFAULT_OFFSET_A 512 #define GEMM_DEFAULT_OFFSET_A 512
#define GEMM_DEFAULT_OFFSET_B 512 #define GEMM_DEFAULT_OFFSET_B 512
#define GEMM_DEFAULT_ALIGN (BLASLONG)0x0ffffUL
#define GEMM_DEFAULT_ALIGN 0x0ffffUL


#define SGEMM_DEFAULT_UNROLL_M 4 #define SGEMM_DEFAULT_UNROLL_M 4
#define SGEMM_DEFAULT_UNROLL_N 4 #define SGEMM_DEFAULT_UNROLL_N 4
@@ -2214,7 +2214,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 8192 #define GEMM_DEFAULT_OFFSET_B 8192
#define GEMM_DEFAULT_ALIGN (BLASLONG)0x0ffffUL
#define GEMM_DEFAULT_ALIGN 0x0ffffUL


#define SGEMM_DEFAULT_UNROLL_M 16 #define SGEMM_DEFAULT_UNROLL_M 16
#define SGEMM_DEFAULT_UNROLL_N 4 #define SGEMM_DEFAULT_UNROLL_N 4


Loading…
Cancel
Save