mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2026-04-27 10:43:02 +08:00
355382ad63
* remove useless statement * Add eigen to third_party dir * remove reducdant lines
6 lines
145 B
Plaintext
6 lines
145 B
Plaintext
template <class ArgType>
|
|
Circulant<ArgType> makeCirculant(const Eigen::MatrixBase<ArgType>& arg)
|
|
{
|
|
return Circulant<ArgType>(arg.derived());
|
|
}
|