From 43e91802254a9b649925fa66d2e15808943e5aaa Mon Sep 17 00:00:00 2001 From: Konstantin Date: Tue, 24 Jan 2023 16:22:25 +0100 Subject: Minor, cleanup unused --- ComputeShaders/mulMatByRowTiled.hlsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ComputeShaders') diff --git a/ComputeShaders/mulMatByRowTiled.hlsl b/ComputeShaders/mulMatByRowTiled.hlsl index 98ba59a..8bf62d7 100644 --- a/ComputeShaders/mulMatByRowTiled.hlsl +++ b/ComputeShaders/mulMatByRowTiled.hlsl @@ -40,7 +40,7 @@ static const uint heightVectors = ( heightScalars + 3 ) / 4; groupshared float4 reductionBuffer[ heightVectors ][ THREADS_Y ][ THREADS_X ]; [numthreads( THREADS_X, THREADS_Y, 1 )] -void main( uint3 group: SV_GroupID, uint3 thread : SV_GroupThreadID, uint threadFlattenned : SV_GroupIndex ) +void main( uint3 group: SV_GroupID, uint3 thread : SV_GroupThreadID ) { uint i; // Despite inside GPU cores, the shared memory is still much slower than registers -- cgit v1.2.3