From 8f25d480670593bb12d2a4cb69e61015d0746dba Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Wed, 8 Jan 2025 08:20:21 -0800 Subject: [PATCH] Remove comment relic. --- src/lib/nano-pow/shaders/gpu-compute.ts | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/lib/nano-pow/shaders/gpu-compute.ts b/src/lib/nano-pow/shaders/gpu-compute.ts index 00c3aab..6e485bf 100644 --- a/src/lib/nano-pow/shaders/gpu-compute.ts +++ b/src/lib/nano-pow/shaders/gpu-compute.ts @@ -18,26 +18,6 @@ struct WORK { */ const BLAKE2B_IV32_1: u32 = 0x6A09E667u; -/** -* These are offsets into the input data buffer for each mixing step. -* They are multiplied by 2 from the original SIGMA values in -* the C reference implementation, which refered to uint64s. -* -* const SIGMA82: array = array( -* 0u,2u,4u,6u,8u,10u,12u,14u,16u,18u,20u,22u,24u,26u,28u,30u, -* 28u,20u,8u,16u,18u,30u,26u,12u,2u,24u,0u,4u,22u,14u,10u,6u, -* 22u,16u,24u,0u,10u,4u,30u,26u,20u,28u,6u,12u,14u,2u,18u,8u, -* 14u,18u,6u,2u,26u,24u,22u,28u,4u,12u,10u,20u,8u,0u,30u,16u, -* 18u,0u,10u,14u,4u,8u,20u,30u,28u,2u,22u,24u,12u,16u,6u,26u, -* 4u,24u,12u,20u,0u,22u,16u,6u,8u,26u,14u,10u,30u,28u,2u,18u, -* 24u,10u,2u,30u,28u,26u,8u,20u,0u,14u,12u,6u,18u,4u,16u,22u, -* 26u,22u,14u,28u,24u,2u,6u,18u,10u,0u,30u,8u,16u,12u,4u,20u, -* 12u,30u,28u,18u,22u,6u,0u,16u,24u,4u,26u,14u,2u,8u,20u,10u, -* 20u,4u,16u,8u,14u,12u,2u,10u,30u,22u,18u,28u,6u,24u,26u,0u, -* 0u,2u,4u,6u,8u,10u,12u,14u,16u,18u,20u,22u,24u,26u,28u,30u, -* 28u,20u,8u,16u,18u,30u,26u,12u,2u,24u,0u,4u,22u,14u,10u,6u -* ); -*/ /** * G Mixing function -- 2.34.1