2008-02-26 14:55:23 +01:00
|
|
|
/*
|
|
|
|
LA: linear algebra C++ interface library
|
|
|
|
Copyright (C) 2008 Jiri Pittner <jiri.pittner@jh-inst.cas.cz> or <jiri@pittnerovi.com>
|
|
|
|
|
|
|
|
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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2005-02-14 01:10:07 +01:00
|
|
|
// LA and general error handler
|
2005-02-04 15:31:42 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include "laerror.h"
|
2005-02-14 01:10:07 +01:00
|
|
|
#include <stdio.h>
|
2008-11-26 14:30:30 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2005-02-14 01:10:07 +01:00
|
|
|
#include <errno.h>
|
2006-08-16 23:43:45 +02:00
|
|
|
#include <stdarg.h>
|
2021-09-22 18:12:40 +02:00
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <setjmp.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/prctl.h>
|
2021-09-25 05:39:55 +02:00
|
|
|
#include <fcntl.h>
|
2021-09-22 18:12:40 +02:00
|
|
|
|
2006-08-16 23:43:45 +02:00
|
|
|
|
2010-06-25 17:28:19 +02:00
|
|
|
#include "cuda_la.h"
|
2006-04-09 23:07:54 +02:00
|
|
|
|
|
|
|
|
2009-11-12 22:01:19 +01:00
|
|
|
namespace LA {
|
|
|
|
|
2010-06-25 17:28:19 +02:00
|
|
|
//enforce GPU initialization by a global class instantization constructor
|
|
|
|
#ifdef CUDALA
|
|
|
|
GPU_START gpu_start_instant;
|
|
|
|
#endif
|
|
|
|
|
2021-11-13 19:06:05 +01:00
|
|
|
bool _LA_count_check=true; //intentionally not const
|
2021-11-04 14:21:13 +01:00
|
|
|
const bool _LA_warn_empty_copyonwrite=false;
|
2009-10-08 16:01:15 +02:00
|
|
|
|
|
|
|
extern "C" void _findme(void) {}; //for autoconf test we need a function with C linkage
|
2008-12-17 16:34:25 +01:00
|
|
|
|
2021-09-22 18:12:40 +02:00
|
|
|
//traceback routines
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
|
|
|
|
//simple traceback by calling gdb on ourselves
|
|
|
|
int traceback(int flags)
|
|
|
|
{
|
|
|
|
char pid_buf[256];
|
|
|
|
sprintf(pid_buf, "%d", getpid());
|
|
|
|
char name_buf[512];
|
|
|
|
name_buf[readlink("/proc/self/exe", name_buf, 511)]=0;
|
|
|
|
prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY, 0, 0, 0);
|
|
|
|
int child_pid = fork();
|
|
|
|
if (!child_pid) {
|
|
|
|
dup2(2,1); // redirect output to stderr - edit: unnecessary?
|
|
|
|
execl("/usr/bin/gdb", "gdb", "--batch", "-n", "-ex", "thread", "-ex", "bt", name_buf, pid_buf, NULL);
|
|
|
|
abort(); /* If gdb failed to start */
|
|
|
|
} else {
|
|
|
|
waitpid(child_pid,NULL,0);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int tracebackflags;
|
|
|
|
static int washere=0;
|
|
|
|
|
|
|
|
void tracebackhandler(int i, siginfo_t *info, void *x)
|
|
|
|
{
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
traceback(tracebackflags);
|
|
|
|
|
|
|
|
if(!washere) {washere=1; raise(i);} /*generate core*/
|
|
|
|
else _exit(1); /*prevent endless loop if something goes very wrong*/
|
|
|
|
}
|
|
|
|
|
|
|
|
void sigtraceback(int sig,int flags)
|
|
|
|
{
|
|
|
|
struct sigaction action;
|
|
|
|
action.sa_sigaction=tracebackhandler;
|
|
|
|
action.sa_flags=SA_ONESHOT|SA_SIGINFO;
|
|
|
|
memset(&action.sa_mask,0,sizeof(sigset_t));
|
|
|
|
tracebackflags=flags;
|
|
|
|
if(sigaction(sig,&action,NULL)) perror("cannot install signal handler");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}//extern C
|
|
|
|
|
2010-09-08 18:27:58 +02:00
|
|
|
void laerror2(const char *s1, const char *s2)
|
2005-02-04 15:31:42 +01:00
|
|
|
{
|
2021-09-25 05:39:55 +02:00
|
|
|
std::cout<<"\n";
|
|
|
|
std::cerr<<"\n";
|
2021-09-22 18:12:40 +02:00
|
|
|
std::cout.flush();
|
|
|
|
std::cerr.flush();
|
2005-02-14 01:10:07 +01:00
|
|
|
if(s1)
|
|
|
|
{
|
2021-09-25 05:39:55 +02:00
|
|
|
std::cerr <<"LA:ERROR - "<< s2 << ": " << s1 << "\n";
|
|
|
|
std::cout <<"LA:ERROR - "<< s2 << ": " << s1 << "\n";
|
2005-02-04 15:31:42 +01:00
|
|
|
}
|
2021-09-25 05:39:55 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
std::cerr <<"LA:ERROR - unspecified\n";
|
|
|
|
std::cout <<"LA:ERROR - unspecified\n";
|
|
|
|
}
|
2010-06-25 17:28:19 +02:00
|
|
|
#ifdef CUDALA
|
|
|
|
{
|
2010-09-08 18:27:58 +02:00
|
|
|
cublasStatus s = cublasGetError();
|
|
|
|
std::cerr << "CUBLAS status = " << s << std::endl;
|
|
|
|
std::cout << "CUBLAS status = " << s << std::endl;
|
2010-06-25 17:28:19 +02:00
|
|
|
}
|
|
|
|
#endif
|
2005-02-14 01:10:07 +01:00
|
|
|
if(errno) perror("system error");
|
2006-04-09 23:07:54 +02:00
|
|
|
|
2021-09-25 05:39:55 +02:00
|
|
|
int f=open("/proc/self/cmdline",O_RDONLY);
|
|
|
|
if(f)
|
|
|
|
{
|
|
|
|
std::string line;
|
|
|
|
char z;
|
|
|
|
while(1==read(f,&z,1))
|
|
|
|
{
|
|
|
|
line+= z?z:' ';
|
|
|
|
}
|
|
|
|
close(f);
|
|
|
|
std::cout<<"Command LINE: "<<line <<"\n";
|
|
|
|
std::cerr<<"Command LINE: "<<line <<"\n";
|
|
|
|
std::cout.flush();
|
|
|
|
std::cerr.flush();
|
|
|
|
}
|
|
|
|
|
2021-09-27 10:49:19 +02:00
|
|
|
int r=system("echo INFO:; whoami; hostname; pwd; ls -l -t .;");
|
|
|
|
|
2008-12-17 16:34:25 +01:00
|
|
|
throw LAerror(s1);
|
2005-02-04 15:31:42 +01:00
|
|
|
}
|
|
|
|
|
2010-09-08 18:27:58 +02:00
|
|
|
|
2005-02-14 01:10:07 +01:00
|
|
|
//stub for f77 blas called from strassen routine
|
2010-09-08 18:27:58 +02:00
|
|
|
extern "C" void xerbla_(const char name[6], int *n){
|
|
|
|
char msg[1024];
|
|
|
|
strcpy(msg,"LAPACK or BLAS error in routine ");
|
|
|
|
strncat(msg,name,6);
|
|
|
|
sprintf(msg+strlen(msg),": illegal value of parameter #%d",*n);
|
|
|
|
laerror(msg);
|
2005-02-14 01:10:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-16 23:43:45 +02:00
|
|
|
//with atlas-cblas another error routine is necessary
|
2010-09-08 18:27:58 +02:00
|
|
|
extern "C" void ATL_xerbla(int p, char *rout, char *form, ...){
|
|
|
|
char msg0[1024], *msg;
|
|
|
|
va_list argptr;
|
|
|
|
va_start(argptr, form);
|
|
|
|
strcpy(msg0,"ATLAS error\n");
|
|
|
|
msg=msg0+strlen(msg0);
|
|
|
|
if (p) {sprintf(msg, "Parameter %d to routine %s was incorrect\n", p, rout); msg+=strlen(msg);}
|
|
|
|
vsprintf(msg, form, argptr);
|
|
|
|
va_end(argptr);
|
|
|
|
laerror(msg0);
|
2006-08-16 23:43:45 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 15:56:39 +01:00
|
|
|
#ifndef NONCBLAS
|
2021-06-25 16:34:58 +02:00
|
|
|
extern "C" {
|
2013-11-04 15:56:39 +01:00
|
|
|
#include "cblas.h"
|
2021-06-25 16:34:58 +02:00
|
|
|
}
|
2013-11-04 15:56:39 +01:00
|
|
|
#include <stdarg.h>
|
|
|
|
extern "C" void cblas_xerbla(int p, const char *rout, const char *form, ...)
|
|
|
|
{
|
|
|
|
va_list argptr;
|
|
|
|
|
|
|
|
va_start(argptr, form);
|
|
|
|
if (p)
|
|
|
|
{
|
|
|
|
fprintf(stdout, "Parameter %d to routine %s was incorrect\n", p, rout);
|
|
|
|
fprintf(stderr, "Parameter %d to routine %s was incorrect\n", p, rout);
|
|
|
|
}
|
|
|
|
vfprintf(stdout, form, argptr);
|
|
|
|
vfprintf(stderr, form, argptr);
|
|
|
|
va_end(argptr);
|
|
|
|
laerror("terminating in cblas_xerbla");
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" int cblas_errprn(int ierr, int info, char *form, ...) {
|
2010-09-08 18:27:58 +02:00
|
|
|
char msg0[1024], *msg;
|
|
|
|
va_list argptr;
|
|
|
|
va_start(argptr, form);
|
|
|
|
sprintf(msg0,"CBLAS error %d %d\n",ierr,info);
|
|
|
|
msg=msg0+strlen(msg0);
|
|
|
|
vsprintf(msg, form, argptr);
|
|
|
|
va_end(argptr);
|
|
|
|
laerror(msg0);
|
|
|
|
return 0;
|
2006-08-16 23:43:45 +02:00
|
|
|
}
|
2013-11-04 15:56:39 +01:00
|
|
|
#endif
|
2009-11-12 22:01:19 +01:00
|
|
|
|
|
|
|
}//namespace
|