Skip to content

Commit

Permalink
Merge pull request #330 from kokkos/Fix-329
Browse files Browse the repository at this point in the history
Fix #329
  • Loading branch information
ndellingwood authored Oct 22, 2018
2 parents 66053e2 + 391423a commit ab5dce2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/impl/tpls/KokkosBlas1_axpby_tpl_spec_decl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@
#ifdef KOKKOSKERNELS_ENABLE_TPL_BLAS
extern "C" void daxpy_( const int* N, const double* alpha,
const double* x, const int* x_inc,
const double* y, const int* y_inc);
double* y, const int* y_inc);
extern "C" void saxpy_( const int* N, const float* alpha,
const float* x, const int* x_inc,
const float* y, const int* y_inc);
float* y, const int* y_inc);
extern "C" void zaxpy_( const int* N, const std::complex<double>* alpha,
const std::complex<double>* x, const int* x_inc,
const std::complex<double>* y, const int* y_inc);
std::complex<double>* y, const int* y_inc);
extern "C" void caxpy_( const int* N, const std::complex<float>* alpha,
const std::complex<float>* x, const int* x_inc,
const std::complex<float>* y, const int* y_inc);
std::complex<float>* y, const int* y_inc);

namespace KokkosBlas {
namespace Impl {
Expand Down

0 comments on commit ab5dce2

Please sign in to comment.