debug -Werr and creake Makefile to build libneurons.so

This commit is contained in:
2024-03-26 14:27:33 +01:00
parent 3911456abc
commit 9244239f46
6 changed files with 97 additions and 55 deletions
+1 -1
View File
@@ -212,7 +212,7 @@ void printDebug_dimension(dimension *d,char *msg){
printf("(%s)->size = %ld | (%s)->rank = %ld \n[",msg,d->size,msg,d->rank);
for(size_t i=0; i<d->size; ++i)
printf(" %ld,", d->perm[i]);
printf("] \n");
printf("] \n");
//printf("[%ld: %ld] |", i,d->perm[i]);
/* if(endian)
printf("\nendian (true): the bigest index varies first, e.g: [x0,x1,x2,...,xn] xn is the bigest index\n");
@@ -5,7 +5,6 @@
extern bool endian;
bool isLessEqThan(long int a, long int b) ;
bool isLessThan(long int a, long int b) ;
bool isGreatEqThan(long int a, long int b) ;