-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
69 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -254,6 +254,16 @@ fi | |
%endif | ||
|
||
%changelog | ||
* Sun Jul 28 2024 KaiGai Kohei <[email protected]> - 5.2-2 | ||
- fixed two critical bugs (#817, #812) | ||
|
||
* Sun Jul 14 2024 KaiGai Kohei <[email protected]> - 5.2-1 | ||
- Support of pinned-inner-buffer for large tables GpuJoin | ||
- Per-tuple CPU-fallback, and CPU-fallback in GpuPreAgg | ||
- 64bit GPU Buffer representation | ||
- Improved GPU-Direct SQL performance using device primary context | ||
- various bug fixes | ||
|
||
* Thu May 2 2024 KaiGai Kohei <[email protected]> - 5.1-2 | ||
- RPM specfile is revised (-PGxx is now built as sub-package) | ||
- various bug fixes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
@ja:#PG-Strom v5.3リリース | ||
@en:#PG-Strom v5.3 Release | ||
|
||
<div style="text-align: right;">PG-Strom Development Team (xx-xxx-2024)</div> | ||
|
||
@ja:##概要 | ||
@en:##Overview | ||
|
||
@ja{ | ||
PG-Strom v5.3における主要な変更は点は以下の通りです。 | ||
|
||
- GpuJoin Pinned Inner Buffer | ||
- GPU-Direct SQLの性能改善 | ||
- GPUバッファの64bit化 | ||
- 行単位CPU-Fallback | ||
- SELECT DISTINCT句のサポート | ||
- pg2arrow並列モードの性能改善 | ||
- 累積的なバグの修正 | ||
} | ||
|
||
@en{ | ||
Major changes in PG-Strom v5.3 are as follows: | ||
|
||
- GpuJoin Pinned Inner Buffer | ||
- Improved GPU-Direct SQL performance | ||
- 64bit GPU Buffer representation | ||
- Per-tuple CPU-Fallback | ||
- SELECT DISTINCT support | ||
- Improced parallel pg2arrow | ||
- Cumulative bug fixes | ||
} | ||
|
||
@ja:##動作環境 | ||
@en:##Prerequisites | ||
|
||
@ja{ | ||
- PostgreSQL v15.x, v16.x | ||
- CUDA Toolkit 12.2 以降 | ||
- CUDA ToolkitのサポートするLinuxディストリビューション | ||
- Intel x86 64bit アーキテクチャ(x86_64) | ||
- NVIDIA GPU CC 6.0 以降 (Pascal以降; Turing以降を推奨) | ||
} | ||
@en{ | ||
- PostgreSQL v15.x, v16.x | ||
- CUDA Toolkit 12.2 or later | ||
- Linux distributions supported by CUDA Toolkit | ||
- Intel x86 64bit architecture (x86_64) | ||
- NVIDIA GPU CC 6.0 or later (Pascal at least; Turing or newer is recommended) | ||
} | ||
|
||
|
||
@ja:##累積的なバグの修正 | ||
@en:##Cumulative bug fixes | ||
|
||
- [#812] CPU-fallback at depth>0 didn't set ecxt_scanslot correctly. | ||
- [#817] GPU-Service didn't detach worker thread's exit status. | ||
|