Skip to content
This repository was archived by the owner on Jul 3, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/layers/bnll_layer.cpp
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <algorithm>
#include <vector>
#include <cmath>

#include "./bnll_layer.hpp"

Expand Down
1 change: 1 addition & 0 deletions src/layers/elu_layer.cpp
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <algorithm>
#include <vector>
#include <cmath>

#include "./elu_layer.hpp"

Expand Down
1 change: 1 addition & 0 deletions src/layers/spp_layer.cpp
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#include <algorithm>
#include <vector>
#include <cmath>

#include "./concat_layer.hpp"
#include "./flatten_layer.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/layers/tanh_layer.cpp
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Adapted from ReLU layer code written by Yangqing Jia

#include <vector>
#include <cmath>

#include "./tanh_layer.hpp"

Expand Down
2 changes: 1 addition & 1 deletion tests/tests.cmake
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cpp
add_executable(run_net ${CMAKE_CURRENT_LIST_DIR}/run_net.cpp)
target_link_libraries(run_net caffe)
target_link_libraries(run_net caffe pthread)

# c
add_executable(run_net_c ${CMAKE_CURRENT_LIST_DIR}/run_net.c)
Expand Down