08 - Vectorized Query Execution with SIMD (CMU Advanced Databases / Spring 2023)

preview_player
Показать описание

15-721 Advanced Database Systems (Spring 2023)
Carnegie Mellon University
Рекомендации по теме
Комментарии
Автор

at 35:40, [a, b, 0, 0] = expand(0101, [a, b, c, d])
but in paper, [0, a, 0, b] = expand(0101, [a, b, c, d])
It seems that the paper is more in line with the "expand" semantics

周章华-bm
Автор

39:45 why do you call a ternary operator "branchless"? `m = key >= low ? 1 : 0` naturally translates into `m = if key >= low then 1 else 0`, which is obviously "branchful"

neshkeev