Browse Source

Merge pull request #1390 from martin-frbg/daxpybug

Use Sandybridge daxpy kernel on Haswell and Zen for now
tags/v0.3.0
Martin Kroeker GitHub 8 years ago
parent
commit
6aba7b66ce
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      kernel/x86_64/daxpy.c

+ 4
- 0
kernel/x86_64/daxpy.c View File

@@ -38,7 +38,11 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#elif defined(PILEDRIVER)
#include "daxpy_microk_piledriver-2.c"
#elif defined(HASWELL) || defined(ZEN)
/*
this appears to be broken, see issue 1332
#include "daxpy_microk_haswell-2.c"
*/
#include "daxpy_microk_sandy-2.c"
#elif defined(SANDYBRIDGE)
#include "daxpy_microk_sandy-2.c"
#endif


Loading…
Cancel
Save