Git Product home page Git Product logo

merlin_rust's Introduction

Merlin

rustc 1.70 stable MIT License Build status Tests status

Make your code fly

Merlin is a dynamically and strongly typed programming language written in Rust. Merlin's threading system empowers programmers to write powerful code that leverages concurrency - regardless of whether your system has atomics.

Merlin uses Rust's atomic data types to remove the need for a GIL without sacrificing performance. In addition, it has a register-based interpreter (like CPUs) which has large performance advantages over the Python stack-based interpreter that is simpler and needs to shuffle a lot of memory around.

Current comparison to Python:

With this code:

a=1
b=2
a+b
a+b
a+b

Total execution time:

Merlin 1.3 (release): 20 ns

./merlin program.me -t 10000

Python 3.10.6: 54.9 ns

python3 -m timeit -c "a=1;b=2;a+b;a+b;a+b"

Merlin is: 2.75x faster


With this code:

a=1
b=2
a+b
a+b
a+b
a+b
a+b
a+b

Total execution time:

Merlin 1.3 (release): 57.86 ns

./merlin program.me -t 10000

Python 3.10.6: 103 ns

python3 -m timeit -c "a=1;b=2;a+b;a+b;a+b;a+b;a+b;a+b"

Merlin is: 1.78x faster


Merlin 1.3: 2.89x slower for 2x more.

Python 3.10.6: 1.87x slower for 2x more.

Installation

To get started with Merlin:

  • Download rust (preferably with rustup command line tool)
  • Run make release
  • Execute code using the generated binary!

Docs

merlin_rust's People

Contributors

ericlbuehler avatar szepeviktor avatar

Stargazers

 avatar  avatar

Watchers

 avatar

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.