Browse Source

Retire Piledriver/Steamroller/Excavator daxpy microkernels as well

related to issue #1332
tags/v0.3.0
Martin Kroeker GitHub 7 years ago
parent
commit
43c0622e7b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      kernel/x86_64/daxpy.c

+ 3
- 2
kernel/x86_64/daxpy.c View File

@@ -33,15 +33,16 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "daxpy_microk_nehalem-2.c"
#elif defined(BULLDOZER)
#include "daxpy_microk_bulldozer-2.c"
/*
these appear to be broken, see issue 1332
#elif defined(STEAMROLLER) || defined(EXCAVATOR)
#include "daxpy_microk_steamroller-2.c"
#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"
*/
#elif defined(HASWELL) || defined(ZEN) || defined(PILEDRIVER) || defined(STEAMROLLER) || defined(EXCAVATOR)
#include "daxpy_microk_sandy-2.c"
#elif defined(SANDYBRIDGE)
#include "daxpy_microk_sandy-2.c"


Loading…
Cancel
Save