Skip to content

Commit

Permalink
-lpthread
Browse files Browse the repository at this point in the history
  • Loading branch information
b4rtaz committed Jan 23, 2024
1 parent 8dcb370 commit 7eb77ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ tokenizer: src/tokenizer.cpp
main: src/main.cpp utils quants funcs socket transformer transformer-tasks tokenizer
$(CXX) $(CXXFLAGS) src/main.cpp -o main utils.o quants.o funcs.o socket.o transformer.o transformer-tasks.o tokenizer.o -lpthread
quants-test: src/quants.cpp utils quants
$(CXX) $(CXXFLAGS) src/quants-test.cpp -o quants-test utils.o quants.o
$(CXX) $(CXXFLAGS) src/quants-test.cpp -o quants-test utils.o quants.o -lpthread
transformer-tasks-test: src/transformer-tasks-test.cpp utils quants funcs socket transformer transformer-tasks tokenizer
$(CXX) $(CXXFLAGS) src/transformer-tasks-test.cpp -o transformer-tasks-test utils.o quants.o funcs.o socket.o transformer.o transformer-tasks.o tokenizer.o
$(CXX) $(CXXFLAGS) src/transformer-tasks-test.cpp -o transformer-tasks-test utils.o quants.o funcs.o socket.o transformer.o transformer-tasks.o tokenizer.o -lpthread
1 change: 1 addition & 0 deletions src/quants-test.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <cstdlib>
#include <cstdio>
#include <cmath>
#include "utils.hpp"
#include "quants.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/transformer-tasks-test.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <cstring>
#include <cstdint>
#include <cstdio>
#include <cmath>
#include <cassert>
#include "utils.hpp"
Expand Down

0 comments on commit 7eb77ca

Please sign in to comment.