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

@@ -17,7 +17,7 @@
#include "fastdeploy/core/fd_tensor.h"
namespace fastdeploy {
#ifdef ENABLE_FDTENSOR_FUNC
/** Excute the transpose operation for input FDTensor along given dims.
@param x The input tensor.
@param out The output tensor which stores the result.
@@ -25,5 +25,4 @@ namespace fastdeploy {
*/
FASTDEPLOY_DECL void Transpose(const FDTensor& x, FDTensor* out,
const std::vector<int64_t>& dims);
#endif
} // namespace fastdeploy