Git Product home page Git Product logo

cython-argsort's People

Contributors

jcrudy avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

cython-argsort's Issues

Numpy's argsort function is performing faster than cython-argsort

import numpy as np

v = np.random.rand(1000)

%timeit v.argsort()
>> 19.6 µs ± 107 ns per loop (mean ± std. dev. of 7 runs, 10000 loops each)

o = np.empty(v.shape[0], dtype="int")
%timeit cython_implementation.argsort(v, o)
>> 71 µs ± 275 ns per loop (mean ± std. dev. of 7 runs, 10000 loops each)

This holds true for bigger arrays as well. Is there something I'm missing?

Is Numpy faster?

Hello,

when i tried the test_argsort.py (with n = 10000000), I get the following result:
Cython time: 2.513885974884033
Numpy time: 2.006075620651245

Shouldn't cython be faster? Do you also get the same results?

PS: I was new to cython and spent a lot of time making this work. it'd be nice if you could update readme with more details. Also in test_argsort.py,

import argsort
should be
from cyargsort import argsort
otherwise I get this error : SystemError: Parent module '' not loaded, cannot perform relative import

Thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.