C++非交错存储元组的容器

发布于 2024-11-14 20:22:51 字数 656 浏览 2 评论 0 原文

我正在寻找 元组std::vectorstd::array 变体,其中元组元素放置在 非交错进入单独的内存区域,而不是像 std::vector 那样交错。 >

这样做的动机是

  • 更好地控制对齐,从而提高矢量优化的性能。
  • 防止我们在 OpenGL 中连接低级 CPU-GPU 数据传输操作(例如顶点和颜色数组)时解压数据元素。

取消引用时,迭代器应构造并返回一个 boost::tuple 动态

我知道并非所有 STL 成员函数都能在此容器中得到有效支持。例如,STL data() 容器成员函数必须动态压缩所有单独的数组到一个可变的动态创建的向量容器中并返回它的数据()。

有人已经建造过这样的桌子容器了吗?

I'm looking for a variant of std::vector or std::array of tuples, where the tuple elements are placed non-interleaved into separate memory areas instead of interleaved as would be the case for, for example, a std::vector<std::tuple<...>>.

The motivations for this is

  • Better control over alignment and in turn better performance for vector optimizations.
  • Prevents us from having to unpack data-elements when interfacing low-level CPU-GPU data-transfer-operations (such as an array of vertices and colors) in OpenGL.

Iterators should construct and return a boost::tuple<> on-the-fly when dereferenced.

I'm aware that not all STL-member functions could be supported efficiently in this container. For example the STL data() container member function would have to dynamically zip together all the separate arrays into a mutable dynamically created vector container and return its data().

Has anybody constructed such a table container already?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

零時差 2024-11-21 20:22:51

Boost.Iterator 正是您所描述的: boost::zip_iterator

Boost.Iterator has exactly what you describe: boost::zip_iterator

儭儭莪哋寶赑 2024-11-21 20:22:51

创建一个支持迭代和围绕元组<向量、向量、向量>进行迭代和一些其他操作并以这种方式表示数据的瘦包装器怎么样?我不知道有任何标准容器可以提供您需要的接口。

What about creating a thin wrapper that supports iteration and a few other operations around a tuple<vector, vector, vector> and representing the data in that way? I'm not aware of any standard container that provides the interface you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文