@@ -192,27 +192,27 @@ int exec_blas(BLASLONG num_cpu, blas_param_t *param, void *buffer);
192192int blas_level1_thread (int mode , BLASLONG m , BLASLONG n , BLASLONG k , void * alpha ,
193193 void * a , BLASLONG lda ,
194194 void * b , BLASLONG ldb ,
195- void * c , BLASLONG ldc , int (* function )(), int threads );
195+ void * c , BLASLONG ldc , int (* function )(void ), int threads );
196196
197- int gemm_thread_m (int mode , blas_arg_t * , BLASLONG * , BLASLONG * , int (* function )(), void * , void * , BLASLONG );
197+ int gemm_thread_m (int mode , blas_arg_t * , BLASLONG * , BLASLONG * , int (* function )(blas_arg_t * , BLASLONG * , BLASLONG * , FLOAT * , FLOAT * , BLASLONG ), void * , void * , BLASLONG );
198198
199- int gemm_thread_n (int mode , blas_arg_t * , BLASLONG * , BLASLONG * , int (* function )(), void * , void * , BLASLONG );
199+ int gemm_thread_n (int mode , blas_arg_t * , BLASLONG * , BLASLONG * , int (* function )(blas_arg_t * , BLASLONG * , BLASLONG * , FLOAT * , FLOAT * , BLASLONG ), void * , void * , BLASLONG );
200200
201- int gemm_thread_mn (int mode , blas_arg_t * , BLASLONG * , BLASLONG * , int (* function )(), void * , void * , BLASLONG );
201+ int gemm_thread_mn (int mode , blas_arg_t * , BLASLONG * , BLASLONG * , int (* function )(blas_arg_t * , BLASLONG * , BLASLONG * , FLOAT * , FLOAT * , BLASLONG ), void * , void * , BLASLONG );
202202
203- int gemm_thread_variable (int mode , blas_arg_t * , BLASLONG * , BLASLONG * , int (* function )(), void * , void * , BLASLONG , BLASLONG );
203+ int gemm_thread_variable (int mode , blas_arg_t * , BLASLONG * , BLASLONG * , int (* function )(blas_arg_t * , BLASLONG * , BLASLONG * , FLOAT * , FLOAT * , BLASLONG ), void * , void * , BLASLONG , BLASLONG );
204204
205205int trsm_thread (int mode , BLASLONG m , BLASLONG n ,
206206 double alpha_r , double alpha_i ,
207207 void * a , BLASLONG lda ,
208- void * c , BLASLONG ldc , int (* function )(), void * buffer );
208+ void * c , BLASLONG ldc , int (* function )(void ), void * buffer );
209209
210- int syrk_thread (int mode , blas_arg_t * , BLASLONG * , BLASLONG * , int (* function )(), void * , void * , BLASLONG );
210+ int syrk_thread (int mode , blas_arg_t * , BLASLONG * , BLASLONG * , int (* function )(blas_arg_t * , BLASLONG * , BLASLONG * , FLOAT * , FLOAT * , BLASLONG ), void * , void * , BLASLONG );
211211
212212int getrf_thread (int mode , BLASLONG m , BLASLONG n , BLASLONG k ,
213213 void * offsetA , BLASLONG lda ,
214214 void * offsetB , BLASLONG jb ,
215- void * ipiv , BLASLONG offset , int (* function )(), void * buffer );
215+ void * ipiv , BLASLONG offset , int (* function )(void ), void * buffer );
216216
217217#endif /* ENDIF ASSEMBLER */
218218
0 commit comments