Browse Source

updated cdot and zdot for piledriver

tags/v0.2.15^2
Werner Saar 10 years ago
parent
commit
b57a60dac8
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      kernel/x86_64/cdot.c
  2. +2
    -2
      kernel/x86_64/zdot.c

+ 2
- 2
kernel/x86_64/cdot.c View File

@@ -30,9 +30,9 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <complex.h> #include <complex.h>




#if defined(BULLDOZER) || defined(PILEDRIVER)
#if defined(BULLDOZER)
#include "cdot_microk_bulldozer-2.c" #include "cdot_microk_bulldozer-2.c"
#elif defined(STEAMROLLER)
#elif defined(STEAMROLLER) || defined(PILEDRIVER)
#include "cdot_microk_steamroller-2.c" #include "cdot_microk_steamroller-2.c"
#elif defined(NEHALEM) #elif defined(NEHALEM)
#include "cdot_microk_nehalem-2.c" #include "cdot_microk_nehalem-2.c"


+ 2
- 2
kernel/x86_64/zdot.c View File

@@ -30,9 +30,9 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <complex.h> #include <complex.h>




#if defined(BULLDOZER) || defined(PILEDRIVER)
#if defined(BULLDOZER)
#include "zdot_microk_bulldozer-2.c" #include "zdot_microk_bulldozer-2.c"
#elif defined(STEAMROLLER)
#elif defined(STEAMROLLER) || defined(PILEDRIVER)
#include "zdot_microk_steamroller-2.c" #include "zdot_microk_steamroller-2.c"
#elif defined(NEHALEM) #elif defined(NEHALEM)
#include "zdot_microk_nehalem-2.c" #include "zdot_microk_nehalem-2.c"


Loading…
Cancel
Save