Browse Source

fix improper function prototypes (empty parentheses)

tags/v0.3.25^2
Martin Kroeker GitHub 2 years ago
parent
commit
c6b1d8e7a3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 26 additions and 26 deletions
  1. +2
    -2
      driver/others/blas_l1_thread.c
  2. +1
    -1
      driver/others/blas_server.c
  3. +5
    -5
      driver/others/memory.c
  4. +9
    -9
      driver/others/openblas_env.c
  5. +1
    -1
      driver/others/openblas_error_handle.c
  6. +4
    -4
      driver/others/openblas_get_config.c
  7. +3
    -3
      driver/others/openblas_get_parallel.c
  8. +1
    -1
      driver/others/parameter.c

+ 2
- 2
driver/others/blas_l1_thread.c View File

@@ -43,7 +43,7 @@
int blas_level1_thread(int mode, BLASLONG m, BLASLONG n, BLASLONG k, void *alpha, int blas_level1_thread(int mode, BLASLONG m, BLASLONG n, BLASLONG k, void *alpha,
void *a, BLASLONG lda, void *a, BLASLONG lda,
void *b, BLASLONG ldb, void *b, BLASLONG ldb,
void *c, BLASLONG ldc, int (*function)(), int nthreads){
void *c, BLASLONG ldc, int (*function)(void), int nthreads){


blas_queue_t queue[MAX_CPU_NUMBER]; blas_queue_t queue[MAX_CPU_NUMBER];
blas_arg_t args [MAX_CPU_NUMBER]; blas_arg_t args [MAX_CPU_NUMBER];
@@ -141,7 +141,7 @@ int blas_level1_thread(int mode, BLASLONG m, BLASLONG n, BLASLONG k, void *alpha
int blas_level1_thread_with_return_value(int mode, BLASLONG m, BLASLONG n, BLASLONG k, void *alpha, int blas_level1_thread_with_return_value(int mode, BLASLONG m, BLASLONG n, BLASLONG k, void *alpha,
void *a, BLASLONG lda, void *a, BLASLONG lda,
void *b, BLASLONG ldb, void *b, BLASLONG ldb,
void *c, BLASLONG ldc, int (*function)(), int nthreads){
void *c, BLASLONG ldc, int (*function)(void), int nthreads){


blas_queue_t queue[MAX_CPU_NUMBER]; blas_queue_t queue[MAX_CPU_NUMBER];
blas_arg_t args [MAX_CPU_NUMBER]; blas_arg_t args [MAX_CPU_NUMBER];


+ 1
- 1
driver/others/blas_server.c View File

@@ -93,7 +93,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#endif #endif
#endif #endif


extern unsigned int openblas_thread_timeout();
extern unsigned int openblas_thread_timeout(void);


#ifdef SMP_SERVER #ifdef SMP_SERVER




+ 5
- 5
driver/others/memory.c View File

@@ -1999,7 +1999,7 @@ int goto_get_num_procs (void) {
return blas_cpu_number; return blas_cpu_number;
} }


void openblas_fork_handler()
void openblas_fork_handler(void)
{ {
// This handler shuts down the OpenBLAS-managed PTHREAD pool when OpenBLAS is // This handler shuts down the OpenBLAS-managed PTHREAD pool when OpenBLAS is
// built with "make USE_OPENMP=0". // built with "make USE_OPENMP=0".
@@ -2016,9 +2016,9 @@ void openblas_fork_handler()
#endif #endif
} }


extern int openblas_num_threads_env();
extern int openblas_goto_num_threads_env();
extern int openblas_omp_num_threads_env();
extern int openblas_num_threads_env(void);
extern int openblas_goto_num_threads_env(void);
extern int openblas_omp_num_threads_env(void);


int blas_get_cpu_number(void){ int blas_get_cpu_number(void){
#if defined(OS_LINUX) || defined(OS_WINDOWS) || defined(OS_FREEBSD) || defined(OS_OPENBSD) || defined(OS_NETBSD) || defined(OS_DRAGONFLY) || defined(OS_DARWIN) || defined(OS_ANDROID) || defined(OS_HAIKU) #if defined(OS_LINUX) || defined(OS_WINDOWS) || defined(OS_FREEBSD) || defined(OS_OPENBSD) || defined(OS_NETBSD) || defined(OS_DRAGONFLY) || defined(OS_DARWIN) || defined(OS_ANDROID) || defined(OS_HAIKU)
@@ -3339,7 +3339,7 @@ static void gotoblas_memory_init(void) {
/* Initialization for all function; this function should be called before main */ /* Initialization for all function; this function should be called before main */


static int gotoblas_initialized = 0; static int gotoblas_initialized = 0;
extern void openblas_read_env();
extern void openblas_read_env(void);


void CONSTRUCTOR gotoblas_init(void) { void CONSTRUCTOR gotoblas_init(void) {




+ 9
- 9
driver/others/openblas_env.c View File

@@ -41,15 +41,15 @@ static int openblas_env_goto_num_threads=0;
static int openblas_env_omp_num_threads=0; static int openblas_env_omp_num_threads=0;
static int openblas_env_omp_adaptive=0; static int openblas_env_omp_adaptive=0;


int openblas_verbose() { return openblas_env_verbose;}
unsigned int openblas_thread_timeout() { return openblas_env_thread_timeout;}
int openblas_block_factor() { return openblas_env_block_factor;}
int openblas_num_threads_env() { return openblas_env_openblas_num_threads;}
int openblas_goto_num_threads_env() { return openblas_env_goto_num_threads;}
int openblas_omp_num_threads_env() { return openblas_env_omp_num_threads;}
int openblas_omp_adaptive_env() { return openblas_env_omp_adaptive;}
void openblas_read_env() {
int openblas_verbose(void) { return openblas_env_verbose;}
unsigned int openblas_thread_timeout(void) { return openblas_env_thread_timeout;}
int openblas_block_factor(void) { return openblas_env_block_factor;}
int openblas_num_threads_env(void) { return openblas_env_openblas_num_threads;}
int openblas_goto_num_threads_env(void) { return openblas_env_goto_num_threads;}
int openblas_omp_num_threads_env(void) { return openblas_env_omp_num_threads;}
int openblas_omp_adaptive_env(void) { return openblas_env_omp_adaptive;}
void openblas_read_env(void) {
int ret=0; int ret=0;
env_var_t p; env_var_t p;
if (readenv(p,"OPENBLAS_VERBOSE")) ret = atoi(p); if (readenv(p,"OPENBLAS_VERBOSE")) ret = atoi(p);


+ 1
- 1
driver/others/openblas_error_handle.c View File

@@ -33,7 +33,7 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


#include "common.h" #include "common.h"


extern int openblas_verbose();
extern int openblas_verbose(void);


void openblas_warning(int verbose, const char * msg) { void openblas_warning(int verbose, const char * msg) {
int current_verbose; int current_verbose;


+ 4
- 4
driver/others/openblas_get_config.c View File

@@ -69,13 +69,13 @@ static char* openblas_config_str=""
; ;


#ifdef DYNAMIC_ARCH #ifdef DYNAMIC_ARCH
char *gotoblas_corename();
char *gotoblas_corename(void);
#endif #endif


static char tmp_config_str[256]; static char tmp_config_str[256];
int openblas_get_parallel();
int openblas_get_parallel(void);


char* CNAME() {
char* CNAME(void) {
char tmpstr[20]; char tmpstr[20];
strcpy(tmp_config_str, openblas_config_str); strcpy(tmp_config_str, openblas_config_str);
#ifdef DYNAMIC_ARCH #ifdef DYNAMIC_ARCH
@@ -90,7 +90,7 @@ char tmpstr[20];
} }




char* openblas_get_corename() {
char* openblas_get_corename(void) {
#ifndef DYNAMIC_ARCH #ifndef DYNAMIC_ARCH
return CHAR_CORENAME; return CHAR_CORENAME;
#else #else


+ 3
- 3
driver/others/openblas_get_parallel.c View File

@@ -42,17 +42,17 @@ static int parallel = 0;




#ifdef NEEDBUNDERSCORE #ifdef NEEDBUNDERSCORE
int CNAME() {
int CNAME(void) {
return parallel; return parallel;
} }


int NAME() {
int NAME(void) {
return parallel; return parallel;
} }


#else #else
//The CNAME and NAME are the same. //The CNAME and NAME are the same.
int NAME() {
int NAME(void) {
return parallel; return parallel;
} }
#endif #endif


+ 1
- 1
driver/others/parameter.c View File

@@ -40,7 +40,7 @@
#include <string.h> #include <string.h>
#include "common.h" #include "common.h"


extern int openblas_block_factor();
extern int openblas_block_factor(void);
int get_L2_size(void); int get_L2_size(void);


#define DEFAULT_GEMM_P 128 #define DEFAULT_GEMM_P 128


Loading…
Cancel
Save