Commit ebdd2e0e authored by malenovsky's avatar malenovsky
Browse files

Merge branch '1134-sudden-recent-increase-of-wmops-in-bi-daily-ci-complexity-pipeline' into 'main'

Resolve "Sudden recent increase of WMOPS in bi-daily CI complexity pipeline"

Closes #1134

See merge request !906
parents d67e2c9d 0462c130
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2499,11 +2499,11 @@ long DeltaWeightedOperation( unsigned int CounterId )
void Reset_BASOP_WMOPS_counter( unsigned int counterId )
{
    int i;
    long *ptr;
    unsigned int *ptr;

    /* reset the current BASOP operation counter */
    ptr = (long *) &multiCounter[counterId];
    for ( i = 0; i < (int) ( sizeof( multiCounter[counterId] ) / sizeof( long ) ); i++ )
    ptr = (unsigned int *) &multiCounter[counterId];
    for ( i = 0; i < (int) (sizeof(BASIC_OP) / sizeof(unsigned int)); i++ )
    {
        *ptr++ = 0;
    }