Mojo | |
Family: | Python |
Designer: | Chris Lattner[1] |
Developer: | Modular Inc. |
Latest Preview Version: | 24.4 [2] |
Operating System: | Cross-platform |
License: | Proprietary |
Influenced By: | Python, Cython, C, C++, Rust, Swift, Zig |
File Ext: | (the fire emoji/U+1F525 Unicode character), alternatively |
Mojo is a programming language in the Python family that is currently under development.[3] [4] [5] It is available both in browsers via Jupyter notebooks,[6] and locally on Linux and macOS.[7] [8] Mojo aims to combine the usability of higher level programming languages, specifically Python, with the performance of lower level programming languages like C++, Rust, and Zig.[9] The Mojo compiler is currently closed source with an open source standard library, although Modular, the company behind Mojo, has stated their intent to eventually open source the Mojo programming language itself as it matures.[10]
Mojo builds upon the MLIR compiler framework instead of directly on the lower level LLVM compiler framework that many languages like Julia, Swift, clang and Rust do.[11] [12] MLIR is a newer compiler framework that allows Mojo to take advantage of higher level compiler passes not available in LLVM alone and allows Mojo to compile down and target more than just CPUs, including producing code that can run on GPUs, TPUs, ASICs and other accelerators. It can also often more effectively use certain types of CPU optimizations directly, like SIMD without direct intervention by the developer like in many other languages.[13] [14] According to Jeremy Howard of fast.ai, Mojo can be seen as "syntax sugar for MLIR" and for that reason Mojo is well optimized for applications like AI.[15]
The Mojo programming language was created by Modular Inc, which was founded by Chris Lattner, the original architect of the Swift programming language and LLVM, and Tim Davis, a former Google employee.[16] Intention behind Mojo is to bridge the gap between Python’s ease of use and the fast performance required for cutting-edge AI applications.[17]
According to public change logs, Mojo development goes back to 2022.[18] In May of 2023, the first publicly testable version was made available online via a hosted playground.[19] By September 2023 Mojo was available for local download for Linux[20] and by October 2023 it was also made available for download on Apple's macOS. [21]
In March of 2024, Modular open sourced the Mojo standard library and started accepting community contributions under the Apache 2.0 license.[22] [23]
Mojo was created for an easy transition from Python. The language has syntax similar to Python's, with inferred static typing,[24] and allows users to import Python modules.[25] It uses LLVM and MLIR as its compilation backend.[26] [27] The language also intends to add a foreign function interface to call C/C++ and Python code. The language is not source-compatible with Python 3, only providing a subset of its syntax, e.g. missing the keyword, list and dictionary comprehensions, and support for classes. Further, Mojo also adds features that enable performant low-level programming: for creating typed, compiled functions and "struct" for memory-optimized alternatives to classes. Mojo structs support methods, fields, operator overloading, and decorators.
The language also provides a borrow checker, an influence from Rust.[28] Mojo functions use value semantics by default (functions receive a copy of all arguments and any modifications are not visible outside the function), while Python functions use reference semantics (functions receive a reference on their arguments and any modification of a mutable argument inside the function is visible outside).[29]
The language is not open source, but it is planned to be made open source in the future.[30]
In Mojo, functions can be declared using both (for performant functions) or (for Python compatibility).
Basic arithmetic operations in Mojo with a function:
and with an function:
The manner in which Mojo employs and for mutable and immutable variable declarations respectively mirrors the syntax found in Swift. In Swift, is used for mutable variables, while is designated for constants or immutable variables.
Variable declaration and usage in Mojo:
var z = 0 z += 1
The Mojo SDK allows Mojo programmers to compile and execute Mojo source files locally from the command line and currently supports Ubuntu and macOS.[31] Additionally, there is a Mojo extension for Visual Studio Code which provides code completion and tooltips.
In January 2024, an inference model of LLaMA2 written in Mojo was released to the public.[32]