Skip to content
Snippets Groups Projects
Commit c1ca4faa authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Removed the (unused) queue counter and the links to the BLAS and Lapack libraries

parent acaed861
No related branches found
No related tags found
Loading
# This file is part of SWIFT. # This file is part of SWIFT.
# Copyright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk), # Copyright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk),
# Matthieu Schaller (matthieu.schaller@durham.ac.uk). # Matthieu Schaller (matthieu.schaller@durham.ac.uk).
...@@ -17,10 +16,10 @@ ...@@ -17,10 +16,10 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# Add the debug flag to the whole thing # Add the debug flag to the whole thing
AM_CFLAGS = -DTIMER -DCOUNTER $(HDF5_CPPFLAGS) AM_CFLAGS = -DTIMER $(HDF5_CPPFLAGS)
# Assign a "safe" version number # Assign a "safe" version number
AM_LDFLAGS = $(LAPACK_LIBS) $(BLAS_LIBS) $(HDF5_LDFLAGS) -version-info 0:0:0 # -fsanitize=address AM_LDFLAGS = $(HDF5_LDFLAGS) -version-info 0:0:0
# The git command, if available. # The git command, if available.
GIT_CMD = @GIT_CMD@ GIT_CMD = @GIT_CMD@
......
...@@ -38,16 +38,6 @@ ...@@ -38,16 +38,6 @@
#include "const.h" #include "const.h"
#include "error.h" #include "error.h"
/* Counter macros. */
#ifdef COUNTER
#define COUNT(c) (__sync_add_and_fetch(&queue_counter[c], 1))
#else
#define COUNT(c)
#endif
/* The counters. */
int queue_counter[queue_counter_count];
/** /**
* @brief Enqueue all tasks in the incoming DEQ. * @brief Enqueue all tasks in the incoming DEQ.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment