Julia (programming language)

Print Print
Reading time 29:52

Julia
Julia Programming Language Logo.svg
ParadigmMulti-paradigm: multiple dispatch (primary paradigm), procedural, functional, meta, multistaged[1]
Designed byJeff Bezanson, Alan Edelman, Stefan Karpinski, Viral B. Shah
DeveloperJeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors[2][3]
First appeared2012; 9 years ago (2012)[4]
Stable release
1.6.1[5] Edit this on Wikidata / 23 April 2021; 56 days ago (23 April 2021)
and 1.6.2[6] and 1.7.0-beta1[7] being worked on and 1.8.0-DEV with daily updates[8][9]
Typing disciplineDynamic,[10]strong,[11]nominative, parametric, optional
Implementation languageJulia, C, C++, Scheme, LLVM[12]
PlatformTier 1: x86-64, IA-32, 64-bit ARM, CUDA/Nvidia GPUs
Tier 2: Windows 32-bit (64-bit is tier 1)
Tier 3: 32-bit ARM, PowerPC, AMD GPUs.
Also has support for Google's TPUs,[13] and has web browser support (for JavaScript and WebAssembly),[14] and can work in Android. For more details see "supported platforms".
OSLinux, macOS, Windows and FreeBSD
LicenseMIT (core),[2]GPL v2;[12][15] a makefile option omits GPL libraries[16]
Filename extensions.jl
WebsiteJuliaLang.org
Influenced by

Julia is a high-level, high-performance, dynamic programming language. While it is a general-purpose language and can be used to write any application, many of its features are well suited for numerical analysis and computational science.[21][22][23][24]

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[25] or the built-in corresponding[clarification needed][26] to "OpenMP-style" threads[27]), 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.[28][29]

Julia is garbage-collected,[30] 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.[31]

Several development tools support coding in Julia, such as integrated development environments (e.g. Microsoft's Visual Studio Code, with extensions available adding Julia support to IDEs, e.g. providing debugging and linting[32] support); with integrated tools, e.g. a profiler (and flame graph support available[33][34] for the built-in one), debugger,[35] and the Rebugger.jl package "supports repeated-execution debugging"[a] and more.[37]

History

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.[38] 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."[39] Bezanson said he chose the name on the recommendation of a friend,[40] then years later wrote:

Maybe julia stands for “Jeff’s uncommon lisp is automated”?[41]

Since the 2012 launch, the Julia community has grown, and "Julia has been downloaded by users at more than 10,000 companies",[42] with over 25,000,000 downloads as of February 2021, up by 87% in a year (other Julia related statistics up by as much as 113%),[43] and is used at more than 1,500 universities,[44][45][46] The JuliaCon academic conference for Julia users and developers has been held annually since 2014 with last years 2020 JuliaCon welcoming over 28,900 unique viewers.[47]

Version 0.3 was released in August 2014, version 0.4 in October 2015, version 0.5 in October 2016,[48] and version 0.6 in June 2017.[49] Both Julia 0.7 (a useful release for testing packages, and for knowing how to upgrade them for 1.0[50]) and version 1.0 were released on 8 August 2018. Work on Julia 0.7 was a "huge undertaking" (e.g., because of "entirely new optimizer"), and some changes were made to semantics, e.g. the iteration interface was simplified;[51] and the syntax changed a little (with the syntax now stable, and same for 1.x and 0.7).

The release candidate for Julia 1.0 (Julia 1.0.0-rc1) was released on 7 August 2018, and the final version a day later (and by now, Julia 1.0.x are the oldest versions still supported, having long-term support (LTS); for at least a year). Julia 1.1 was released in January 2019 with, e.g., a new "exception stack" language feature. Bugfix releases are expected roughly monthly, for 1.4.x and 1.0.x and Julia 1.0.1 up to 1.0.5 have followed that schedule. Julia 1.2 was released in August 2019, and it has e.g. some built-in support for web browsers (for testing if running in JavaScript VM),[52] and Julia 1.5 in August 2020 (and with it Julia 1.4.x, 1.3.x, 1.2.x and Julia 1.1.x releases are no longer maintained). Julia 1.3 added e.g. composable multi-threaded parallelism and a binary artifacts system for Julia packages.[53]

Julia 1.4 allowed better syntax for array indexing to handle e.g. 0-based arrays, with A[begin+1] for the second element of array A.[54] The memory model was also changed.[55] Minor release 1.4.2 fixed e.g. a Zlib issue, doubling decompression speed.[56]

Julia 1.5 adds record and replay debugging support,[57] for Mozilla's rr tool. It's a big release, with changed behavior in the REPL (soft scope), same as used in Jupyter, but fully compatible for 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",[58] reducing heap allocations, e.g. views are no longer allocating. All versions have worked on performance, but especially work on Julia 1.5 targeted so-called "time-to-first-plot" performance, in general, the speed of compilation itself (as opposed to performance of the generated code), and adds tools for developers to improve package loading.[59] Julia 1.6 also improves such performance even more.

Packages that work in Julia 1.0.x should work in 1.1.x or newer, enabled by the forward compatible syntax guarantee. A notable exception was foreign language interface libraries like JavaCall.jl (for JVM languages like Java or Scala) and Rcall.jl (R language) due to some threading-related changes (at a time when all of the threading-functionality in Julia was marked experimental).[60] The issue was especially complicated for Java's JVM, as it has some special expectations around how the stack address space is used. A workaround called JULIA_ALWAYS_COPY_STACKS was posted for Julia 1.3.0, while a full fix for Java is pending and has no set due date.[61] In addition, JVM versions since Java 11 do not exhibit this problem.[62] Julia 1.6 had a due date that was pushed to end of 2020,[63] and Julia 1.7 is in development.

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",[64] and is likely to become the next long-term support (LTS) release of Julia. The milestone for 2.0 currently has no set due date.[65]

Julia 1.6.1 has been released, and Julia 1.7 and 1.8 are the next milestones, with the former postponed to June 1, 2021[66] (i.e. since then 1.7 is in feature freeze) and as of Julia 1.7 Julia development is back to time-based releases.[67]

Notable uses

Julia has attracted some high-profile users, from investment manager BlackRock, which uses it for time-series analytics, to the British insurer Aviva, which uses it for risk calculations. In 2015, the Federal Reserve Bank of New York used Julia to make models of the United States economy, noting that the language made model estimation "about 10 times faster" than its previous MATLAB implementation. Julia's co-founders established Julia Computing in 2015 to provide paid support, training, and consulting services to clients, though Julia remains free to use. At the 2017 JuliaCon[68] conference, Jeffrey Regier, Keno Fischer and others announced[69] that the Celeste project[70] used Julia to achieve "peak performance of 1.54 petaFLOPS using 1.3 million threads"[71] on 9300 Knights Landing (KNL) nodes of the Cori II (Cray XC40) supercomputer (then 6th fastest computer in the world).[72] Julia thus joins C, C++, and Fortran as high-level languages in which petaFLOPS computations have been achieved.

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."[73] 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."[74]

Julia Computing and NVIDIA announce "the availability of the Julia programming language as a pre-packaged container on the NVIDIA GPU Cloud (NGC) container registry"[75] with NVIDIA stating "Easily Deploy Julia on x86 and Arm [..] Julia offers a package for a comprehensive HPC ecosystem covering machine learning, data science, various scientific domains and visualization."[76]

Additionally, "Julia was selected by the Climate Modeling Alliance as the sole implementation language for their next generation global climate model. This multi-million dollar project aims to build an earth-scale climate model providing insight into the effects and challenges of climate change."[75]

Julia is used by NASA[77][78] and the Brazilian INPE for space mission planning and satellite simulation.[79] Another effort is working on an embedded project to control a satellite in space using Julia for attitude control.[citation needed]

Sponsors

The Julia language became a NumFOCUS Fiscally sponsored project in 2014 in an effort to ensure the project's long-term sustainability.[80] Dr. 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.[81]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",[82] meaning to Firefox and other web browsers.[83][84][85][86] The Julia Language is also supported by individual donors on GitHub.[87]

Julia Computing

Julia Computing, Inc. was founded in 2015 by Viral B. Shah, Deepak Vinchhi, Alan Edelman, Jeff Bezanson, Stefan Karpinski and Keno Fischer.[88]

In June 2017, Julia Computing raised $4.6 million in seed funding from General Catalyst and Founder Collective,[89] and in 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"[90] 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".[91]

Language features

Julia is a general-purpose programming language,[92] while also originally designed for numerical/technical computing. It is also useful for low-level systems programming,[93] as a specification language,[94] and for web programming at both server[95][96] and client[97][14] side.

According to the official website, the main features of the language are:

  • Multiple dispatch: providing ability to define function behavior across many 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
  • Call C functions directly: no wrappers or special APIs
  • Ability to interface with other languages, e.g. Python with PyCall,[b] R with RCall, and Java/Scala with JavaCall
  • Powerful shell-like abilities to manage other processes
  • Designed for parallel and distributed computing
  • Coroutines: lightweight green threading
  • User-defined types are as fast and compact as built-ins
  • Automatic generation of efficient, specialized code for different argument types
  • Elegant and extensible conversions and promotions for numeric and other types
  • Efficient support for Unicode, including but not limited to UTF-8

Multiple dispatch (also termed multimethods in Lisp) is a generalization of single dispatch – the polymorphic mechanism used in common object-oriented programming (OOP) languages – 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).

Julia draws significant 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"[101] 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

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 PackageCompiler.jl.[102]

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.

Interaction

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 that can be tested inside the Julia's interactive section or saved into a file with a .jl extension and run from the command line by typing:[101]

 $ julia <filename>

Julia is supported by Jupyter, an online interactive "notebooks" environment,[108] and Pluto.jl, a "reactive notebook" (where notebooks are saved as pure Julia files), a possible replacement for the former kind.[109]

Use with other languages

Julia is in practice interoperable with many languages (e.g. majority of top 10–20 languages in popular use). Julia's ccall keyword is used to call C-exported or Fortran shared library functions individually, and packages to allow calling other languages e.g. Python, R, MATLAB, Java or Scala.[110] And packages for other languages, e.g. Python (or R or Ruby), i.e. pyjulia, to call to Julia.

Julia has support for the latest Unicode 13.0,[111] with UTF-8 used for strings (by default) and for Julia source code (only allowing legal UTF-8 in the latest version), meaning also allowing as an option common math symbols for many operators, such as ∈ for the in operator.

Julia has packages supporting markup languages such as HTML (and also for HTTP), XML, JSON and BSON, and for databases and web use in general.

Package system

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

Uses

Julia has been used to perform petascale computing with the Celeste library for sky surveys.[115][116] Julia is used by BlackRock Engineering[117] analytical platforms.

Implementation

Julia's core is implemented in Julia and C, together with C++ for the LLVM dependency. The parsing and code-lowering are implemented in FemtoLisp, a Scheme dialect.[118] The LLVM compiler infrastructure project is used as the back end for generation of 64-bit or 32-bit optimized machine code depending on the platform Julia runs on. With some exceptions (e.g., PCRE), the standard library is implemented in Julia. The most notable aspect of Julia's implementation is its speed, which is often within a factor of two relative to fully optimized C code (and thus often an order of magnitude faster than Python or R).[119][120][121] Development of Julia began in 2009 and an open-source version was publicized in February 2012.[4][122]

Current and future platforms

While Julia has tier 1 macOS support, meaning for Intel-based Macs, support for the brand-new Apple M1-based Macs isn't explicitly specified (and neither for Windows on ARM).[123] Julia is however claimed to work;[124] "ok" (at reduced performance) with Rosetta 2 (that needs to emulate Julia). Work on native full-speed M1 support (i.e. without emulation) is mostly done, and many programs may work if such a build of Julia is used, since all but one Julia tests pass (except for "Too many open files").

Since Julia uses JIT, Julia generates native machine code directly, before a function is first run (i.e. a different approach than compiling to bytecode, that you distribute by default, to be run on a virtual machine (VM), as with e.g. Java/JVM; then translated from the bytecode while running, as done by Dalvik on older versions of Android).

Julia has four support tiers.[125] All IA-32 processors completely implementing the i686 subarchitecture are supported and 64-bit x86-64 (aka amd64), less than about a decade old, are supported. ARMv8 (AArch64) processors are fully supported in first tier, and ARMv7 and ARMv6 (AArch32) are supported with some caveats (lower tier) for Julia 1.0.x and also had official executables for later versions, while 32-bit ARM support was later downgraded to tier 3 (however, unofficial binaries are available for Julia 1.5.1[126]).[127]CUDA (i.e. Nvidia GPUs; implementing PTX) has tier 1 support, with the help of an external package. There are also additionally packages supporting other accelerators, such as Google's TPUs,[128] and AMD's GPUs also have support with e.g. OpenCL; and experimental support for the AMD ROCm stack.[129] Julia's downloads page provides executables (and source) for all the officially supported platforms.

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.[130][131] Julia has been built on several ARM platforms. PowerPC (64-bit) has tier 3 support, meaning it "may or may not build". Julia is now supported in Raspbian[132] while support is better for newer Pis, e.g., those with ARMv7 or newer; the Julia support is promoted by the Raspberry Pi Foundation.[133]

There is also support for web browsers/JavaScript through JSExpr.jl;[97] and the alternative language of web browsers, WebAssembly, has minimal support[14] 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.[134]

See also

Notes

  1. ^ [With Rebugger.jl] you can:
    • test different modifications to the code or arguments as many times as you want; you are never forced to exit “debug mode” and save your file
    • run the same chosen block of code repeatedly (perhaps trying out different ways of fixing a bug) without needing to repeat any of the “setup” work that might have been necessary to get to some deeply nested method in the original call stack.[36]
  2. ^ For calling the newer Python 3 (the older default to call Python 2, is also still supported)[98][99] and calling in the other direction, from Python to Julia, is also supported with pyjulia.[100]

References

  1. ^ "Smoothing data with Julia's @generated functions". 5 November 2015. Retrieved 9 December 2015. 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.
  2. ^ a b "LICENSE.md". GitHub.
  3. ^ "Contributors to JuliaLang/julia". GitHub.
  4. ^ a b c d e f g h "Why We Created Julia". Julia website. February 2012. Retrieved 7 February 2013.
  5. ^ https://github.com/JuliaLang/julia/releases/tag/v1.6.1.
  6. ^ "WIP: Backports for Julia-1.6.2 by KristofferC · Pull Request #40702 · JuliaLang/julia". GitHub. Retrieved 10 June 2021.
  7. ^ "1.7: Set VERSION to 1.7.0-beta1 by KristofferC · Pull Request #41151 · JuliaLang/julia". GitHub. Retrieved 10 June 2021.
  8. ^ "Set VERSION to 1.8.0-DEV, move 1.7 NEWS to HISTORY by KristofferC · Pull Request #41122 · JuliaLang/julia". GitHub. Retrieved 9 June 2021.
  9. ^ "https://github.com/JuliaLang/julia/pulls?q=is%3Aopen+is%3Apr+milestone%3A1.8". GitHub. Retrieved 9 June 2021. External link in |title= (help)
  10. ^ Engheim, Erik (17 November 2017). "Dynamically Typed Languages Are Not What You Think". Medium. Retrieved 27 January 2021.
  11. ^ "Is julia strongly checked(typed)?". JuliaLang. 7 August 2018. Retrieved 27 January 2021.
  12. ^ a b "Julia". Julia. NumFocus project. Retrieved 9 December 2016. Julia's Base library, largely written in Julia itself, also integrates mature, best-of-breed open source C and Fortran libraries for ...
  13. ^ "External Method Tables by Keno · Pull Request #39697 · JuliaLang/julia". GitHub. Retrieved 9 June 2021.
  14. ^ a b c Fischer, Keno (22 July 2019). "Running julia on wasm". Retrieved 25 July 2019.
  15. ^ "Non-GPL Julia?". Groups.google.com. Retrieved 31 May 2017.
  16. ^ "Introduce USE_GPL_LIBS Makefile flag to build Julia without GPL libraries". Note that this commit does not remove GPL utilities such as git and busybox that are included in the Julia binary installers on Mac and Windows. It allows building from source with no GPL library dependencies.
  17. ^ Stokel-Walker, Chris. "Julia: The Goldilocks language". Increment. Stripe. Retrieved 23 August 2020.
  18. ^ a b c d "Home · The Julia Language". docs.julialang.org. Retrieved 15 August 2018.
  19. ^ "Programming Language Network". GitHub. Retrieved 6 December 2016.
  20. ^ "JuliaCon 2016". JuliaCon. Retrieved 6 December 2016. He has co-designed the programming language Scheme, which has greatly influenced the design of Julia
  21. ^ Bryant, Avi (15 October 2012). "Matlab, R, and Julia: Languages for data analysis". O'Reilly Strata. Archived from the original on 26 April 2014.
  22. ^ Singh, Vicky (23 August 2015). "Julia Programming Language – A True Python Alternative". Technotification.
  23. ^ Krill, Paul (18 April 2012). "New Julia language seeks to be the C for scientists". InfoWorld.
  24. ^ Finley, Klint (3 February 2014). "Out in the Open: Man Creates One Programming Language to Rule Them All". Wired.
  25. ^ "GitHub - JuliaParallel/MPI.jl: MPI wrappers for Julia". Parallel Julia. Retrieved 22 September 2019.
  26. ^ "Questions about getting started with parallel computing". JuliaLang. 16 June 2019. Retrieved 8 October 2019.
  27. ^ "Julia and Concurrency". JuliaLang. 24 June 2019. Retrieved 22 September 2019.
  28. ^ Fischer, Keno; Nash, Jameson. "Growing a Compiler - Getting to Machine Learning from a General Purpose Compiler". Julia Computing Blog. Retrieved 11 April 2019.
  29. ^ "Creating a sysimage". PackageCompiler Documentation.
  30. ^ "Suspending Garbage Collection for Performance...good idea or bad idea?". Groups.google.com. Retrieved 31 May 2017.
  31. ^ now available with using FFTW in current versions (That dependency, is one of many which, was moved out of the standard library to a package because it is GPL licensed, and thus is not included in Julia 1.0 by default.) "Remove the FFTW bindings from Base by ararslan · Pull Request #21956 · JuliaLang/julia". GitHub. Retrieved 1 March 2018.
  32. ^ "ANN: linter-julia plugin for Atom / Juno". JuliaLang. 15 February 2017. Retrieved 10 April 2019.
  33. ^ Holy, Tim (13 September 2019). "GitHub - timholy/ProfileView.jl: Visualization of Julia profiling data". Retrieved 22 September 2019.
  34. ^ Gregg, Brendan (20 September 2019). "GitHub - brendangregg/FlameGraph: Stack trace visualizer". Retrieved 22 September 2019.
  35. ^ "A Julia interpreter and debugger". julialang.org. Retrieved 10 April 2019.
  36. ^ "[ANN] Rebugger: interactive debugging for Julia 0.7/1.0". JuliaLang. 21 August 2018. Retrieved 10 April 2019.
  37. ^ "Home · Rebugger.jl". timholy.github.io. Retrieved 10 April 2019.
  38. ^ Jeff Bezanson, Stefan Karpinski, Viral Shah, Alan Edelman. "Why We Created Julia". JuliaLang.org. Retrieved 5 June 2017.CS1 maint: uses authors parameter (link)
  39. ^ Karpinski, Stefan (18 April 2012). "New Julia language seeks to be the C for scientists". InfoWorld.
  40. ^ Torre, Charles. "Stefan Karpinski and Jeff Bezanson on Julia". Channel 9. MSDN. Retrieved 4 December 2018.
  41. ^ Bezanson, Jeff. "CAS Benchmarks". discourse.julialang.org. Julia. Retrieved 2 April 2021.
  42. ^ "Newsletter August 2020". juliacomputing.com. 14 August 2020. Retrieved 7 September 2020.
  43. ^ "Newsletter January 2021 - Julia Computing". juliacomputing.com. Retrieved 13 January 2021.
  44. ^ "Julia Computing". juliacomputing.com. Retrieved 12 August 2020.
  45. ^ "Newsletter November 2019". juliacomputing.com. 7 November 2019. Retrieved 29 November 2019.
  46. ^ "Julia Computing Newsletter, Growth Metrics". juliacomputing.com. Retrieved 11 February 2019.
  47. ^ "JuliaCon 2020 Wrap-up". julialang.org. 11 August 2020. Retrieved 20 December 2020.
  48. ^ "The Julia Blog".
  49. ^ "Julia 0.6 Release Announcement".
  50. ^ "What is Julia 0.7? How does it relate to 1.0?". JuliaLang. Retrieved 17 October 2018.
  51. ^ Davies, Eric. "Writing Iterators in Julia 0.7". julialang.org. Retrieved 5 August 2018.
  52. ^ "Sys.isjsvm([os])". The Julia Language. 20 August 2019. Retrieved 20 August 2019. Predicate for testing if Julia is running in a JavaScript VM (JSVM), including e.g. a WebAssembly JavaScript embedding in a web browser.
  53. ^ Bezanson, Jeff; Karpinski, Stefan; Shah, Viral; Edelman, Alan. "The Julia Language". julialang.org. Retrieved 13 December 2019.
  54. ^ "support a[begin] for a[firstindex(a)] by stevengj · Pull Request #33946 · JuliaLang/julia". GitHub. Retrieved 7 April 2020.
  55. ^ quinnj. "For structs with all isbits or isbitsunion fields, allow them to be stored inline in arrays · Pull Request #32448 · JuliaLang/julia". GitHub. Retrieved 7 April 2020. 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.
  56. ^ "Bump Zlib BB release to 'v1.2.11+10' which enables '-O3' optimisation by giordano · Pull Request #35979 · JuliaLang/julia". GitHub. Retrieved 25 May 2020.
  57. ^ Fischer, Keno (2 May 2020). "Coming in Julia 1.5: Time Traveling (Linux) Bug Reporting". julialang.org. Retrieved 5 May 2020. 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.
  58. ^ Jeff Bezanson, Stefan Karpinski, Viral Shah, Alan Edelman et al. "The Julia Language". julialang.org. Retrieved 14 August 2020. There are some size-based limits to which structs can be stack allocated, but they are unlikely to be exceeded in practice.CS1 maint: uses authors parameter (link)
  59. ^ Jeff Bezanson, Stefan Karpinski, Viral Shah, Alan Edelman et al. "The Julia Language". julialang.org. Retrieved 16 September 2020.CS1 maint: uses authors parameter (link)
  60. ^ "Fix for C stack checking issues on 1.1 by simonbyrne · Pull Request #293 · JuliaInterop/RCall.jl". GitHub. Retrieved 10 August 2019.
  61. ^ "JVM fails to load in 1.1 (JavaCall.jl) · Issue #31104 · JuliaLang/julia". GitHub. Retrieved 18 August 2019. JeffBezanson modified the milestones: 1.3, 1.4
  62. ^ "StackOverflowError in 'JavaCall.init' for Julia 1.1.0 · Issue #96 · JuliaInterop/JavaCall.jl". GitHub. Retrieved 21 October 2019.
  63. ^ "JuliaLang/julia". GitHub. Retrieved 7 January 2021.
  64. ^ Jeff Bezanson, Stefan Karpinski, Viral Shah, Alan Edelman et al. "Julia 1.6 Highlights". julialang.org. Retrieved 26 March 2021.CS1 maint: uses authors parameter (link)
  65. ^ "Milestones - JuliaLang/julia". The Julia Language. Retrieved 13 December 2019.
  66. ^ "JuliaLang/julia". GitHub. Retrieved 20 May 2021.
  67. ^ "Upgrade to OpenBLAS 0.3.13 · Pull Request #39216 · JuliaLang/julia". GitHub. Retrieved 26 April 2021. Given that 1.7 is not too far away (timed releases going forward)
  68. ^ "JuliaCon 2017". juliacon.org. Retrieved 4 June 2017.
  69. ^ Fisher, Keno. "The Celeste Project". juliacon.org. Retrieved 24 June 2017.
  70. ^ Regier, Jeffrey; Pamnany, Kiran; Giordano, Ryan; Thomas, Rollin; Schlegel, David; McAulife, Jon; Prabat (2016). "Learning an Astronomical Catalog of the Visible Universe through Scalable Bayesian Inference". arXiv: [cs.DC].
  71. ^ Claster, Andrew (12 September 2017). "Julia Joins Petaflop Club". Julia Computing (Press release). Celeste is written entirely in Julia, and the Celeste team loaded an aggregate of 178 terabytes of image data to produce the most accurate catalog of 188 million astronomical objects in just 14.6 minutes [..] a performance improvement of 1,000x in single-threaded execution.
  72. ^ Shah, Viral B. (15 November 2017). "Viral B. Shah on Twitter". Retrieved 15 September 2019. @KenoFischer is speaking on Celeste in the @Intel theatre at @Supercomputing. 0.65M cores, 56 TB of data, Cori - world's 6th largest supercomputer.
  73. ^ "Julia language co-creators win James H. Wilkinson Prize for Numerical Software". MIT News. Retrieved 22 January 2019.
  74. ^ "Alan Edelman of MIT Recognized with Prestigious 2019 IEEE Computer Society Sidney Fernbach Award | IEEE Computer Society" (Press release). 1 October 2019. Retrieved 9 October 2019.
  75. ^ a b "Julia Computing and NVIDIA Bring Julia GPU Computing to Arm". juliacomputing.com. 3 December 2019. Retrieved 3 December 2019.
  76. ^ Patel, Chintan (19 November 2019). "NVIDIA Expands Support for Arm with HPC, AI, Visualization Containers on NGC | NVIDIA Blog". The Official NVIDIA Blog. Retrieved 3 December 2019.
  77. ^ Circuitscape/Circuitscape.jl, Circuitscape, 25 February 2020, retrieved 26 May 2020
  78. ^ "Conservation through Coding: 5 Questions with Viral Shah | Science Mission Directorate". science.nasa.gov. Retrieved 26 May 2020.
  79. ^ JuliaSpace/SatelliteToolbox.jl, JuliaSpace, 20 May 2020, retrieved 26 May 2020
  80. ^ "Julia: NumFOCUS Sponsored Project since 2014". numfocus.org. Retrieved 29 September 2020.
  81. ^ "The Julia Language". julialang.org. Retrieved 22 September 2019.
  82. ^ Cimpanu, Catalin. "Mozilla is funding a way to support Julia in Firefox". ZDNet. Retrieved 22 September 2019.
  83. ^ "Julia in Iodide". alpha.iodide.io. Retrieved 22 September 2019.
  84. ^ "Language plugins - Iodide Documentation". iodide-project.github.io. Retrieved 22 September 2019.
  85. ^ "Mozilla Research Grants 2019H1". Mozilla. Retrieved 22 September 2019. 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.
  86. ^ "Literate scientific computing and communication for the web: iodide-project/iodide". iodide. 20 September 2019. Retrieved 22 September 2019. 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 within a single, portable, sharable, and hackable file.
  87. ^ "Sponsor the Julia Language". github.com. Retrieved 5 June 2021.
  88. ^ "About Us – Julia Computing". juliacomputing.com. Retrieved 12 September 2017.
  89. ^ "Julia Computing Raises $4.6M in Seed Funding". Archived from the original on 10 May 2019.
  90. ^ "Julia Computing Awarded $910,000 Grant by Alfred P. Sloan Foundation, Including $160,000 for STEM Diversity". juliacomputing.com. 26 June 2017. Retrieved 28 July 2020.
  91. ^ "DIFFERENTIATE—Design Intelligence Fostering Formidable Energy Reduction (and) Enabling Novel Totally Impactful Advanced Technology Enhancements" (PDF).
  92. ^ "The Julia Language" (official website). General Purpose [..] Julia lets you write UIs, statically compile your code, or even deploy it on a webserver.
  93. ^ Green, Todd (10 August 2018). "Low-Level Systems Programming in High-Level Julia". Archived from the original on 5 November 2018. Retrieved 5 November 2018.
  94. ^ Moss, Robert (26 June 2015). "Using Julia as a Specification Language for the Next-Generation Airborne Collision Avoidance System" (PDF). Archived from the original on 1 July 2015. Retrieved 29 June 2015. Airborne collision avoidance system
  95. ^ Anaya, Richard (28 April 2019). "How to create a multi-threaded HTTP server in Julia". Medium. Retrieved 25 July 2019. 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.
  96. ^ Anthoff, David (1 June 2019). "Node.js installation for julia". Retrieved 25 July 2019.
  97. ^ a b "Translate Julia to JavaScript". JuliaGizmos. 7 July 2019. Retrieved 25 July 2019.
  98. ^ "PyCall.jl". stevengj. github.com.
  99. ^ "Using PyCall in julia on Ubuntu with python3". julia-users at Google Groups. to import modules (e.g., python3-numpy)
  100. ^ "python interface to julia".
  101. ^ a b "Learn Julia in Y Minutes". Learnxinyminutes.com. Retrieved 31 May 2017.
  102. ^ "GitHub - JuliaLang/PackageCompiler.jl: Compile your Julia Package". The Julia Language. 14 February 2019. Retrieved 15 February 2019.
  103. ^ "The Julia REPL · The Julia Language". docs.julialang.org. Retrieved 22 September 2019.
  104. ^ "Introducing Julia/The REPL - Wikibooks, open books for an open world". en.wikibooks.org. Retrieved 22 September 2019. you can install the Julia package OhMyREPL.jl (github.com/KristofferC/OhMyREPL.jl) which lets you customize the REPL's appearance and behaviour
  105. ^ "Getting Started · The Julia Language". docs.julialang.org. Retrieved 15 August 2018.
  106. ^ 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).
  107. ^ "Julia Documentation". JuliaLang.org. Retrieved 18 November 2014.
  108. ^ "Project Jupyter".
  109. ^ Boudreau, Emmett (16 October 2020). "Could Pluto Be A Real Jupyter Replacement?". Medium. Retrieved 8 December 2020.
  110. ^ "Julia and Spark, Better Together". juliacomputing.com. 2 June 2020. Retrieved 14 July 2020.
  111. ^ "Unicode 13 support by stevengj · Pull Request #179 · JuliaStrings/utf8proc". GitHub. Retrieved 29 March 2020.
  112. ^ "JuliaRegistries / General". Retrieved 30 April 2020.
  113. ^ "Pkg.jl - Artifacts". Retrieved 4 June 2020.
  114. ^ "Pkg.jl - Registries". Retrieved 30 April 2020.
  115. ^ Farber, Rob (28 November 2017). "Julia Language Delivers Petascale HPC Performance". The Next Platform. Retrieved 22 April 2020.
  116. ^ Kincade, Kathy (11 November 2016). "Celeste Enhancements Create New Opportunities in Sky Surveys". Berkeley Lab. Retrieved 22 April 2020.
  117. ^ Francis, Michael (9 May 2017). "OS@BLK: Julia NamedTuples". BlackRock Engineering. Retrieved 22 April 2020.
  118. ^ Bezanson, Jeff (6 June 2019). "JeffBezanson/femtolisp". GitHub. Retrieved 16 June 2019.
  119. ^ "Julia: A Fast Dynamic Language for Technical Computing" (PDF). 2012.
  120. ^ "How To Make Python Run As Fast As Julia". 2015.
  121. ^ "Basic Comparison of Python, Julia, R, Matlab and IDL". 2015.
  122. ^ Gibbs, Mark (9 January 2013). "Pure and Julia are cool languages worth checking out". Network World (column). Retrieved 7 February 2013.
  123. ^ "Darwin/ARM64 tracking issue · Issue #36617 · JuliaLang/julia". GitHub. Retrieved 8 December 2020.
  124. ^ Carlton, Sam (8 December 2020), ThatGuySam/doesitarm, retrieved 8 December 2020
  125. ^ "Julia Downloads". julialang.org. Retrieved 17 May 2019.
  126. ^ "Bring Julia code to embedded hardware (ARM)". JuliaLang. 23 January 2019. Retrieved 30 March 2021.
  127. ^ "julia/arm.md". The Julia Language. 29 November 2019. Retrieved 29 November 2019. A list of known issues for ARM is available.
  128. ^ "Julia on TPUs". JuliaTPU. 26 November 2019. Retrieved 29 November 2019.
  129. ^ "AMD ROCm · JuliaGPU". juliagpu.org. Retrieved 20 April 2020.
  130. ^ 262588213843476. "Build Julia for RaspberryPi Zero". Gist. Retrieved 14 August 2020.CS1 maint: numeric names: authors list (link)
  131. ^ "JuliaBerry: Julia on the Raspberry Pi". juliaberry.github.io. Retrieved 14 August 2020.
  132. ^ "Julia available in Raspbian on the Raspberry Pi". Julia works on all the Pi variants, we recommend using the Pi 3.
  133. ^ "Julia language for Raspberry Pi". Raspberry Pi Foundation.
  134. ^ "Using Julia on Android?". JuliaLang. 27 September 2019. Retrieved 2 October 2019.

Further reading

External links

By: Wikipedia.org
Edited: 2021-06-18 14:17:58
Source: Wikipedia.org