Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rochacbruno/rust-python-example
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: rochacbruno/rust-python-example
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cython
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 5 files changed
  • 2 contributors

Commits on Nov 18, 2017

  1. Add a cython test to give perspective on relative ease/performance

    The cython implementation is about 2x slower than the Rust
    implementation, but it's not clear if the slice in the cython
    call is actually doing a copy of the entire memory-area or just
    doing a simple reference of the memory.
    
    Note that the cython implementation doesn't build a proper module
    with setup.py, it just uses the command-line cythonize operation
    to produce a quick-and-dirty extension.
    mcfletch committed Nov 18, 2017
    Configuration menu
    Copy the full SHA
    3c0c878 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2017

  1. Configuration menu
    Copy the full SHA
    10e4e6a View commit details
    Browse the repository at this point in the history
Loading