topk
topk copied to clipboard
fix TOPK.PRANGE DESC issue
- for ASC it run correctly because it replies with vector[0] to vector[vector_size-1]
- for DESC it run not incorrectly as my previous comment because replies with vector[vector_size] to vector[1].
-> fixed DESC: replying with vector[vector_size-1] to vector[0]