Raghuveer Devulapalli

Results 122 comments of Raghuveer Devulapalli

@seiko2plus Didnt mean to rush you. Please take your time.

Apologies for the late response, was out on a long holiday with no access to my computer. It seems like there are other open source libraries that have expressed interest...

How do I add submodules in Windows CI job? Adding `submodules: true `to this line work? https://github.com/numpy/numpy/blob/d352270849b3cbff4fcf5511551a247065474f01/azure-pipelines.yml#L290 Edit: Lets give it a shot!

Looks like the azure pipelines didnt even run. Odd that it didnt throw an error

> Can you call `git submodules update --init` ? like this? ``` steps: - template: azure-steps-windows.yml - script: git submodule update --init displayName: 'Fetch submodules' ``` Edit: https://learn.microsoft.com/en-us/azure/devops/pipelines/yaml-schema/steps-template?view=azure-pipelines

Not yet, might be an interesting comparison though.

That is true @victor-zou. It will need implementing key-value network sort for 32bit data in ZMM registers. I do have this in my to do list, not sure when I...

Hi @sergii-mamedov that isn't in my to do list (at least not yet) unless there is a good enough justification to work on those. Is there a reason why merge/tim...

curious as to what data type and distribution you have in your application. On NumPy benchmarks, quicksort is slower than merge sort only for ordered and reverse arrays: ``` quick...

HI @KungFuJesus. We haven't compared performance of `avx512_argsort` with IPP SortRadixIndexAscend yet. I will try to do this sometime next week. `avx512_argsort` used to leverage gather instruction heavily, but because...