Julia is a high-level, general-purpose[23] dynamic programming language. Its features are well suited for numerical analysis and computational science.[24][25][26][27]
Distinctive aspects of Julia's design include a type system with parametric polymorphism in a dynamic programming language; with multiple dispatch as its core programming paradigm. Julia supports concurrent, (composable) parallel and distributed computing (with or without using MPI[28] or the built-in corresponding[clarification needed][29] to "OpenMP-style" threads[30]), and direct calling of C and Fortran libraries without glue code. Julia uses a just-in-time (JIT) compiler that is referred to as "just-ahead-of-time" (JAOT) in the Julia community, as Julia compiles all code (by default) to machine code before running it.[23][31]
Julia is garbage-collected,[32] uses eager evaluation, and includes efficient libraries for floating-point calculations, linear algebra, random number generation, and regular expression matching. Many libraries are available, including some (e.g., for fast Fourier transforms) that were previously bundled with Julia and are now separate.[33]
Julia can work with other languages, e.g. has special (keyword) support for calling C language libraries; and e.g. for working with Python, R, Rust, C++, SQL with use of extra packages and to work with or even to compile Julia code to JavaScript.
Julia can be compiled to binary executables using a package for it supporting all Julia features. Small binary executables can also be made using a different package but then the Julia runtime is not included in the executable, e.g. down to 9 KB (then without e.g. the garbage collector since it is part of Julia's runtime, i.e. with similar limited capabilities to the C language), for computers or even microcontrollers, such as Arduino with 2 KB of RAM. By default, Julia code depends on the Julia runtime to support all Julia features, e.g. threading, but some (non-idiomatic, to smaller or larger degree) Julia code can be compiled to small executables (with limited Julia capabilities). In both cases no source code needs to be distributed.
Several development tools support coding in Julia, such as integrated development environments (e.g. for Microsoft's Visual Studio Code, an extension is available[34] providing debugging and linting support); with integrated tools, e.g. a profiler (and flame graph support available[35][36] for the built-in one), debugger,[37] and the Rebugger.jl package "supports repeated-execution debugging"[a] and more.[39]
Work on Julia was started in 2009, by Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and Alan Edelman, who set out to create a free language that was both high-level and fast. On 14 February 2012, the team launched a website with a blog post explaining the language's mission.[40] In an interview with InfoWorld in April 2012, Karpinski said of the name "Julia": "There's no good reason, really. It just seemed like a pretty name."[26] Bezanson said he chose the name on the recommendation of a friend,[41] then years later wrote:
Maybe julia stands for "Jeff's uncommon lisp is automated"?[42]
Julia's syntax is now considered stable, since version 1.0 in 2018, and Julia has a backward compatibility guarantee for 1.x and also a stability promise for the documented (stable) API, while in the years before in the early development prior to 0.7 the syntax (and semantics) was changed in new versions. All of the (registered package) ecosystem uses the new and improved syntax, and in most cases relies on new APIs that have been added regularly, e.g. in Julia 1.6 LTS, and in some cases minor additional syntax added in a forward compatible way e.g. in Julia 1.7.
In the 10 years since the 2012 launch of pre-1.0 Julia, the community has grown. The Julia package ecosystem has over 11.8 million lines of code (including docs and tests).[43] The JuliaCon academic conference for Julia users and developers has been held annually since 2014 with JuliaCon2020 welcoming over 28,900 unique viewers,[44] and then JuliaCon2021 breaking all previous records (with more than 300 JuliaCon2021 presentations available for free on YouTube, up from 162 the year before), and 43,000 unique viewers during the conference.[45]
Three of the Julia co-creators are the recipients of the 2019 James H. Wilkinson Prize for Numerical Software (awarded every four years) "for the creation of Julia, an innovative environment for the creation of high-performance tools that enable the analysis and solution of computational science problems."[46] Also, Alan Edelman, professor of applied mathematics at MIT, has been selected to receive the 2019 IEEE Computer Society Sidney Fernbach Award "for outstanding breakthroughs in high-performance computing, linear algebra, and computational science and for contributions to the Julia programming language."[47]
Both Julia 0.7[48] and version 1.0 were released on 8 August 2018. Work on Julia 0.7 was a "huge undertaking" (e.g., because of an "entirely new optimizer"), and some changes were made to semantics, e.g. the iteration interface was simplified.[49] Julia 1.1 was released in January 2019 with a new "exception stack" feature. Julia 1.2 was released in August 2019 with some built-in support for web browsers.[50] Julia 1.3 added composable multi-threaded parallelism and a binary artifacts system for Julia packages.[51] Julia 1.4 added syntax for generic array indexing to handle e.g. 0-based arrays.[52] The memory model was also changed.[53] Julia 1.5 released in August 2020 added record and replay debugging support,[54] for Mozilla's rr tool. The release changed the behavior in the REPL (soft scope) to the one used in Jupyter, but fully compatible with non-REPL code. Most of the thread API was marked as stable, and with this release "arbitrary immutable objects—regardless of whether they have fields that reference mutable objects or not—can now be stack allocated",[55] reducing heap allocations, e.g. views
are no longer allocating. Julia 1.5 targeted so-called "time-to-first-plot" (TTFP, also called TTFX, for first X, the more general problem) performance, in general, the speed of compilation itself (as opposed to performance of the generated code), and added tools for developers to improve package loading.[56]
Julia 1.6 was the largest release since 1.0 (1.6.7 is the latest/only long-term support (LTS) version, though most are advised to use the latest stable/1.9.3 version), faster on many fronts, e.g. introduced parallel precompilation and faster loading of packages, in some cases "50x speedup in load times for large trees of binary artifacts".[57]
As of version 1.7 Julia development is back to time-based releases.[58] Julia 1.7.0 was released in November 2021 with many changes, e.g. a new faster random-number generator. Julia 1.7.3 was released on 25 May 2022, fixing some issues, including at least one security update,[59] and 1.7.x is no longer supported. Julia 1.8 was released in 2022 (and versions up to 1.8.5 as a followup in January 2023,[60] both fixing bugs (backporting) and "invalidations", thus compiling faster), with improvements for distributing Julia programs without source code, and compiler speedup, in some cases by 25%,[61] and more controllable inlining (i.e. now also allowing applying @inline
at the call site, not just on the function itself).
Julia 1.9.0 was released on 7 May 2023 (and later 1.9.3, the latest, non-LTS, stable version). It has many improvements, such as solving the TTFX/TTFP problem; older releases have precompilation for packages, but they were not precompiled fully to native code until 1.9.0, leading to slower first use. In 1.9.0 using precompiled packages can be up to hundreds of times faster on first use (e.g. for CSV.jl and DataFrames.jl), and to improve precompilation of packages a new package PrecompileTools.jl has been introduced. Julia 1.10 is the next milestone, it and the milestones for 1.11, 1.12 and 2.0 currently have no set due dates.[62][63]
Since 2014,[64] the Julia Community has hosted an annual Julia Conference focused on developers and users. The first JuliaCon took place in Chicago and kickstarted the annual occurrence of the conference. Since 2014, the conference has taken place across a number of locations including MIT[65] and the University of Maryland, Baltimore.[66] The event audience has grown from a few dozen people to over 28,900 unique attendees[67] during JuliaCon 2020, which took place virtually. JuliaCon 2021 also took place virtually[68] with keynote addresses from professors William Kahan (the primary architect of the IEEE 754 floating-point standard, which his keynote is about, that virtually all CPUs use and languages, including Julia),[69] and Jan Vitek,[70] Xiaoye Sherry Li, and Soumith Chintala (co-creator of PyTorch).[71] JuliaCon grew to 43,000 unique attendees and more than 300 presentations (still freely accessible, plus for older years). JuliaCon 2022 will also be virtual held between July 27 and July 29, 2022, for the first time in several languages, not just in English.
The Julia language became a NumFOCUS fiscally sponsored project in 2014 in an effort to ensure the project's long-term sustainability.[72] Jeremy Kepner at MIT Lincoln Laboratory was the founding sponsor of the Julia project in its early days. In addition, funds from the Gordon and Betty Moore Foundation, the Alfred P. Sloan Foundation, Intel, and agencies such as NSF, DARPA, NIH, NASA, and FAA have been essential to the development of Julia.[73] Mozilla, the maker of Firefox web browser, with its research grants for H1 2019, sponsored "a member of the official Julia team" for the project "Bringing Julia to the Browser",[74] meaning to Firefox and other web browsers.[75][76][77][78] The Julia language is also supported by individual donors on GitHub.[79]
JuliaHub, Inc. was founded in 2015 as Julia Computing, Inc. by Viral B. Shah, Deepak Vinchhi, Alan Edelman, Jeff Bezanson, Stefan Karpinski and Keno Fischer.[80][81]
In June 2017, Julia Computing raised US$4.6 million in seed funding from General Catalyst and Founder Collective,[82] the same month was "granted $910,000 by the Alfred P. Sloan Foundation to support open-source Julia development, including $160,000 to promote diversity in the Julia community",[83] and in December 2019 the company got $1.1 million funding from the US government to "develop a neural component machine learning tool to reduce the total energy consumption of heating, ventilation, and air conditioning (HVAC) systems in buildings".[84] In July 2021, Julia Computing announced they raised a $24 million Series A round led by Dorilton Ventures,[85] which also owns Formula 1 team Williams Racing, that partnered with Julia Computing. Williams' Commercial Director said: "Investing in companies building best-in-class cloud technology is a strategic focus for Dorilton and Julia's versatile platform, with revolutionary capabilities in simulation and modelling, is hugely relevant to our business. We look forward to embedding Julia Computing in the world's most technologically advanced sport".[86] In June 2023, JuliaHub received (again, now under its new name) a $13 million strategic new investment led by AE Industrial Partners HorizonX ("AEI HorizonX"). AEI HorizonX is a venture capital investment platform formed in partnership with The Boeing Company, which uses Julia.[87] Tim Holy's work (at WashU's Holy Lab) on Julia 1.9 (improving responsiveness) was funded by the Chan Zuckerberg Initiative. JuliaHub also thanks NASA and others for their support.[88]
Julia is a general-purpose programming language,[89] while also originally designed for numerical/technical computing. It is also useful for low-level systems programming,[90] as a specification language,[91] High-level Synthesis (HLS) tool (for hardware, e.g. FPGAs),[92] and for web programming[93] at both server[94][95] and client[96][16] side.
The main features of the language are:
Multiple dispatch (also termed multimethods in Lisp) is a generalization of single dispatch – the polymorphic mechanism used in common object-oriented programming (OOP) languages, such as Python, C++, Java, JavaScript, and Smalltalk – that uses inheritance. In Julia, all concrete types are subtypes of abstract types, directly or indirectly subtypes of the Any
type, which is the top of the type hierarchy. Concrete types can not themselves be subtyped the way they can in other languages; composition is used instead (see also inheritance vs subtyping).
By default, the Julia runtime must be pre-installed as user-provided source code is run. Alternatively, a standalone executable that needs no Julia source code can be built with e.g. PackageCompiler.jl.[100]
In Julia everything is an object (e.g. the types that come with the language, including types, such as the machine integers and floats, which do not have lesser behavior like in many OOP languages, such as C++ and Java, and are still as fast as possible). However, unlike all the mainstream OOP languages, such as Python, the objects do not use single-dispatch (or inheritance), by default. And while that is idiomatic Julia code, more traditional OOP code can be opted into with the help of a package,[101] emulating Python's single-dispatch OOP system. More (or most) styles of programming can be opted into, e.g. pattern matching, using packages.
Julia's syntactic macros (used for metaprogramming), like Lisp macros, are more powerful than text-substitution macros used in the preprocessor of some other languages such as C, because they work at the level of abstract syntax trees (ASTs). Julia's macro system is hygienic, but also supports deliberate capture when desired (like for anaphoric macros) using the esc
construct.
Julia draws inspiration from various dialects of Lisp, including Scheme and Common Lisp, and it shares many features with Dylan, also a multiple-dispatch-oriented dynamic language (which features an ALGOL-like free-form infix syntax rather than a Lisp-like prefix syntax, while in Julia "everything"[102] is an expression), and with Fortress, another numerical programming language (which features multiple dispatch and a sophisticated parametric type system). While Common Lisp Object System (CLOS) adds multiple dispatch to Common Lisp, not all functions are generic functions.
In Julia, Dylan, and Fortress, extensibility is the default, and the system's built-in functions are all generic and extensible. In Dylan, multiple dispatch is as fundamental as it is in Julia: all user-defined functions and even basic built-in operations like +
are generic. Dylan's type system, however, does not fully support parametric types, which are more typical of the ML lineage of languages. By default, CLOS does not allow for dispatch on Common Lisp's parametric types; such extended dispatch semantics can only be added as an extension through the CLOS Metaobject Protocol. By convergent design, Fortress also features multiple dispatch on parametric types; unlike Julia, however, Fortress is statically rather than dynamically typed, with separate compiling and executing phases. The language features are summarized in the following table:
Language | Type system | Generic functions | Parametric types |
---|---|---|---|
Julia | Dynamic | Default | Yes |
Common Lisp | Dynamic | Opt-in | Yes (but no dispatch) |
Dylan | Dynamic | Default | Partial (no dispatch) |
Fortress | Static | Default | Yes |
An example of the extensibility of Julia, the Unitful.jl package adds support for physical units of measurement to the language.
The Julia official distribution includes an interactive command-line read–eval–print loop (REPL),[103] with a searchable history, tab completion, and dedicated help and shell modes,[104] which can be used to experiment and test code quickly.[105] The following fragment represents a sample session example where strings are concatenated automatically by println:[106]
julia> p(x) = 2x^2 + 1; f(x, y) = 1 + 2p(x)y
julia> println("Hello world!", " I'm on cloud ", f(0, 4), " as Julia supports recognizable syntax!")
Hello world! I'm on cloud 9 as Julia supports recognizable syntax!
The REPL gives user access to the system shell and to help mode, by pressing ;
or ?
after the prompt (preceding each command), respectively. It also keeps the history of commands, including between sessions.[107] Code can be tested inside Julia's interactive session or saved into a file with a .jl
extension and run from the command line by typing:[102]
$ julia <filename>
Julia uses UTF-8, e.g. for source code, meaning also allowing as an option common math symbols for many operators, such as ∈ for the in
operator, typable with \in
then pressing Tab ↹ (i.e. uses LaTeX codes, or also possible by simply copy-pasting, e.g. √ and ∛ possible for sqrt and cbrt functions). Julia has support for the latest Unicode 15.0,[108] for the languages of the world, even for source code, e.g. variable names (while not using English is not recommended for code for others to read e.g. package names).[109]
Julia is supported by Jupyter, an online interactive "notebooks" environment,[110] and Pluto.jl, a "reactive notebook" (where notebooks are saved as pure Julia files), a possible replacement for the former kind.[111] In addition Posit's (formerly RStudio Inc's) Quarto publishing system supports Julia, Python, R and Observable JavaScript (those languages have official support by the company, and can even be weaved together in the same notebook document, more languages are unofficially supported).[112][113]
The REPL can be extended with additional modes, and has been with packages, e.g. with an SQL mode,[114] for database access, and RCall.jl adds an R mode, to work with the R language.[115]
Julia is in practice interoperable with other languages (e.g. majority of top 10–20 languages in popular use). Julia's ccall
keyword is used to call shared library functions individually (such as for written in C or Fortran), and packages are available to allow calling other languages (which do not provide C-exported functions directly) e.g. Python (with PythonCall.jl), R, MATLAB, C# (and other .NET languages with DotNET.jl, from them with JdotNET), JavaScript, Java (and other JVM languages, such as Scala with JavaCall.jl).[116] And packages for other languages allow to call to Julia, e.g. from Python, R, Rust, Ruby, or C#. Such as with juliacall (part of PythonCall.jl, pyjulia is a different option) to call from Python and a different JuliaCall package for calling from R. Julia has also been used for hardware, i.e. to compile to VHDL, as a High-level Synthesis (HLS) tool (for e.g. FPGAs).[92]
Julia has packages supporting markup languages such as HTML (and also for HTTP), XML, JSON and BSON, and for databases (such as PostgreSQL,[117] Mongo,[118] Oracle, including for TimesTen,[119] MySQL, SQLite, Microsoft SQL Server,[118] Amazon Redshift, Vertica, ODBC) and web use in general.[120][121]
Julia has a built-in package manager and includes a default registry system.[122] Packages are most often distributed as source code hosted on GitHub, though alternatives can also be used just as well. Packages can also be installed as binaries, using artifacts.[123] Julia's package manager is used to query and compile packages, as well as managing environments. Federated package registries are supported, allowing registries other than the official to be added locally.[124]
Julia's core is implemented in Julia and C, together with C++ for the LLVM dependency. The code parsing and code-lowering are currently implemented in FemtoLisp, a Scheme dialect.[125] However, the FemtoLisp parser can be switched out at runtime with the pure-Julia package JuliaSyntax.jl,[126] which improves speed and "greatly improves parser error messages in various cases," and will replace the FemtoLisp parser starting in version 1.10.[127] The LLVM compiler infrastructure project is used as the back end for generating optimized machine code for all commonly-used platforms. With some exceptions, the standard library is implemented in Julia.
Julia has tier 1 macOS support, for 64-bit Apple Silicon Macs, natively (previously Apple M1-based Macs were only supported by running in Rosetta 2 emulation[128][129]), and also fully supports Intel-based Macs. Julia 1.6 LTS however does not fully support the Arm-based Macs (was then marked experimental), and that support got first upgraded to tier 2 with Julia 1.8, then to tier 1. Windows on ARM has no official support yet (but might work already; or with little work since Arm has tier 1 support on Macs and tier 2 on Linux).
Julia has four support tiers.[130] All IA-32 processors completely implementing the i686 subarchitecture are supported and all 64-bit x86-64 (aka amd64), i.e. all less than about a decade old are supported. Armv8 (AArch64) processors are supported on second tier, and ARMv7 (AArch32) on third tier, and ARMv6 were known to work with some caveats in Julia 1.0.x.[131] Hundreds of packages are GPU-accelerated:[132] CUDA (i.e. Nvidia GPUs; implementing PTX) has tier 1 support, with the help of an external package (and older versions of the package support down to CUDA 9). There are also additionally packages supporting other accelerators, such as Google's TPUs,[133] and some Intel (integrated) GPUs, through oneAPI.jl,[134] and AMD's GPUs have support with e.g. OpenCL; and experimental support for the AMD ROCm stack.[135] Julia's downloads page provides executables (and source) for all the officially supported platforms. While Julia doesn't support ChromeOS, it's known to work with its Crostini that enables Linux apps.[136]
On some platforms, Julia may need to be compiled from source code (e.g., the original Raspberry Pi), with specific build options, which has been done and unofficial pre-built binaries (and build instructions) are available.[137][138] Julia has been built for several ARM platforms, from small Raspberry Pis to (recent) top-1 supercomputer Fugaku's ARM-based A64FX.[139] PowerPC (64-bit) has tier 3 support, meaning it "may or may not build". Julia is now supported in Raspbian[140] while support is better for newer Pis, e.g., those with Armv7 or newer; the Julia support is promoted by the Raspberry Pi Foundation.[141]
There is also support for web browsers/JavaScript through JSExpr.jl;[96] and the alternative language of web browsers, WebAssembly, has minimal support[16] for several upcoming external Julia projects. Julia can compile to ARM; thus, in theory, Android apps can be made with the NDK, but for now Julia has been made to run under Android only indirectly, i.e. with a Ubuntu chroot on Android.[142]
While Julia requires an operating system by default, and has no official support to run without or on embedded system platforms such as Arduino, Julia code has still been run on it, with some limitations, i.e. on a baremetal 16 MHz 8-bit (ATmega328P) AVR-microcontroller Arduino with 2 KB RAM (plus 32 KB of flash memory).[143][144]
Julia has been adopted at many universities including MIT, Stanford, UC Berkeley and the University of Cape Town. Large private firms across many sectors have adopted the language including Amazon, IBM, JP Morgan AI Research,[145] and ASML. Julia has also been used by government agencies including NASA and the FAA, as well as every US national energy laboratory.[146][147]
Julia is widely used for drug development in the pharmaceutical industry, having been adopted by Moderna, Pfizer, AstraZeneca, Procter & Gamble, and United Therapeutics.[169][170]