Remove eigen compliation option (#161)

Remove eigen option
This commit is contained in:
Jack Zhou
2022-08-26 11:20:52 +08:00
committed by GitHub
parent e345ef6fd9
commit 391d66381f
10 changed files with 10 additions and 35 deletions

View File

@@ -20,7 +20,7 @@
#include "gtest_utils.h"
namespace fastdeploy {
#ifdef ENABLE_FDTENSOR_FUNC
TEST(fastdeploy, softmax) {
FDTensor input, output;
CheckShape check_shape;
@@ -44,5 +44,5 @@ TEST(fastdeploy, softmax) {
check_data(reinterpret_cast<const float*>(output.Data()),
expected_result_axis1.data(), expected_result_axis1.size());
}
#endif
} // namespace fastdeploy