Error compiling RC5
Posted: Thu Apr 21, 2011 5:26 am
Hi,
I'm on Ubuntu 9.04 and I've an error when I try to instal the RC5 :
testing_zgemm.cpp:(.text+0x8c2): undefined reference to `zaxpy_'
Does someone knows what's wrong ? Here is the make.inc file :
Thanks for your help,
Best regards
I'm on Ubuntu 9.04 and I've an error when I try to instal the RC5 :
testing_zgemm.cpp:(.text+0x8c2): undefined reference to `zaxpy_'
Does someone knows what's wrong ? Here is the make.inc file :
Code: Select all
#//////////////////////////////////////////////////////////////////////////////
# -- MAGMA (version 1.0) --
# Univ. of Tennessee, Knoxville
# Univ. of California, Berkeley
# Univ. of Colorado, Denver
# November 2010
#//////////////////////////////////////////////////////////////////////////////
#
# GPU_TARGET specifies for which GPU you want to compile MAGMA
# 0: Tesla family
# 1: Fermi Family
#
GPU_TARGET = 0
CC = gcc
NVCC = nvcc
FORT = gfortran
ARCH = ar
ARCHFLAGS = cr
RANLIB = ranlib
OPTS = -O3 -DADD_
FOPTS = -O3 -DADD_ -x f95-cpp-input
NVOPTS = --compiler-options -fno-strict-aliasing -DUNIX -O3 -DADD_
LDOPTS = -fPIC -Xlinker -zmuldefs
LIB = /home/sebastien/Librairies/lapack-3.3.1/lapack_LINUX.a -lcublas
CUDADIR = /usr/local/cuda/
LIBDIR = -L$(CUDADIR)/lib64
INC = -I$(CUDADIR)/include
LIBMAGMA = ../lib/libmagma.a
LIBMAGMABLAS = ../lib/libmagmablas.a
Best regards