ogl_beamforming

Ultrasound Beamforming Implemented with OpenGL
git clone anongit@rnpnr.xyz:ogl_beamforming.git
Log | Files | Refs | Feed | Submodules | LICENSE

Commit: 10bb1639c2f9563874aeb9702f2473b7dd0bdffa
Parent: 9bf12a81b2ad0480ac1ea4d1afdbc79b3f5c49c0
Author: Randy Palamar
Date:   Tue, 19 Nov 2024 15:20:57 -0700

fix cuda buffer offset

Diffstat:
Mbeamformer.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/beamformer.c b/beamformer.c @@ -122,7 +122,7 @@ alloc_shader_storage(BeamformerCtx *ctx, Arena a) ctx->cuda_lib.register_cuda_buffers(cs->rf_data_ssbos, ARRAY_COUNT(cs->rf_data_ssbos), cs->raw_data_ssbo); ctx->cuda_lib.init_cuda_configuration(bp->rf_raw_dim.E, bp->dec_data_dim.E, - bp->channel_mapping, bp->channel_offset > 0); + bp->channel_mapping, bp->channel_offset); break; }