gpt4 book ai didi

c++ - 提供对 SoA 的 AoS 访问

转载 作者:行者123 更新时间:2023-11-28 05:18:04 26 4
gpt4 key购买 nike

我的数据以数组结构 (SoA) 或指针结构 (SoP) 形式布置在内存中,并且有一种方法可以访问该数据,就好像它是以结构数组 (AoS) 形式布置的一样 - - 代码如下。

但是,我不太喜欢使用struct AoS_4_SoP——虽然这个struct似乎使用了模板,但它并不是真正通用的,因为,例如,foobar 是硬编码在里面的。

两个问题/要求:

1) 对于读写性能,提供的 AoS 访问是否与直接 SoA 访问一样好?

2) 更通用的方案是什么? (我看过 quamranacode here ,但没有帮助。)

struct  SoP{      // Structure of Pointers
int *foo{ nullptr };
double *bar{ nullptr };
SoP( int *xi, double *xd ):foo(xi), bar(xd){};
};

struct SoR{ // Structure of References
int &foo;
double &bar;
SoR( int &xi, double &xd ):foo(xi), bar(xd){};
};

template< typename T, typename S >
struct AoS_4_SoP {
AoS_4_SoP( T *x ) : p( x ){};
T *p;

S operator[](std::size_t idx) const { return { p->foo[idx], p->bar[idx] }; }
const S operator[](std::size_t idx) const { return { p->foo[idx], p->bar[idx] }; }
};

这里有一个 main() 显示了上面的用法:

int main()
{
std::vector< int > ibuf{ 11, 22, 33, 44 };
std::vector< double > dbuf{ 0.11, 0.22, 0.33, 0.44 };;

SoP x_sop( ibuf.data(), dbuf.data() );

ibuf.at(2) = 333;
std::cout << "Access via SoP syntax:\n "
<< x_sop.foo[2]
<< " "
<< x_sop.bar[2] << std::endl;

AoS_4_SoP<SoP, SoR> xacc( &x_sop );

std::cout << "Access via AoS syntax:\n "
<< xacc[2].foo
<< " "
<< xacc[2].bar << std::endl;

// show write access via SoA syntax
ibuf.at(2) = 3333;
dbuf.at( 2 ) = 0.333333; // will get overwritten below
xacc[2].bar = 0.3333;

std::cout << "Values written via SoP, read via SoP:\n "
<< x_sop.foo[2]
<< " "
<< x_sop.bar[2] << std::endl;

// show write access via AoS syntax
xacc[2].foo = 333333;
dbuf.at( 2 ) = 0.3333333333; // will get overwritten below
xacc[2].bar = 0.333333;

std::cout << "Values written via AoS, read via AoS:\n "
<< xacc[2].foo
<< " "
<< xacc[2].bar << std::endl;
}

以上代码可以通过以下方式编译:

// x86_64-w64-mingw32-g++.exe -D_WIN64 -Wall -Wextra -Werror -std=c++11 -O3 -static-libgcc -static-libstdc++ aossoa.cc -o aossoa.exe

结果如下:

Access via SoP syntax:
333 0.33
Access via AoS syntax:
333 0.33
Values written via SoP, read via SoP:
3333 0.3333
Values written via AoS, read via AoS:
333333 0.333333

最佳答案

我认为这个模板可以工作。

template<class T, class U, class D, class S>
struct Accessor {
T* p;
U* (T::*pFirst);
D* (T::*pSecond);
S operator[](size_t index) {
return {(p->*pFirst)[index], (p->*pSecond)[index]};
}
Accessor(T* p_, U * (T::*pF), D * (T::*pS)): p(p_), pFirst(pF), pSecond(pS) {}
};

void main() {
std::vector< int > ibuf{ 11, 22, 33, 44 };
std::vector< double > dbuf{ 0.11, 0.22, 0.33, 0.44 };;

SoP x_sop(ibuf.data(), dbuf.data());

Accessor<SoP, int, double, SoR> aos(&x_sop, &SoP::foo, &SoP::bar);

aos[0].foo;
}

现在模板访问器对 T 的成员名称一无所知。

至少是在VS2015下编译

关于c++ - 提供对 SoA 的 AoS 访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42184288/

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