📄 laswp_k_1.c
字号:
/*********************************************************************//* *//* Optimized BLAS libraries *//* By Kazushige Goto <kgoto@tacc.utexas.edu> *//* *//* Copyright (c) The University of Texas, 2005. All rights reserved. *//* UNIVERSITY EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES CONCERNING *//* THIS SOFTWARE AND DOCUMENTATION, INCLUDING ANY WARRANTIES OF *//* MERCHANTABILITY, FITNESS FOR ANY PARTICULAR PURPOSE, *//* NON-INFRINGEMENT AND WARRANTIES OF PERFORMANCE, AND ANY WARRANTY *//* THAT MIGHT OTHERWISE ARISE FROM COURSE OF DEALING OR USAGE OF *//* TRADE. NO WARRANTY IS EITHER EXPRESS OR IMPLIED WITH RESPECT TO *//* THE USE OF THE SOFTWARE OR DOCUMENTATION. *//* Under no circumstances shall University be liable for incidental, *//* special, indirect, direct or consequential damages or loss of *//* profits, interruption of business, or related expenses which may *//* arise from use of Software or Documentation, including but not *//* limited to those resulting from defects in Software and/or *//* Documentation, or loss or inaccuracy of data of any kind. *//*********************************************************************/#include <stdio.h>#include "common.h"#ifndef MINUS#define a2 (a1 + 1)#else#define a2 (a1 - 1)#endifint CNAME(BLASLONG n, BLASLONG k1, BLASLONG k2, FLOAT dummy1, FLOAT *a, BLASLONG lda, FLOAT *dummy2, BLASLONG dumy3, blasint *ipiv, BLASLONG incx){ BLASLONG i, j, ip1, ip2; blasint *piv; FLOAT *a1; FLOAT *b1, *b2; FLOAT A1, A2, B1, B2; a--; k1 --;#ifndef MINUS ipiv += k1;#else ipiv -= (k2 - 1) * incx;#endif if (n <= 0) return 0; j = n; if (j > 0) { do { piv = ipiv;#ifndef MINUS a1 = a + k1 + 1;#else a1 = a + k2;#endif ip1 = *piv; piv += incx; ip2 = *piv; piv += incx; b1 = a + ip1; b2 = a + ip2; i = ((k2 - k1) >> 1); if (i > 0) { do {#ifdef OPTERON#ifndef MINUS asm volatile("prefetchw 2 * 128(%0)\n" : : "r"(a1)); asm volatile("prefetchw 2 * 128(%0)\n" : : "r"(b1));#else asm volatile("prefetchw -2 * 128(%0)\n" : : "r"(a1)); asm volatile("prefetchw -2 * 128(%0)\n" : : "r"(b1));#endif#endif#ifdef CORE2#ifndef MINUS asm volatile("prefetcht1 2 * 128(%0)\n" : : "r"(a1)); asm volatile("prefetcht1 2 * 128(%0)\n" : : "r"(b1)); asm volatile("prefetcht1 2 * 128(%0)\n" : : "r"(b2));#else asm volatile("prefetcht1 -2 * 128(%0)\n" : : "r"(a1)); asm volatile("prefetcht1 -2 * 128(%0)\n" : : "r"(b1)); asm volatile("prefetcht1 -2 * 128(%0)\n" : : "r"(b2));#endif#endif A1 = *a1; A2 = *a2; B1 = *b1; B2 = *b2; ip1 = *piv; piv += incx; ip2 = *piv; piv += incx; if (b1 == a1) { if (b2 == a1) { *a1 = A2; *a2 = A1; } else if (b2 != a2) { *a2 = B2; *b2 = A2; } } else if (b1 == a2) { if (b2 != a1) { if (b2 == a2) { *a1 = A2; *a2 = A1; } else { *a1 = A2; *a2 = B2; *b2 = A1; } } } else { if (b2 == a1) { *a1 = A2; *a2 = B1; *b1 = A1; } else if (b2 == a2) { *a1 = B1; *b1 = A1; } else if (b2 == b1) { *a1 = B1; *a2 = A1; *b1 = A2; } else { *a1 = B1; *a2 = B2; *b1 = A1; *b2 = A2; } } b1 = a + ip1; b2 = a + ip2; #ifndef MINUS a1 += 2;#else a1 -= 2;#endif i --; } while (i > 0); } i = ((k2 - k1) & 1); if (i > 0) { A1 = *a1; B1 = *b1; *a1 = B1; *b1 = A1; } a += lda; j --; } while (j > 0); } return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -