topk icon indicating copy to clipboard operation
topk copied to clipboard

fix TOPK.PRANGE DESC issue

Open ancuop opened this issue 9 years ago • 0 comments

  • 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]

ancuop avatar Jun 28 '16 06:06 ancuop