Choose timezone
Your profile timezone:
Color code: (critical, news during the meeting: green, news from this week: blue, news from last week: purple, no news: black)
High priority Framework issues:
Sync reconstruction
Async reconstruction
AliECS related topics:
GPU ROCm / compiler topics:
TPC / GPU Processing
Other Topics
EPN major topics:
Other EPN topics:
/home/epn/odc/files in DPL workflows to remove the dependency on the NFS
logWatcher.sh and logFetcher scripts modified by EPN to remove dependencies on epnlog user
log_access role to allow access in logWatcher mode to retrieve log files, e.g. for on-call shiftersstring -> string_view )BEAMTYPE for oxygen period








struct Point { float x, y, z; };template <int N>using AoS = Point[N];template <int N>void sum(AoS<N> p) {for (int i = 0; i < N; ++i) {p[i].z = p[i].x + p[i].y + p[i].z;}}int main() {AoS<2> p = {{1, 2, 3}, {1, 2, 3}};sum(p);return 0;}
template <int N>struct SoA {int x[N], y[N], z[N];};template <int N>void sum(SoA<N> p) {for (int i = 0; i < N; ++i) {p.z[i] = p.x[i] + p.y[i] + p.z[i];}}int main() {SoA<2> p = {{1, 1}, {2, 2}, {3, 3}};sum(p);return 0;}