gpt4 book ai didi

c++ - 如何将 Eigen::Tensor 传播到更高维度?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:14:05 25 4
gpt4 key购买 nike

我想将一个 N 维 Eigen::Tensor 广播到一个 (N+1) 维 Tensor 来做一些简单的代数。我想不出正确的语法。

我已经尝试过就地广播,并将广播的结果分配给一个新的张量。两者都无法编译并显示大量模板错误消息(在 Mac 上使用 Apple Clang 10.0.1 编译)。我认为相关的问题是编译器无法为 .resize() 找到有效的重载。我已尝试使用 std::arrayEigen::array 和 `Eigen::Tensor::Dimensions 进行维度类型的广播操作,但均无效:

    srand(time(0));
Eigen::Tensor<float, 3> t3(3, 4, 5);
Eigen::Tensor<float, 2> t2(3, 4);
t3.setRandom();
t2.setRandom();
// In-place operation
t3 /= t2.broadcast(std::array<long, 3>{1, 1, 5}); // Does not compile
// With temporary
Eigen::Tensor<float, 3> t2b = t2.broadcast(Eigen::array<long, 3>{1, 1, 5}); // Does not compile either
t3 /= t2b;

这是 Eigen::Tensor 不支持的东西吗?

最佳答案

Broadcast工作方式略有不同。它需要一个参数来指定张量在每个维度上应该重复多少次。这意味着参数数组长度等于张量秩,并且生成的张量与原始张量具有相同的秩。

但是,这与您最初的意图很接近:只需添加一个整形!

例如:

    Eigen::Tensor<float, 1> t1(3);
t1 << 1,2,3;
auto copies = std::array<long,1> {3};
auto shape = std::array<long,2> {3,3};
Eigen::Tensor<float,2> t2 = t1.broadcast(copies).reshape(shape);

应该产生一个 3 x 3 的“矩阵”,其中包含

1 2 3
1 2 3
1 2 3

关于c++ - 如何将 Eigen::Tensor 传播到更高维度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57772161/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com