You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Append
+- GpuJoin on ptable_1
| + GpuScan on i_table
+- GpuJoin on ptable_2
| + GpuScan on i_table
+- GpuJoin on ptable_3
| + GpuScan on i_table
+- GpuJoin on ptable_4
+ GpuScan on i_table
であるケースで、現在の実装は
i_table
のバッファを4つ重複して持ってしまう。i_table
が小さければ良いが、大きい場合、GPUメモリを食いつくしてしまう。Inner-Bufferを共有する事でGPUメモリを節約する。
関連issue #802
The text was updated successfully, but these errors were encountered: