1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
/*
* Copyright (c) 2002-2007 Samit Basu, Eugene Ingerman
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
#include "blas_wrap.h"
#include "blas_dyn_link.h"
#include <iostream>
#include <vector>
#include <QtGlobal>
#include <QCoreApplication>
#include <QString>
#include <QStringList>
#include <QLibrary>
#include <QSettings>
#include <QSysInfo>
#include "Array.hpp"
#include "Exception.hpp"
#include "DebugStream.hpp"
#include "Interpreter.hpp"
#ifdef DYN_BLAS
extern "C" {
int xerbla(char*, int*, int) {return 0;}
int xerbla_(char*, int*, int) {return 0;}
int _xerbla(char*, int*, int) {return 0;}
int XERBLA(char*, int*, int) {return 0;}
int XERBLA_(char*, int*, int) {return 0;}
int _XERBLA(char*, int*, int) {return 0;}
}
BlasWrapper::BlasWrapper() : useReference(true)
{
}
void BlasWrapper::Init( void )
{
blasLib = new QLibrary();
InitFunctions();
DiscoverBlasLibrary();
if( libList.empty() ) return;
QSettings settings("FreeMat",Interpreter::getVersionString());
if (!LoadLibByName(settings.value("interpreter/blas","").toString().toStdString()))
LoadLib( *(libList.begin()) );
}
std::string BlasWrapper::ComputerType( void )
{
#ifdef Q_WS_WIN
if( QSysInfo::WindowsVersion & QSysInfo::WV_NT_based )
return std::string("Win32");
return "Unknown";
#endif
#ifdef Q_WS_MAC
return std::string( "OSX" );
#endif
if (QSysInfo::WordSize == 32)
return std::string( "Linux32" );
if (QSysInfo::WordSize == 64)
return std::string( "Linux64" );
return std::string("unknown");
}
void BlasWrapper::ListLibraries( std::string& msg )
{
if (useReference) {
msg = std::string("Internal reference BLAS. Unoptimized");
return;
}
std::list<LibConf>::iterator it = libList.begin();
msg.clear();
while( it != libList.end() ){
if (it->Name == currentLib.Name)
msg.append("*");
msg.append( it->Name.toStdString() + "\t-\t" + it->desc.toStdString() + "\n" );
++it;
}
}
bool BlasWrapper::LoadLibByName( const std::string& name )
{
std::list<LibConf>::iterator it = libList.begin();
while( it != libList.end() ){
if( it->Name.toStdString() == name ){
LoadLib( *it );
return true;
}
++it;
}
return false;
}
void BlasWrapper::LoadLib( const LibConf& libConf )
{
InitFunctions(); //clear function pointers to reload the library
blasLib->unload(); //unload the old libarary
currentLib = libConf;
blasLib->setFileName( currentLib.fileName );
if( !blasLib->load() ) return;
useReference = false;
QSettings settings("FreeMat",Interpreter::getVersionString());
settings.setValue("interpreter/blas",libConf.Name);
}
void BlasWrapper::DiscoverBlasLibrary( void )
{
QSettings *libsettings = new QSettings( QCoreApplication::applicationDirPath()+"/blas.ini", QSettings::IniFormat );
libsettings->beginGroup( ComputerType().c_str() );
QStringList libs = libsettings->childGroups();
QStringListIterator libs_it(libs);
while( libs_it.hasNext() ){
QString lib_kind = libs_it.next();
libsettings->beginGroup( lib_kind );
//we try loading every library we find in config file.
blasLib->setFileName( libsettings->value( "libname" ).toString() );
if( blasLib->load() ){
LibConf lib;
lib.Name = lib_kind;
lib.fileName = libsettings->value( "libname" ).toString();
lib.capitalized = libsettings->value( "capfnames" ).toBool();
lib.prefix = libsettings->value( "prefix" ).toString();
lib.suffix = libsettings->value( "suffix" ).toString();
lib.desc = libsettings->value( "desc" ).toString();
libList.push_back( lib );
blasLib->unload();
}
libsettings->endGroup();
}
delete libsettings;
return;
}
void* BlasWrapper::Resolve( const char* function_name, void (*default_fcn)() )
{
dbout << "Resolve of " << function_name << "\n";
if (useReference) return (void*)(default_fcn);
void *p;
QString fname( function_name );
if( currentLib.capitalized )
fname = fname.toUpper();
//TODO: handle prefix, suffix.
fname = currentLib.prefix + fname + currentLib.suffix;
if( !(p = blasLib->resolve( fname.toAscii() ))){
return (void*)(default_fcn);
}
return p;
}
void BlasWrapper::InitFunctions( void )
{
fn.resize( BLAS_NUM_FNS );
std::vector<void*>::iterator it = fn.begin();
while( it != fn.end() )
*(it++) = 0;
}
extern BlasWrapper wrapper;
void LoadBlasFunctions( void )
{
wrapper.Init();
}
#endif
|