Skip to content

Commit

Permalink
Remove debug macros
Browse files Browse the repository at this point in the history
  • Loading branch information
brucehow committed Sep 25, 2019
1 parent f9e125c commit ee5e382
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,6 @@
#define OUTPUT_NAME_SIZE 31
#define SID 22242664

// DEBUG MACROS
#define pint(x) printf("%s = %d\n", #x, x); fflush(stdout);
#define pstr(x) printf("%s = %s\n", #x, x); fflush(stdout);
#define p() printf("HERE\n");fflush(stdout);

// Matrix type classifier
enum VAR_TYPE {TYPE_INT, TYPE_FLOAT, INVALID};
enum ROUTINE_TYPE {SM, TR, AD, TS, MM, UNDEF};
Expand Down Expand Up @@ -312,4 +307,4 @@ struct CSC {
struct ROUTINE {
enum ROUTINE_TYPE type;
double scalar; // If SM is used
};
};

0 comments on commit ee5e382

Please sign in to comment.