Skip to content

Commit 9175b8b

Browse files
committed
changed long to blaslong for windows compatibility
1 parent 793f2d4 commit 9175b8b

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

kernel/x86_64/sgemv_n_microk_bulldozer-2.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2626
*****************************************************************************/
2727

2828
#define HAVE_KERNEL_16x4 1
29-
static void sgemv_kernel_16x4( long n, float **ap, float *x, float *y) __attribute__ ((noinline));
29+
static void sgemv_kernel_16x4( BLASLONG n, float **ap, float *x, float *y) __attribute__ ((noinline));
3030

31-
static void sgemv_kernel_16x4( long n, float **ap, float *x, float *y)
31+
static void sgemv_kernel_16x4( BLASLONG n, float **ap, float *x, float *y)
3232
{
3333

34-
long register i = 0;
34+
BLASLONG register i = 0;
3535

3636
__asm__ __volatile__
3737
(

kernel/x86_64/sgemv_n_microk_haswell-2.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2626
*****************************************************************************/
2727

2828
#define HAVE_KERNEL_16x4 1
29-
static void sgemv_kernel_16x4( long n, float **ap, float *x, float *y) __attribute__ ((noinline));
29+
static void sgemv_kernel_16x4( BLASLONG n, float **ap, float *x, float *y) __attribute__ ((noinline));
3030

31-
static void sgemv_kernel_16x4( long n, float **ap, float *x, float *y)
31+
static void sgemv_kernel_16x4( BLASLONG n, float **ap, float *x, float *y)
3232
{
3333

34-
long register i = 0;
34+
BLASLONG register i = 0;
3535

3636
__asm__ __volatile__
3737
(

kernel/x86_64/sgemv_n_microk_nehalem-2.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2626
*****************************************************************************/
2727

2828
#define HAVE_KERNEL_16x4 1
29-
static void sgemv_kernel_16x4( long n, float **ap, float *x, float *y) __attribute__ ((noinline));
29+
static void sgemv_kernel_16x4( BLASLONG n, float **ap, float *x, float *y) __attribute__ ((noinline));
3030

31-
static void sgemv_kernel_16x4( long n, float **ap, float *x, float *y)
31+
static void sgemv_kernel_16x4( BLASLONG n, float **ap, float *x, float *y)
3232
{
3333

34-
long register i = 0;
34+
BLASLONG register i = 0;
3535

3636
__asm__ __volatile__
3737
(

kernel/x86_64/sgemv_n_microk_sandy-2.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2626
*****************************************************************************/
2727

2828
#define HAVE_KERNEL_16x4 1
29-
static void sgemv_kernel_16x4( long n, float **ap, float *x, float *y) __attribute__ ((noinline));
29+
static void sgemv_kernel_16x4( BLASLONG n, float **ap, float *x, float *y) __attribute__ ((noinline));
3030

31-
static void sgemv_kernel_16x4( long n, float **ap, float *x, float *y)
31+
static void sgemv_kernel_16x4( BLASLONG n, float **ap, float *x, float *y)
3232
{
3333

34-
long register i = 0;
34+
BLASLONG register i = 0;
3535

3636
__asm__ __volatile__
3737
(

0 commit comments

Comments
 (0)