Julia (programming language)

From HandWiki
Short description: Dynamic programming language
Julia
Julia Programming Language Logo.svg
ParadigmMulti-paradigm: multiple dispatch (primary paradigm), object-oriented,[1] functional, array, procedural (imperative), structured, reflective, meta, multistaged[2]
Designed byJeff Bezanson, Alan Edelman, Stefan Karpinski, Viral B. Shah
DeveloperJeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors[3][4]
First appeared2012; 12 years ago (2012)[5]
Preview release
1.11.0-DEV / with daily updates[6]
Typing disciplineDynamic,[7] inferred, optional, nominative, parametric, strong[7]
Implementation languageJulia, C, C++, LLVM,[8] Scheme (parser)
PlatformTier 1: x86-64, IA-32, Apple silicon 64-bit Arm Macs; CUDA 10.1[9] to 12/Nvidia GPUs (for Linux and Windows)
Tier 2: FreeBSD, 64-bit Arm on Linux
Tier 3: 32-bit Arm, PowerPC, AMD (ROCm) GPUs and oneAPI/Intel's GPUs.
OSLinux, macOS, Windows and FreeBSD
LicenseMIT
Filename extensions.jl
Influenced by

Julia is a high-level, general-purpose[15] dynamic programming language, most commonly used for numerical analysis and computational science.[16][17][18] Distinctive aspects of Julia's design include a type system with parametric polymorphism and the use of multiple dispatch as a core programming paradigm, efficient garbage collection,[19] and a just-in-time (JIT) compiler[15][20] (with support for ahead-of-time compilation[21][22][23]).

Julia can be run similar to (interpreted) scripting languages (i.e. Julia has a REPL), and does[clarification needed] by default using its runtime (when preinstalled),[21] but Julia programs/source code can also optionally be sent to users in one ready-to-install/run file, which can be made quickly, not needing anything preinstalled.[citation needed] Julia programs can also be (separately) compiled to binary executables, even allowing no-source-code distribution. Such compilation is not needed for speed, since Julia is also compiled when running interactively, but it can help with hiding source code. Features of the language can be separately compiled, so Julia can be used, for example, with its runtime or without it (which allows for smaller executables and libraries but is limited in capabilities). Julia can be called from other languages, e.g. Python and R, and several Julia packages have been made easily available from those languages, in the form of libraries for them.

Julia's Visual Studio Code extension provides a fully-featured integrated development environment with support for debugging, linting, and profiling.[24][25][26][27]

History

Work on Julia began in 2009, when Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and Alan Edelman 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.[28] 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."[17] Bezanson said he chose the name on the recommendation of a friend,[29] then years later wrote:

Maybe julia stands for "Jeff's uncommon lisp is automated"?[30]

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, 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).[31] The JuliaCon academic conference for Julia users and developers has been held annually since 2014 with JuliaCon2020[32] welcoming over 28,900 unique viewers,[33] 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.[34]

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."[35] 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."[36]

Both Julia 0.7[37] 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.[38] 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.[39] Julia 1.3 added composable multi-threaded parallelism and a binary artifacts system for Julia packages.[40] Julia 1.4 added syntax for generic array indexing to handle e.g. 0-based arrays.[41] The memory model was also changed.[42] Julia 1.5 released in August 2020 added record and replay debugging support,[43] 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",[44] 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.[45]

Julia 1.6 was the largest release since 1.0, 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".[46]

As of version 1.7 Julia development is back to time-based releases.[47] 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,[48] 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,[49] 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%,[50] 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.4, the latest 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, leading to slower first use. Precompiled packages, since version 1.9, 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.0 was released on 25 December 2023 with many new features, e.g. improved package load times and a new parser with better error messages and improved stacktrace rendering.[citation needed]

JuliaCon

Since 2014,[51] 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[52] and the University of Maryland, Baltimore.[53] The event audience has grown from a few dozen people to over 28,900 unique attendees[54] during JuliaCon 2020, which took place virtually. JuliaCon 2021 also took place virtually[55] with keynote addresses from professors William Kahan, the primary architect of the IEEE 754 floating-point standard (which virtually all CPUs and languages, including Julia, use),[56] Jan Vitek,[57] Xiaoye Sherry Li, and Soumith Chintala, a co-creator of PyTorch.[58] 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.

Sponsors

The Julia language became a NumFOCUS fiscally sponsored project in 2014 in an effort to ensure the project's long-term sustainability.[59] 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.[60] 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",[61] meaning to Firefox and other web browsers.[62][63][64][65] The Julia language is also supported by individual donors on GitHub.[66]

The Julia company

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.[67][68]

In June 2017, Julia Computing raised US$4.6 million in seed funding from General Catalyst and Founder Collective,[69] 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",[70] 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".[71] In July 2021, Julia Computing announced they raised a $24 million Series A round led by Dorilton Ventures,[72] 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".[73] 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.[74] Tim Holy's work (at WashU's Holy Lab) on Julia 1.9 (improving responsiveness) was funded by the Chan Zuckerberg Initiative.

Language features

Julia is a general-purpose programming language,[75] while also originally designed for numerical/technical computing. It is also useful for low-level systems programming,[76] as a specification language,[77] high-level synthesis (HLS) tool (for hardware, e.g. FPGAs),[78] and for web programming[79] at both server[80][81] and client[82][83] side.

The main features of the language are:

  • Multiple dispatch: providing ability to define function behavior across combinations of argument types
  • Dynamic type system: types for documentation, optimization, and dispatch
  • Performance approaching that of statically-typed languages like C
  • A built-in package manager
  • Lisp-like macros and other metaprogramming facilities
  • Designed for parallel and distributed computing
  • Coroutines: lightweight green threading
  • Automatic generation of code for different argument types
  • Extensible conversions and promotions for numeric and other types

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, Julia (GUI) apps can be quickly bundled up into a single file with AppBundler.jl[84] for "building Julia GUI applications in modern desktop application installer formats. It uses Snap for Linux, MSIX for Windows, and DMG for MacOS as targets. It bundles full Julia within the app".[85] PackageCompiler.jl can build standalone executables that need no Julia source code to run.[21]

In Julia, everything is an object, much like object-oriented languages; however, unlike most object-oriented languages, all functions use multiple dispatch to select methods, rather than single dispatch.

Most programming paradigms can be implemented using Julia's homoiconic macros and 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"[86] 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.

Interoperability

Julia has built-in support for calling C or Fortran language libraries using the @ccall macro. Additional libraries allow users to work with Python,[87] R,[88] C++,[89] Java,[90] and SQL.[91][92][93][94]

Separately-compiled executables option

Julia can be compiled to binary executables with PackageCompiler.jl.[21] Smaller executables can also be written using a static subset of the language provided by StaticCompiler.jl that does not support runtime dispatch (nor garbage collection, since excludes the runtime that provides it).[95]

Interaction

The Julia official distribution includes an interactive command-line read–eval–print loop (REPL),[96] with a searchable history, tab completion, and dedicated help and shell modes,[97] which can be used to experiment and test code quickly.[98] The following fragment represents a sample session example where strings are concatenated automatically by println:[99]

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.[100] 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:[86]

$ julia <filename>

Julia uses UTF-8 and LaTeX codes, allowing it to support common math symbols for many operators, such as ∈ for the in operator, typable with \in then pressing (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 major release Unicode 15.0 (Julia 1.11-DEV supports latest 15.1 point release[101])[102] for the languages of the world, even for source code, e.g. variable names (while it's recommened to use English for public code, and e.g. package names).

Julia is supported by Jupyter, an online interactive "notebooks" environment,[103] and Pluto.jl, a "reactive notebook" (where notebooks are saved as pure Julia files), a possible replacement for the former kind.[104] 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).[105][106]

The REPL can be extended with additional modes, and has been with packages, e.g. with an SQL mode,[107] for database access, and RCall.jl adds an R mode, to work with the R language.[108]

Use with other languages

Julia is in practice interoperable with other languages (e.g. majority of top 10–20 languages in popular use). 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). 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).[78]

Julia has packages supporting markup languages such as HTML (and also for HTTP), XML, JSON and BSON, and for databases (such as PostgreSQL,[109] Mongo,[110] Oracle, including for TimesTen,[111] MySQL, SQLite, Microsoft SQL Server,[110] Amazon Redshift, Vertica, ODBC) and web use in general.[112][113]

Package system

Julia has a built-in package manager and includes a default registry system.[114] 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.[115] 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.[116]

Implementation

Julia's core is implemented in Julia and C, together with C++ for the LLVM dependency. The code parsing, code-lowering, and bootstraping were implemented in FemtoLisp, a Scheme dialect, up to version 1.10.[117] Since that version the new pure-Julia package JuliaSyntax.jl, is used for the parsing (while the old one can still be chosen)[118] which improves speed and "greatly improves parser error messages in various cases".[119] 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.

Current and future platforms

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[120][121]), 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.

Julia has four support tiers.[122] 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.[123] Hundreds of packages are GPU-accelerated:[124] 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,[125] and some Intel (integrated) GPUs, through oneAPI.jl,[126] and AMD's GPUs have support with e.g. OpenCL; and experimental support for the AMD ROCm stack.[127]

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.[128][129] Julia has been built for several ARM platforms, from small Raspberry Pis to (recent) top-1 supercomputer Fugaku's ARM-based A64FX.[130] PowerPC (64-bit) has tier 3 support, meaning it "may or may not build". Julia is now supported in Raspbian[131] while support is better for newer Pis, e.g., those with Armv7 or newer; the Julia support is promoted by the Raspberry Pi Foundation.[132]

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).[133][134]

Adoption

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,[135] and ASML. Julia has also been used by government agencies including NASA and the FAA, as well as every US national energy laboratory.[136][137]

Scientific computing and engineering

Pharmaceuticals and drug development

Julia is widely used for drug development in the pharmaceutical industry, having been adopted by Moderna, Pfizer, AstraZeneca, Procter & Gamble, and United Therapeutics.[157][158]

Economics, finance, and political science

See also

Notes

References

  1. "2. Object-Oriented Programming - Beginning Julia Programming: For Engineers and Scientists [Book"] (in en). https://www.oreilly.com/library/view/beginning-julia-programming/9781484231715/A458482_1_En_2_Chapter.html. 
  2. "Smoothing data with Julia's @generated functions". 5 November 2015. https://medium.com/@acidflask/smoothing-data-with-julia-s-generated-functions-c80e240e05f3#.615wk3dle. "Julia's generated functions are closely related to the multistaged programming (MSP) paradigm popularized by Taha and Sheard, which generalizes the compile time/run time stages of program execution by allowing for multiple stages of delayed code execution." 
  3. "LICENSE.md". GitHub. September 2017. https://github.com/JuliaLang/julia/blob/master/LICENSE.md. 
  4. "Contributors to JuliaLang/julia". GitHub. https://github.com/JuliaLang/julia/graphs/contributors. 
  5. 5.0 5.1 5.2 5.3 "Why We Created Julia". February 2012. https://julialang.org/blog/2012/02/why-we-created-julia. 
  6. "Set 'VERSION' to '1.11.0-DEV' by DilumAluthge · Pull Request #50314 · JuliaLang/julia" (in en). https://github.com/JuliaLang/julia/pull/50314. 
  7. 7.0 7.1 Engheim, Erik (2017-11-17). "Dynamically Typed Languages Are Not What You Think" (in en). https://erik-engheim.medium.com/dynamically-typed-languages-are-not-what-you-think-ac8d1392b803. 
  8. "Building Julia (Detailed)". September 2017. https://github.com/JuliaLang/julia/blob/master/doc/src/devdocs/build/build.md#required-build-tools-and-external-libraries. 
  9. "NVIDIA CUDA ⋅ JuliaGPU". https://juliagpu.org/cuda/. "we have shown the performance to approach and even sometimes exceed that of CUDA C on a selection of applications from the Rodinia benchmark suite" 
  10. Stokel-Walker, Chris. "Julia: The Goldilocks language". Stripe. https://increment.com/programming-languages/goldilocks-language-history-of-julia/. 
  11. "JuliaCon 2016". JuliaCon. https://juliacon.org/2016. ""He has co-designed the programming language Scheme, which has greatly influenced the design of Julia"" 
  12. 12.0 12.1 12.2 12.3 "Home · The Julia Language" (in en). https://docs.julialang.org/en/v1/. 
  13. "Programming Language Network". GitHub. https://fatiherikli.github.io/programming-language-network/#language:Julia. 
  14. "What Should We Call the Language of Mathematica?—Stephen Wolfram Writings" (in en). https://writings.stephenwolfram.com/2013/02/what-should-we-call-the-language-of-mathematica/. 
  15. 15.0 15.1 Fischer, Keno; Nash, Jameson. "Growing a Compiler - Getting to Machine Learning from a General Purpose Compiler - JuliaHub". https://juliahub.com/blog/2019/02/growing-a-compiler/. 
  16. Bryant, Avi (15 October 2012). "Matlab, R, and Julia: Languages for data analysis". O'Reilly Strata. http://radar.oreilly.com/2012/10/matlab-r-julia-languages-for-data-analysis.html. 
  17. 17.0 17.1 Krill, Paul (18 April 2012). "New Julia language seeks to be the C for scientists". InfoWorld. https://www.infoworld.com/article/2616709/new-julia-language-seeks-to-be-the-c-for-scientists.html. 
  18. Finley, Klint (3 February 2014). "Out in the Open: Man Creates One Programming Language to Rule Them All". Wired. https://www.wired.com/2014/02/julia/. 
  19. "Suspending Garbage Collection for Performance...good idea or bad idea?". Groups.google.com. Retrieved 2017-05-31.
  20. "Sysimages · PackageCompiler". https://julialang.github.io/PackageCompiler.jl/stable/sysimages.html#Creating-a-sysimage-using-PackageCompiler. 
  21. 21.0 21.1 21.2 21.3 "GitHub - JuliaLang/PackageCompiler.jl: Compile your Julia Package.". The Julia Language. 2019-02-14. https://github.com/JuliaLang/PackageCompiler.jl. 
  22. "julia/doc/src/devdocs/aot.md at master · JuliaLang/julia" (in en). https://github.com/JuliaLang/julia/blob/master/doc/src/devdocs/aot.md. 
  23. "System Image Building · The Julia Language". https://docs.julialang.org/en/v1/devdocs/sysimg/. 
  24. Holy, Tim (2019-09-13). "GitHub - timholy/ProfileView.jl: Visualization of Julia profiling data.". https://github.com/timholy/ProfileView.jl. 
  25. Gregg, Brendan (2019-09-20). "GitHub - brendangregg/FlameGraph: Stack trace visualizer.". https://github.com/brendangregg/FlameGraph. 
  26. "A Julia interpreter and debugger". https://julialang.org/blog/2019/03/debuggers. 
  27. "Home · Rebugger.jl". https://timholy.github.io/Rebugger.jl/dev/. 
  28. Jeff Bezanson; Stefan Karpinski. "Why We Created Julia". https://julialang.org/blog/2012/02/why-we-created-julia. 
  29. Torre, Charles. "Stefan Karpinski and Jeff Bezanson on Julia". MSDN. https://channel9.msdn.com/Blogs/Charles/Stefan-Karpinski-and-Jeff-Bezanson-Julia-Programming-Language. 
  30. Bezanson, Jeff (2 April 2021). "CAS Benchmarks". https://discourse.julialang.org/t/cas-benchmarks-symbolics-jl-and-maxima/58359/17. 
  31. "Newsletter August 2021 - Julia Computing Completes $24 Million Series A Fundraise and Former Snowflake CEO Bob Muglia Joins Julia Computing Board of Directors - JuliaHub". https://juliahub.com/blog/2021/08/newsletter-august/. 
  32. "JuliaCon 2020" (in en). https://juliacon.org/2020/. 
  33. "JuliaCon 2020 Wrap-up". 2020-08-11. https://julialang.org/blog/2020/08/juliacon-2020-wrapup/#outcomes. 
  34. "JuliaCon 2021 Highlights" (in en). https://julialang.org/blog/2021/08/juliacon-highlights/. 
  35. "Julia language co-creators win James H. Wilkinson Prize for Numerical Software". https://news.mit.edu/2018/julia-language-co-creators-win-james-wilkinson-prize-numerical-software-1226. 
  36. "Alan Edelman of MIT Recognized with Prestigious 2019 IEEE Computer Society Sidney Fernbach Award | IEEE Computer Society" (Press release). 1 October 2019. Retrieved 2019-10-09.
  37. "What is Julia 0.7? How does it relate to 1.0?" (in en). 26 March 2018. https://discourse.julialang.org/t/what-is-julia-0-7-how-does-it-relate-to-1-0/9994. 
  38. Davies, Eric. "Writing Iterators in Julia 0.7". https://julialang.org/blog/2018/07/iterators-in-julia-0.7. 
  39. "Sys.isjsvm([os)"]. The Julia Language. 2019-08-20. https://github.com/JuliaLang/julia/blob/75c10e435b2b9c947422ad38fa0b020595d3f747/base/sysinfo.jl#L401. "Predicate for testing if Julia is running in a JavaScript VM (JSVM), including e.g. a WebAssembly JavaScript embedding in a web browser." 
  40. Bezanson, Jeff; Karpinski, Stefan; Shah, Viral; Edelman, Alan. "The Julia Language". https://julialang.org/blog/2019/11/artifacts. 
  41. "support a[begin for a[firstindex(a)] by stevengj · Pull Request #33946 · JuliaLang/julia"] (in en). https://github.com/JuliaLang/julia/pull/33946. 
  42. quinnj. "For structs with all isbits or isbitsunion fields, allow them to be stored inline in arrays · Pull Request #32448 · JuliaLang/julia" (in en). https://github.com/JuliaLang/julia/pull/32448. "I still keep running into problems that this causes internally because it was a breaking change that changes assumptions made by some users and inference/codegen." 
  43. Fischer, Keno (2 May 2020). "Coming in Julia 1.5: Time Traveling (Linux) Bug Reporting" (in en). https://julialang.org/blog/2020/05/rr/. "Overhead for recording of single threaded processes is generally below 2x, most often between 2% and 50% (lower for purely numerical calculations, higher for workloads that interact with the OS). Recording multiple threads or processes that share memory (as opposed to using kernel-based message passing) is harder. [..] As expected, the threads test is the worst offender with about 600% overhead." 
  44. "The Julia Language" (in en). https://julialang.org/blog/2020/08/julia-1.5-highlights/. "There are some size-based limits to which structs can be stack allocated, but they are unlikely to be exceeded in practice." 
  45. "The Julia Language" (in en). https://julialang.org/blog/2020/08/invalidations/. 
  46. "Julia 1.6 Highlights" (in en). https://julialang.org/blog/2021/03/julia-1.6-highlights/. 
  47. "Upgrade to OpenBLAS 0.3.13 · Pull Request #39216 · JuliaLang/julia" (in en). https://github.com/JuliaLang/julia/pull/39216#issuecomment-816285199. "Given that 1.7 is not too far away (timed releases going forward)" 
  48. "[Zlib_jll Update to v1.2.12+3 by giordano · Pull Request #44810 · JuliaLang/julia"] (in en). https://github.com/JuliaLang/julia/pull/44810. 
  49. "Backports for Julia 1.8.5 by KristofferC · Pull Request #48011 · JuliaLang/julia" (in en). https://github.com/JuliaLang/julia/pull/48011. 
  50. "compiler: speed up bootstrapping time by 25% by aviatesk · Pull Request #41794 · JuliaLang/julia" (in en). https://github.com/JuliaLang/julia/pull/41794. "the bootstrapping took about 80 seconds previously, but on this PR the time is reduced to about 60 seconds." 
  51. "JuliaCon 2014". https://juliacon.org/2014/. 
  52. "JuliaCon 2016 at MIT". https://news.mit.edu/2016/juliacon-draws-global-users-of-dynamic-programming-language-0718. 
  53. "JuliaCon 2019 at UMB". 23 July 2019. https://technical.ly/baltimore/2019/07/23/juliacon-provides-the-stage-for-a-week-of-programming-talks-and-a-new-baltimore-company/. 
  54. "JuliaCon 2020 wrap up". https://julialang.org/blog/2020/08/juliacon-2020-wrapup/#outcomes. 
  55. "JuliaCon 2021". https://juliacon.org/2021/. 
  56. "JuliaCon 2021 Highlights" (in en). https://julialang.org/blog/2021/08/juliacon-highlights/. "This year's JuliaCon was the biggest and best ever, with more than 300 presentations available for free on YouTube, more than 20,000 registrations, and more than 43,000 unique YouTube viewers during the conference, up from 162 presentations, 10,000 registrations, and 28,900 unique YouTube viewers during last year's conference." 
  57. "Jan Vitek Homepage". https://janvitek.org. 
  58. "Soumith Chintala Homepage". https://soumith.ch. 
  59. "Julia: NumFOCUS Sponsored Project since 2014". https://numfocus.org/project/julia. 
  60. "The Julia Language". https://julialang.org/research/. 
  61. Cimpanu, Catalin. "Mozilla is funding a way to support Julia in Firefox" (in en). https://www.zdnet.com/article/mozilla-is-funding-a-way-to-support-julia-in-firefox/. 
  62. "Julia in Iodide". https://alpha.iodide.io/notebooks/225/. 
  63. "Language plugins - Iodide Documentation". https://iodide-project.github.io/docs/language_plugins/. 
  64. "Mozilla Research Grants 2019H1" (in en). https://mozilla-research.forms.fm/mozilla-research-grants-2019h1/forms/6510. "running language interpreters in WebAssembly. To further increase access to leading data science tools, we're looking for someone to port R or Julia to WebAssembly and to attempt to provide a level 3 language plugin for Iodide: automatic conversion of data basic types between R/Julia and Javascript, and the ability to share class instances between R/Julia and Javascript." 
  65. "Literate scientific computing and communication for the web: iodide-project/iodide". iodide. 2019-09-20. https://github.com/iodide-project/iodide. "We envision a future workflow that allows you to do your data munging in Python, fit a quick model in R or JAGS, solve some differential equations in Julia, and then display your results with a live interactive d3+JavaScript visualization ... and all that within a single, portable, sharable, and hackable file." 
  66. "Sponsor the Julia Language". https://github.com/sponsors/JuliaLang. 
  67. "About Us – Julia Computing". https://juliacomputing.com/about-us. 
  68. "About Us - JuliaHub". https://juliahub.com/company/about-us/. 
  69. "Julia Computing Raises $4.6M in Seed Funding" (Press release). Archived from the original on 2019-05-10.
  70. "Julia Computing Awarded $910,000 Grant by Alfred P. Sloan Foundation, Including $160,000 for STEM Diversity". 2017-06-26. https://juliacomputing.com/media/2017/06/26/sloan-grant.html. 
  71. "DIFFERENTIATE—Design Intelligence Fostering Formidable Energy Reduction (and) Enabling Novel Totally Impactful Advanced Technology Enhancements". https://arpa-e.energy.gov/sites/default/files/documents/files/DIFFERENTIATE_Project_Descriptions_FINAL.pdf. 
  72. "Julia Computing raises $24 mln in funding round led by Dorilton Ventures". Reuters. 19 July 2021. https://www.reuters.com/technology/julia-computing-raises-24-mln-funding-round-led-by-dorilton-ventures-2021-07-19/. 
  73. "Williams welcomes Julia Computing as Dorilton Ventures partner". www.williamsf1.com (Press release). Retrieved 2021-09-02.
  74. "JuliaHub Receives $13 Million Strategic Investment from AE Industrial Partners HorizonX". info.juliahub.com (Press release). June 27, 2023. Retrieved 2023-06-30.
  75. "The Julia Language". https://julialang.org/. "General Purpose [..] Julia lets you write UIs, statically compile your code, or even deploy it on a webserver." 
  76. Green, Todd (10 August 2018). "Low-Level Systems Programming in High-Level Julia". https://juliacon.org/2018/talks_workshops/42/. 
  77. Moss, Robert (26 June 2015). "Using Julia as a Specification Language for the Next-Generation Airborne Collision Avoidance System". https://juliacon.org/2015/images/juliacon2015_moss_v3.pdf. "Airborne collision avoidance system" 
  78. 78.0 78.1 Biggs, Benjamin; McInerney, Ian; Kerrigan, Eric C.; Constantinides, George A. (2022). "High-level Synthesis using the Julia Language". arXiv:2201.11522 [cs.SE]. We present a prototype Julia HLS tool, written in Julia, that transforms Julia code to VHDL.
  79. "Announcing Dash for Julia". plotly (Press release). 2020-10-26. Retrieved 2021-09-02.
  80. Anaya, Richard (2019-04-28). "How to create a multi-threaded HTTP server in Julia" (in en). https://medium.com/@richardanaya/how-to-create-a-multi-threaded-http-server-in-julia-ca12dca09c35. "In summary, even though Julia lacks a multi-threaded server solution currently out of box, we can easily take advantage of its process distribution features and a highly popular load balancing tech to get full CPU utilization for HTTP handling." 
  81. Anthoff, David (2019-06-01). "Node.js installation for julia". https://github.com/davidanthoff/NodeJS.jl. 
  82. "Translate Julia to JavaScript". JuliaGizmos. 2019-07-07. https://github.com/JuliaGizmos/JSExpr.jl. 
  83. Fischer, Keno (2019-07-22). "Running julia on wasm". https://github.com/Keno/julia-wasm. 
  84. AppBundler.jl, PeaceFounder, 2023-12-13, https://github.com/PeaceFounder/AppBundler.jl, retrieved 2023-12-18 
  85. "[ANN AppBundler.jl - Bundle Your Julia GUI Application"] (in en). 2023-11-30. https://discourse.julialang.org/t/ann-appbundler-jl-bundle-your-julia-gui-application/106971. 
  86. 86.0 86.1 "Learn Julia in Y Minutes". https://learnxinyminutes.com/docs/julia/. 
  87. PythonCall & JuliaCall, JuliaPy, 2023-10-29, https://github.com/JuliaPy/PythonCall.jl, retrieved 2023-10-30 
  88. RCall.jl, JuliaInterop, 2023-10-16, https://github.com/JuliaInterop/RCall.jl, retrieved 2023-10-30 
  89. CxxWrap, JuliaInterop, 2023-10-28, https://github.com/JuliaInterop/CxxWrap.jl, retrieved 2023-10-30 
  90. "Julia and Spark, Better Together". 2020-06-02. https://juliacomputing.com/blog/2020/06/02/julia-spark.html. 
  91. Foster, Claire (2023-10-23), SQLREPL.jl, https://github.com/c42f/SQLREPL.jl, retrieved 2023-10-31 
  92. Noh, WooKyoung (2023-10-18), Octo.jl, https://github.com/wookay/Octo.jl, retrieved 2023-10-31 
  93. "Usage Guide · FunSQL.jl". https://mechanicalrabbit.github.io/FunSQL.jl/stable/guide/#Why-FunSQL?. 
  94. "Using Julia with Oracle Databases". 21 October 2022. https://blogs.oracle.com/timesten/post/using-julia-with-oracle-database. 
  95. Short, Tom (2023-10-30), StaticCompiler, https://github.com/tshort/StaticCompiler.jl, retrieved 2023-10-30 
  96. "The Julia REPL · The Julia Language". https://docs.julialang.org/en/v1/stdlib/REPL/. 
  97. "Introducing Julia/The REPL - Wikibooks, open books for an open world". https://en.wikibooks.org/wiki/Introducing_Julia/The_REPL. "you can install the Julia package OhMyREPL.jl [..] which lets you customize the REPL's appearance and behaviour" 
  98. "Getting Started · The Julia Language" (in en). https://docs.julialang.org/en/v1/manual/getting-started/. 
  99. See also: docs.julialang.org/en/v1/manual/strings/ for string interpolation and the string(greet, ", ", whom, ".\n") example for preferred ways to concatenate strings. Julia has the println and print functions, but also a @printf macro (i.e., not in function form) to eliminate run-time overhead of formatting (unlike the same function in C).
  100. "Julia Documentation". https://docs.julialang.org. 
  101. "Unicode 15.1 support by stevengj · Pull Request #253 · JuliaStrings/utf8proc" (in en). https://github.com/JuliaStrings/utf8proc/pull/253. 
  102. "support Unicode 15 via utf8proc 2.8 by stevengj · Pull Request #47392 · JuliaLang/julia" (in en). https://github.com/JuliaLang/julia/pull/47392. 
  103. "Project Jupyter". https://jupyter.org/. 
  104. Boudreau, Emmett (2020-10-16). "Could Pluto Be A Real Jupyter Replacement?" (in en). https://towardsdatascience.com/could-pluto-be-a-real-jupyter-replacement-6574bfb40cc6. 
  105. Machlis, Sharon (2022-07-27). "RStudio changes name to Posit, expands focus to include Python and VS Code" (in en). https://www.infoworld.com/article/3668252/rstudio-changes-name-to-posit-expands-focus-to-include-python-and-vs-code.html. 
  106. "Heads up! Quarto is here to stay. Immediately combine R & Python in your next document: An extension on a recent post." (in en). 2022-07-20. https://www.ds-econ.com/quarto/. 
  107. Foster, Chris (2022-04-04). "SQLREPL.jl". https://github.com/c42f/SQLREPL.jl. 
  108. "Getting Started · RCall.jl". https://juliainterop.github.io/RCall.jl/latest/gettingstarted.html#Several-Ways-to-use-RCall-1. 
  109. "Home · LibPQ.jl". https://invenia.github.io/LibPQ.jl/stable/. 
  110. 110.0 110.1 "Home · FunSQL.jl". https://docs.juliahub.com/FunSQL/HGzDG/0.9.2/. 
  111. Hood, Doug (21 October 2022). "Using Julia with Oracle Databases". https://blogs.oracle.com/timesten/post/using-julia-with-oracle-database. 
  112. "Genie Builder - Visual Studio Marketplace" (in en-us). https://marketplace.visualstudio.com/items?itemName=GenieBuilder.geniebuilder. 
  113. "How to Build Your First Web App in Julia with Genie.jl 🧞‍♂️" (in en). 2022-02-01. https://www.freecodecamp.org/news/how-to-build-web-apps-in-julia/. 
  114. "JuliaRegistries / General". https://github.com/JuliaRegistries/General. 
  115. "Pkg.jl - Artifacts". https://julialang.github.io/Pkg.jl/dev/artifacts/. 
  116. "Pkg.jl - Registries". https://julialang.github.io/Pkg.jl/v1/registries/. 
  117. Bezanson, Jeff (6 June 2019). "JeffBezanson/femtolisp". https://github.com/JeffBezanson/femtolisp. 
  118. "JuliaSyntax". The Julia Programming Language. 2022-08-28. https://github.com/JuliaLang/JuliaSyntax.jl. 
  119. "Enable JuliaSyntax.jl as an alternative Julia parser by c42f · Pull Request #46372 · JuliaLang/julia" (in en). https://github.com/JuliaLang/julia/pull/46372. 
  120. "Julia v1.7.3 has been released" (in en). 2022-05-25. https://discourse.julialang.org/t/julia-v1-7-3-has-been-released/81683. 
  121. "Darwin/ARM64 tracking issue · Issue #36617 · JuliaLang/julia" (in en). https://github.com/JuliaLang/julia/issues/36617. 
  122. "Julia Downloads". https://julialang.org/downloads/#support-tiers. 
  123. "julia/arm.md". The Julia Language. 2021-10-07. https://github.com/JuliaLang/julia/blob/master/doc/src/devdocs/build/arm.md. "A list of known issues for ARM is available." 
  124. "JuliaGPU". https://juliagpu.org/. "Almost 300 packages rely directly or indirectly on Julia's GPU capabilities." 
  125. "Julia on TPUs". JuliaTPU. 2019-11-26. https://github.com/JuliaTPU/XLA.jl. 
  126. "Introducing: oneAPI.jl ⋅ JuliaGPU". https://juliagpu.org/post/2020-11-05-oneapi_0.1/. 
  127. "AMD ROCm · JuliaGPU". https://juliagpu.org/rocm/. 
  128. "Build Julia for RaspberryPi Zero" (in en). https://gist.github.com/terasakisatoshi/3f8a55391b1fc22a5db4a43da8d92c98. 
  129. "JuliaBerry: Julia on the Raspberry Pi". https://juliaberry.github.io/. 
  130. Giordano, Mosè (2022-09-29). "Julia on Fugaku (2022-07-23)". https://github.com/giordano/julia-on-fugaku. 
  131. "Julia available in Raspbian on the Raspberry Pi". https://julialang.org/blog/2017/05/raspberry-pi-julia. "Julia works on all the Pi variants, we recommend using the Pi 3." 
  132. "Julia language for Raspberry Pi". Raspberry Pi Foundation. 12 May 2017. https://www.raspberrypi.org/blog/julia-language-raspberry-pi/. 
  133. "Running Julia baremetal on an Arduino". https://seelengrab.github.io/articles/Running%20Julia%20baremetal%20on%20an%20Arduino/. 
  134. Sukera (2023-07-31), AVRDevices.jl, https://github.com/Seelengrab/AVRDevices.jl, retrieved 2023-08-05 
  135. Chen, Jiahao. "Jiahao Chen" (in en-us). https://jiahao.github.io/. 
  136. "'Why We Created Julia' Turns Ten Years Old - JuliaHub". https://juliahub.com/company/media/2022/02/julia-turns-ten-years-old/. 
  137. "Newsletter January 2022 - Julia Growth Statistics - Julia Computing" (in en). https://juliacomputing.com/blog/2022/01/newsletter-january/. 
  138. "Introducing Braket.jl - Quantum Computing with Julia" (in en). 15 November 2022. https://forem.julialang.org/kshyatt/introducing-braketjl-10f2. "Almost all of the Python SDK's features are reimplemented in Julia — for those few that aren't, we are also providing a subsidiary package, PyBraket.jl, which allows you to translate Julia objects into their Python equivalents and call the Python SDK." 
  139. "Getting started with Julia on Amazon SageMaker: Step-by-step Guide". May 2020. https://d1.awsstatic.com/whitepapers/julia-on-sagemaker.pdf. 
  140. "Towards Using Julia for Real-Time applications in ASML JuliaCon 2022" (in en). https://pretalx.com/juliacon-2022/talk/GUQBSE/. 
  141. "Home - CliMA". https://clima.caltech.edu/. 
  142. "Julia Computing Brings Support for NVIDIA GPU Computing on Arm Powered Servers - JuliaHub". juliahub.com (Press release). Retrieved 2022-11-16.
  143. "Julia for HEP Mini-workshop". 27 September 2021. https://indico.cern.ch/event/1074269/. "Julia and the first observation of Ω-_b → Ξ+_c K- π-" 
  144. Mikhasenko, Misha (2022-07-29). "ThreeBodyDecay". https://github.com/mmikhasenko/ThreeBodyDecay.jl. 
  145. Mikhasenko, Misha (July 2021). "Julia for QCD spectroscopy". https://indico.cern.ch/event/1074269/contributions/4539610/attachments/2317472/3945345/spectroscopy_mmikhasenko.pdf. "Summary: Julia is ready to be used in physics HEP analysis" .
  146. "JuliaHEP/UnROOT.jl". JuliaHEP. 2022-08-19. https://github.com/JuliaHEP/UnROOT.jl. 
  147. "Julia · Search · GitLab" (in en). https://gitlab.cern.ch/search?search=Julia&nav_source=navbar&project_id=741&group_id=635&scope=commits&repository_ref=master. 
  148. "Commits · master · sft / lcgcmake · GitLab" (in en). https://gitlab.cern.ch/sft/lcgcmake/-/commits/master/cmake/toolchain/heptools-dev-base.cmake. "bump julia version to 1.7.3" 
  149. (in en) Modeling Spacecraft Separation Dynamics in Julia - Jonathan Diegelman, https://www.youtube.com/watch?v=tQpqsmwlfY0, retrieved 2021-09-06 
  150. Circuitscape/Circuitscape.jl, Circuitscape, 2020-02-25, https://github.com/Circuitscape/Circuitscape.jl, retrieved 2020-05-26 
  151. "Conservation through Coding: 5 Questions with Viral Shah | Science Mission Directorate". https://science.nasa.gov/earth-science/applied-sciences/making-space-for-earth/5-questions-with-viral-shah. 
  152. "Julia in the Wild - Julia Data Science". https://juliadatascience.io/julia_wild. 
  153. "Seven Rocky TRAPPIST-1 Planets May Be Made of Similar Stuff". https://exoplanets.nasa.gov/news/1669/seven-rocky-trappist-1-planets-may-be-made-of-similar-stuff/. 
  154. (in en) Julia in Astronomy & Astrophysics Research | Eric B. Ford | JuliaCon 2022, https://www.youtube.com/watch?v=vj1uzilanQI, retrieved 2022-10-06 
  155. JuliaSpace/SatelliteToolbox.jl, JuliaSpace, 2020-05-20, https://github.com/JuliaSpace/SatelliteToolbox.jl, retrieved 2020-05-26 
  156. Hobbs, Kerianne (December 2022). "Year of Autonomy in Alaskan Glaciers, Flight, Earth Orbit, Cislunar Space and Mars". Aerospace America Year in Review. p. 48. https://digitaleditions.walsworth.com/publication/?m=7270&i=769555&p=48. "The flight test team was able to demonstrate … a vertical takeoff and landing vehicle with both electric and conventional fuel propulsion systems onboard. The [uncrewed aerial system] was able to plan and execute these missions autonomously using onboard hardware. It was the first time the Julia programming language was flown on the embedded hardware - algorithms were precompiled ahead of time." 
  157. "Case Study - JuliaHub". https://juliahub.com/case-studies/. 
  158. "Pumas-AI" (in en). https://pumas.ai/. 
  159. "Release v1.3.0 · FRBNY-DSGE/DSGE.jl" (in en). https://github.com/FRBNY-DSGE/DSGE.jl/releases/tag/v1.3.0. "New subspecs of Model1002 for estimating the DSGE with COVID-19 shocks" 
  160. "Finance and Economics Use Cases" (in en). 2023-05-02. https://discourse.julialang.org/t/finance-and-economics-use-cases/9452/104. 
  161. 161.0 161.1 D'Cunha, Suparna Dutt (2017-09-20). "How A New Programming Language Created By Four Scientists Now Used By The World's Biggest Companies" (in en). https://www.forbes.com/sites/suparnadutt/2017/09/20/this-startup-created-a-new-programming-language-now-used-by-the-worlds-biggest-companies/. 
  162. "Julia for Election Security" (in en). Julia Forem. 23 September 2022. https://forem.julialang.org/ramsdell/julia-for-election-security-4gh. 
  163. "Nobel Laureate Thomas J. Sargent - JuliaHub". https://juliahub.com/case-studies/thomas-sargent/. 

Further reading

External links