Skip to content

Commit

Permalink
Change local_size_x to 32
Browse files Browse the repository at this point in the history
  • Loading branch information
angelz913 committed Aug 2, 2024
1 parent d82f98c commit 8cab0ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmarks/argmax/one_workgroup_argmax_loop.glsl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# version 450 core
#extension GL_EXT_control_flow_attributes : enable

layout(local_size_x = 16, local_size_y = 1, local_size_z = 1) in;
layout(local_size_x = 32, local_size_y = 1, local_size_z = 1) in;

layout(set=0, binding=0) buffer InputBuffer { float data[]; } Input;
layout(set=0, binding=1) buffer OutputBuffer { uint data; } Output;
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/argmax/one_workgroup_argmax_subgroup.glsl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#extension GL_KHR_shader_subgroup_arithmetic : enable
#extension GL_KHR_shader_subgroup_ballot : enable

layout(local_size_x = 16, local_size_y = 1, local_size_z = 1) in;
layout(local_size_x = 32, local_size_y = 1, local_size_z = 1) in;

layout(set=0, binding=0) buffer InputBuffer { float data[]; } Input;
layout(set=0, binding=1) buffer OutputBuffer { uint data; } Output;
Expand Down

0 comments on commit 8cab0ac

Please sign in to comment.