Skip to content

Commit 9ba3d2e

Browse files
committed
Version bump to v3.4
1 parent 662e7f4 commit 9ba3d2e

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
The fastest and most memory efficient lattice Boltzmann CFD software, running on all GPUs and CPUs via [OpenCL](https://github.com/ProjectPhysX/OpenCL-Wrapper "OpenCL-Wrapper"). Free for non-commercial use.
44

5-
<a href="https://youtu.be/-MkRBeQkLk8"><img src="https://img.youtube.com/vi/o3TPN142HxM/maxresdefault.jpg" width="50%"></img></a><a href="https://youtu.be/oC6U1M0Fsug"><img src="https://img.youtube.com/vi/oC6U1M0Fsug/maxresdefault.jpg" width="50%"></img></a><br>
6-
<a href="https://youtu.be/XOfXHgP4jnQ"><img src="https://img.youtube.com/vi/XOfXHgP4jnQ/maxresdefault.jpg" width="50%"></img></a><a href="https://youtu.be/K5eKxzklXDA"><img src="https://img.youtube.com/vi/K5eKxzklXDA/maxresdefault.jpg" width="50%"></img></a>
5+
<a href="https://youtu.be/-MkRBeQkLk8"><img src="https://img.youtube.com/vi/o3TPN142HxM/maxresdefault.jpg" width="50%"></img></a><a href="https://youtu.be/1z5-ddsmAag"><img src="https://img.youtube.com/vi/1z5-ddsmAag/maxresdefault.jpg" width="50%"></img></a><br>
6+
<a href="https://youtu.be/2BPP1oWzvi0"><img src="https://img.youtube.com/vi/2BPP1oWzvi0/maxresdefault.jpg" width="50%"></img></a><a href="https://youtu.be/K5eKxzklXDA"><img src="https://img.youtube.com/vi/K5eKxzklXDA/maxresdefault.jpg" width="50%"></img></a>
77
(click on images to show videos on YouTube)
88

99
<details><summary>Update History</summary>
@@ -230,6 +230,12 @@ The fastest and most memory efficient lattice Boltzmann CFD software, running on
230230
- fixed missing `<chrono>` header on some compilers
231231
- fixed bug in `split_regex()`
232232
- fixed compiler warning with `min_int`
233+
- [v3.4](https://github.com/ProjectPhysX/FluidX3D/releases/tag/v3.4) (02.07.2025) [changes](https://github.com/ProjectPhysX/FluidX3D/compare/v3.3...v3.4) (bug fixes)
234+
- updated OpenCL driver install versions
235+
- minor refactoring in `stream_collide()`
236+
- fixed bug in insertion-sort in `voxelize_mesh()` kernel causing crash on AMD GPUs
237+
- fixed bug in `voxelize_mesh_on_device()` host code causing initialization corruption on AMD GPUs
238+
- fixed dual CU and IPC reporting on AMD RDNA 1-4 GPUs
233239

234240
</details>
235241

src/info.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ void Info::print_logo() const {
4242
print("| "); print("\\ \\ / /", c); print(" |\n");
4343
print("| "); print("\\ ' /", c); print(" |\n");
4444
print("| "); print("\\ /", c); print(" |\n");
45-
print("| "); print("\\ /", c); print(" FluidX3D Version 3.3 |\n");
45+
print("| "); print("\\ /", c); print(" FluidX3D Version 3.4 |\n");
4646
print("| "); print( "'", c); print(" Copyright (c) Dr. Moritz Lehmann |\n");
4747
print("|-----------------------------------------------------------------------------|\n");
4848
}

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void main_label(const double frametime) {
7777
draw_label(ox, oy+i, "Steps " +alignr(31u, /************************************/ alignr(10u, info.lbm->get_t())+" ("+alignr(5, to_uint(1.0/info.runtime_lbm_timestep_smooth))+" Steps/s)"), c); i+=FONT_HEIGHT;
7878
draw_label(ox, oy+i, "FPS " +alignr(33u, /************************************************************/ alignr(4u, to_uint(1.0/frametime))+" ("+alignr(5u, camera.fps_limit)+" fps max)"), c);
7979
}
80-
draw_label(2, camera.height-1*(FONT_HEIGHT)-1, "FluidX3D v3.3 Copyright (c) Dr. Moritz Lehmann", c);
80+
draw_label(2, camera.height-1*(FONT_HEIGHT)-1, "FluidX3D v3.4 Copyright (c) Dr. Moritz Lehmann", c);
8181
if(!key_H) {
8282
draw_label(camera.width-16*(FONT_WIDTH)-1, 2, "Press H for Help", c);
8383
} else {

src/resource.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ BEGIN
2424
VALUE "LegalCopyright", "(c) Dr. Moritz Lehmann"
2525
VALUE "OriginalFilename", "FluidX3D.exe"
2626
VALUE "ProductName", "FluidX3D"
27-
VALUE "ProductVersion", "v3.3"
27+
VALUE "ProductVersion", "v3.4"
2828
END
2929
END
3030
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)