top of page

Boids (Personal Project)

Compute Shader

In this iteration of my boid project I moved the calculations to the GPU to increase the amount of boids the simulation can handle. Boid calculations are quite cumbersome for the computer, if not special techniques are used, like spacial partitioning. Since I have not yet implemented spacial partitioning, the system at present can handle 500-1000 units, 500 as in the video is handles the boid on an average of one millisecond, while 1000 units require around three. As I deepen my knowledge of compute shaders and how to use them appropriately in a project I think there is plenty of room for optimization with a cube grid and a spacial partition system as a first step. Another interesting experiment is to build a system for Unity Entity Component System and see how the system behaves in a data oriented environment.



bottom of page