mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-21 07:19:46 +08:00
28539e7597
the modifications to initial code follow: * changed build system from plain makefiles to cmake * added eigen2 (4 versions: vec/novec and fixed/dynamic), GMM++, MTL4 interfaces * added "transposed matrix * vector" product action * updated blitz interface to use condensed products instead of hand coded loops * removed some deprecated interfaces * changed default storage order to column major for all libraries * new generic bench timer strategy which is supposed to be more accurate * various code clean-up
41 lines
1.1 KiB
CMake
41 lines
1.1 KiB
CMake
# - Try to find blitz lib
|
|
# Once done this will define
|
|
#
|
|
# BLITZ_FOUND - system has blitz lib
|
|
# BLITZ_INCLUDES - the blitz include directory
|
|
# BLITZ_LIBRARIES - The libraries needed to use blitz
|
|
|
|
# Copyright (c) 2006, Montel Laurent, <montel@kde.org>
|
|
# Copyright (c) 2007, Allen Winter, <winter@kde.org>
|
|
# Copyright (C) 2008 Gael Guennebaud <g.gael@free.fr>
|
|
# Redistribution and use is allowed according to the terms of the BSD license.
|
|
# For details see the accompanying COPYING-CMAKE-SCRIPTS file.
|
|
|
|
# include(FindLibraryWithDebug)
|
|
|
|
if (BLITZ_INCLUDES AND BLITZ_LIBRARIES)
|
|
set(Blitz_FIND_QUIETLY TRUE)
|
|
endif (BLITZ_INCLUDES AND BLITZ_LIBRARIES)
|
|
|
|
find_path(BLITZ_INCLUDES
|
|
NAMES
|
|
blitz/array.h
|
|
PATH_SUFFIXES blitz*
|
|
PATHS
|
|
$ENV{BLITZDIR}/include
|
|
${INCLUDE_INSTALL_DIR}
|
|
)
|
|
|
|
find_library(BLITZ_LIBRARIES
|
|
blitz
|
|
PATHS
|
|
$ENV{BLITZDIR}/lib
|
|
${LIB_INSTALL_DIR}
|
|
)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(Blitz DEFAULT_MSG
|
|
BLITZ_INCLUDES BLITZ_LIBRARIES)
|
|
|
|
mark_as_advanced(BLITZ_INCLUDES BLITZ_LIBRARIES)
|