# MKL specific Linux configuration # We have tested Kaldi with MKL version 10.2 on Linux/GCC and Intel(R) 64 # architecture (also referred to as x86_64) with LP64 interface layer. # The linking flags for MKL will be very different depending on the OS, # architecture, compiler, etc. used. The correct flags can be obtained from # http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/ # Use the options obtained from this website to manually configure for other # platforms using MKL. ifndef DOUBLE_PRECISION $(error DOUBLE_PRECISION not defined.) endif ifndef OPENFSTINC $(error OPENFSTINC not defined.) endif ifndef OPENFSTLIBS $(error OPENFSTLIBS not defined.) endif ifndef MKLROOT $(error MKLROOT not defined.) endif MKLLIB ?= $(MKLROOT)/lib/intel64 CXXFLAGS = -std=c++11 -I.. -isystem $(OPENFSTINC) -O1 $(EXTRA_CXXFLAGS) \ -Wall -Wno-sign-compare -Wno-unused-local-typedefs \ -Wno-deprecated-declarations -Winit-self \ -DKALDI_DOUBLEPRECISION=$(DOUBLE_PRECISION) \ -DHAVE_EXECINFO_H=1 -DHAVE_CXXABI_H -DHAVE_MKL -I$(MKLROOT)/include \ -m64 -msse -msse2 -pthread \ -g # -O0 -DKALDI_PARANOID ifeq ($(KALDI_FLAVOR), dynamic) CXXFLAGS += -fPIC endif # Compiler specific flags COMPILER = $(shell $(CXX) -v 2>&1) ifeq ($(findstring clang,$(COMPILER)),clang) # Suppress annoying clang warnings that are perfectly valid per spec. CXXFLAGS += -Wno-mismatched-tags endif ## Use the following for STATIC LINKING of the SEQUENTIAL version of MKL MKL_STA_SEQ = $(MKLLIB)/libmkl_solver_lp64_sequential.a -Wl,--start-group \ $(MKLLIB)/libmkl_intel_lp64.a $(MKLLIB)/libmkl_sequential.a \ $(MKLLIB)/libmkl_core.a -Wl,--end-group -lpthread ## Use the following for STATIC LINKING of the MULTI-THREADED version of MKL MKL_STA_MUL = $(MKLLIB)/libmkl_solver_lp64.a -Wl,--start-group \ $(MKLLIB)/libmkl_intel_lp64.a $(MKLLIB)/libmkl_intel_thread.a \ $(MKLLIB)/libmkl_core.a -Wl,--end-group $(MKLLIB)/libiomp5.a -lpthread ## Use the following for DYNAMIC LINKING of the SEQUENTIAL version of MKL MKL_DYN_SEQ = -L$(MKLLIB) -lmkl_solver_lp64_sequential -Wl,--start-group \ -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -Wl,--end-group -lpthread ## Use the following for DYNAMIC LINKING of the MULTI-THREADED version of MKL MKL_DYN_MUL = -L$(MKLLIB) -lmkl_solver_lp64 -Wl,--start-group -lmkl_intel_lp64 \ -lmkl_intel_thread -lmkl_core -Wl,--end-group -liomp5 -lpthread # MKLFLAGS = $(MKL_DYN_MUL) LDFLAGS = $(EXTRA_LDFLAGS) $(OPENFSTLDFLAGS) -rdynamic LDLIBS = $(EXTRA_LDLIBS) $(OPENFSTLIBS) $(MKLFLAGS) -lm -lpthread -ldl