Julia (programming language)

Juliais ahigh-level,general-purpose[17]dynamicprogramming language,still designed to be fast and productive,[18]for e.g. data science, artificial intelligence, machine learning, modeling and simulation, most commonly used fornumerical analysisandcomputational science.[19][20][21]

Julia
ParadigmMulti-paradigm:multiple dispatch(primary paradigm),functional,array,procedural(imperative),structured,reflective,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;12 years ago(2012)[4]
Stable release
1.11.1[5]Edit this on Wikidata /16 October 2024and 1.10.7[7](the onlyLTS)
Preview release
1.11.2[6] / 22 November 2024;4 days ago(2024-11-22)and 1.11.3 is also done[8]and 1.10.8 being worked on and 1.12.0-DEV with daily updates
Typing disciplineDynamic,[9]inferred,optional,nominative,parametric,strong[9]
Implementation languageJulia,C,C++,LLVM,[10]Scheme(was used the parser; almost exclusively)
PlatformTier 1:x86-64,IA-32,Apple silicon(ARM64)Macs; Nvidia GPUs/CUDA(on Linux)[11]
Tier 2:FreeBSD,64-bit Armon Linux, Apple GPUs; Intel GPUs/OneAPI6.2+ and Nvidia GPUs (on Windows)
Tier 3: 32-bitArm;64-bitRISC-VandPowerPC;and AMD GPUs/ROCm5.3+.
OSLinux,macOS,WindowsandFreeBSD
LicenseMIT
Filename extensions.jl
WebsiteJuliaLang.org
Influenced by

Distinctive aspects of Julia's design include a type system withparametric polymorphismand the use ofmultiple dispatchas a coreprogramming paradigm,a defaultjust-in-time(JIT) compiler[17][22](with support forahead-of-time compilation[23][24][25]) and anefficient garbage collection.[26]Notably Julia does not support classes with encapsulated methods and instead it relies on structs with generic methods/functions not tied to them.

By default, Julia is run similarly to scripting languages, using its runtime, and allows forinteractions,[23]but Julia programs/source codecan also optionally be sent to users in one ready-to-install/run file, which can be made quickly, not needing anything preinstalled.[27]Julia programs can also be (separately) compiled tobinary executables,even allowing no-source-code distribution, and the executables can get much smaller with Julia 1.12. Such compilation is not needed for speed, though it can decrease constant-factor startup cost, 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 programs can reuse libraries from other languages by calling them, e.g. callingCorRustlibraries, and Julia (libraries) can also be called from other languages, e.g.PythonandR,and several Julia packages have been made easily available from those languages, in the form of Python and Rlibrariesfor corresponding Julia packages. Calling in either direction has been implemented for many languages, not just those.

Julia'sVisual Studio Codeextension provides a fully-featuredintegrated development environmentwith "built-in dynamic autocompletion, inline results, plot pane, integrated REPL, variable view, code navigation, and many other advanced language features"[28]e.g. debugging is possible,linting,andprofiling.[29][30][31][32]

History

edit

Work on Julia began in 2009, whenJeff Bezanson,Stefan Karpinski,Viral B. Shah,andAlan Edelmanset 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.[4]In an interview withInfoWorldin April 2012, Karpinski said of the name "Julia": "There's no good reason, really. It just seemed like a pretty name."[20]Bezanson said he chose the name on the recommendation of a friend,[33]then years later wrote:

Maybe julia stands for "Jeff'suncommon lispis automated "?[34]

Julia'ssyntaxis now considered stable, since version 1.0 in 2018, and Julia has abackward compatibilityguarantee 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)ecosystemuses 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).[35]The JuliaConacademic conferencefor Julia users and developers has been held annually since 2014 with JuliaCon2020[36]welcoming over 28,900 unique viewers,[37]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.[38]

Three of the Julia co-creators are the recipients of the 2019James 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."[39]Also, Alan Edelman, professor ofapplied mathematicsatMIT,has been selected to receive the 2019IEEE Computer SocietySidney Fernbach Award"for outstanding breakthroughs in high-performance computing, linear algebra, and computational science and for contributions to the Julia programming language."[40]

Both Julia 0.7[41]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. theiterationinterface was simplified.[42] Julia 1.6 was the largest release since 1.0, and it was thelong-term support(LTS) version for the longest time, 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".[43]As of version 1.7 Julia development is back totime-based releases.[44]Julia 1.7.0 was released in November 2021 with many changes, e.g. a new fasterrandom-number generator.Julia 1.7.3 was released on 25 May 2022, fixing some issues, including at least one security update,[45]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,[46]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%,[47]and more controllableinlining(i.e. now also allowing applying@inlineat the call site, not just on the function itself). Julia 1.9.0 was released on 7 May 2023. It has many improvements, such as the ability to precompile packages to native machine code (older Julia versions also have precompilation for packages, but only partial, never fully to native code, so those earlier versions had a "first use" penalty, slowing down while waiting to fully compile). 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 (and Julia 1.10.5 update on 27 August 2024) with many new features, e.g. parallel garbage collection, and improved package load times and a new parser with better error messages and improved stacktrace rendering.[48]

Julia 1.11.0 was released on 7 October 2024 (and 1.11.1 on 16 October), and with it 1.10.5 became the nextlong-term support(LTS) version (i.e. those are the only two supported versions), since replaced by 1.10.6 released on 28 October, and 1.6 is no longer an LTS version. Julia 1.11 adds e.g. a newpublickeyword to signal safe public API (Julia users are advised to use such API, not internals, of Julia or packages, and package authors advised to use the keyword, generally indirectly, e.g. prefixed with the@compatmacro, fromCompat.jl,to also support older Julia versions, at least the LTS version). Julia 1.11.1 has much improved startup (over 1.11.0 that had a regression), and over 1.10, and this can be important for some benchmarks.

Some users may want to postopone upgrading to 1.11 (e.g. those calling Julia from R), because of known temporary package incompatibility.

Much smaller binary executables are possible withjuliacwhich is only available in the upcoming Julia 1.12 (the current "nightly" version).

JuliaCon

edit

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

edit

The Julia language became a NumFOCUS fiscally sponsored project in 2014 in an effort to ensure the project's long-term sustainability.[57]Jeremy Kepner atMIT Lincoln Laboratorywas the founding sponsor of the Julia project in its early days. In addition, funds from theGordon and Betty Moore Foundation,theAlfred P. Sloan Foundation,Intel,and agencies such asNSF,DARPA,NIH,NASA,andFAAhave been essential to the development of Julia.[58]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",[59]meaning to Firefox and other web browsers.[60][61][62][63]The Julia language is also supported by individual donors on GitHub.[64]

The Julia company

edit

JuliaHub, Inc. was founded in 2015 as Julia Computing, Inc. byViral B. Shah,Deepak Vinchhi,Alan Edelman,Jeff Bezanson,Stefan KarpinskiandKeno Fischer.[65][66]

In June 2017, Julia Computing raised US$4.6million in seed funding fromGeneral Catalystand Founder Collective,[67]the same month was "granted $910,000 by theAlfred P. Sloan Foundationto supportopen-sourceJulia development, including $160,000 to promote diversity in the Julia community ",[68]and in December 2019 the company got $1.1million funding from the US government to "develop a neural componentmachine learningtool to reduce the total energy consumption of heating, ventilation, and air conditioning (HVAC) systems in buildings ".[69]In July 2021, Julia Computing announced they raised a $24 millionSeries A roundled by Dorilton Ventures,[70]which also ownsFormula 1teamWilliams 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".[71]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 withThe Boeing Company,which uses Julia.[72]Tim Holy's work (atWashington University in St. Louis's Holy Lab) on Julia 1.9 (improving responsiveness) was funded by theChan Zuckerberg Initiative.

Language features

edit

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

The main features of the language are:

Multiple dispatch (also termedmultimethodsin Lisp) is ageneralizationofsingle dispatch– thepolymorphic mechanismused in commonobject-oriented programming(OOP) languages, such asPython,C++,Java,JavaScript,andSmalltalk– that usesinheritance.In Julia, all concrete types aresubtypesof abstract types, directly or indirectly subtypes of theAnytype, 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 alsoinheritance 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[27]for "building Julia GUI applications in modern desktop application installer formats. It uses Snap for Linux,MSIXfor Windows, and DMG for MacOS as targets. It bundles full Julia within the app ".[82]PackageCompiler.jl can build standaloneexecutablesthat need no Julia source code to run.[23]

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

Most programming paradigms can be implemented using Julia'shomoiconicmacros and packages. Julia'ssyntactic macros(used formetaprogramming), like Lisp macros, are more powerful thantext-substitution macrosused in thepreprocessorof some other languages such as C, because they work at the level ofabstract syntax trees(ASTs). Julia's macro system ishygienic,but also supports deliberate capture when desired (like foranaphoric macros) using theescconstruct.

Julia draws inspiration from various dialects of Lisp, includingSchemeandCommon Lisp,and it shares many features withDylan,also a multiple-dispatch-oriented dynamic language (which features aninfixsyntax rather than a Lisp-like prefix syntax, while in Julia "everything"[83]is anexpression), and withFortress,another numerical programming language (which features multiple dispatch and a sophisticated parametric type system). WhileCommon 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 theML 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 theCLOS 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 physicalunits of measurementto the language.

Interoperability

edit

Julia has built-in support for callingCorFortranlanguage libraries using the@ccallmacro. Additional libraries allow users to work withPython,[84]R,[85]C++,[86]Java,[87]andSQL.[88][89][90][91]

Separately-compiled executables option

edit

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

Interaction

edit

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

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.[97]Code can be tested inside Julia's interactive session or saved into a file with a.jlextension and run from the command line by typing:[83]

$julia<filename>

Julia usesUTF-8andLaTeXcodes, allowing it to support common math symbols for many operators, such as ∈ for theinoperator, typable with\inthen pressingTab ↹(i.e. usesLaTeXcodes, or also possible by simply copy-pasting, e.g. √ and ∛ possible forsqrtandcbrtfunctions). Julia has support for the latest major release Unicode 15.0 (Julia 1.11-DEV supports latest 15.1 point release[98])[99]for the languages of the world, even for source code, e.g. variable names (while it's recommended to use English for public code, and e.g. package names).

Julia is supported byJupyter,an online interactive "notebooks" environment,[100]andPluto.jl,a "reactive notebook" (where notebooks are saved as pure Julia files), a possible replacement for the former kind.[101]In addition Posit's (formerlyRStudioInc's) Quarto publishing system supports Julia, Python, R and ObservableJavaScript(those languages have official support by the company, and can even be weaved together in the same notebook document, more languages are unofficially supported).[102][103]

The REPL can be extended with additional modes, and has been with packages, e.g. with anSQLmode,[104]for database access, and RCall.jl adds anR mode,to work with theR language.[105]

Use with other languages

edit

Julia is in practiceinteroperablewith other languages, in fact the majority of the top 20 languages in popular use. Julia can be used to call shared library functions individually, such as those 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,[106]MATLAB, C# (and other.NET languages with DotNET.jl, from them with JdotNET), JavaScript, Java (and other JVM languages, such asScalawith JavaCall.jl). And packages for other languages allow to call to Julia, e.g. from Python, R (to Julia 1.10.x currently possible[107]),Rust,Ruby, or C#. Such as with juliacall (part of PythonCall.jl) to call from Python and a different JuliaCall package for calling, Julia up to 1.10.x, from R. Julia has also been used for hardware, i.e. to compile toVHDL,as ahigh-level synthesistool, for exampleFPGAs.[76]

Julia has packages supporting markup languages such asHTML(and also forHTTP),XML,JSONandBSON,and fordatabases(such as PostgreSQL,[108]Mongo,[109]Oracle, including forTimesTen,[110]MySQL, SQLite, Microsoft SQL Server,[109]Amazon Redshift, Vertica, ODBC) and web use in general.[111][112]

Package system

edit

Julia has a built-inpackage managerand includes a default registry system.[113]Packages are most often distributed as source code hosted onGitHub,though alternatives can also be used just as well. Packages can also be installed as binaries, using artifacts.[114]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.[115]

Implementation

edit

Julia's core is implemented in Julia andC,together withC++for theLLVMdependency. The code parsing, code-lowering, and bootstrapping were implemented in FemtoLisp, aSchemedialect, up to version 1.10.[116]Since that version the new pure-Julia packageJuliaSyntax.jl,is used for the parsing (while the old one can still be chosen)[117]which improves speed and "greatly improves parser error messages in various cases".[118]The LLVM compiler infrastructure project is used as theback endfor generating optimizedmachine codefor all commonly-used platforms. With some exceptions, thestandard libraryis implemented in Julia.

Current and future platforms

edit

Julia has tier 1macOSsupport, for 64-bitApple SiliconMacs, natively (previously suchApple M1-based Macs were only supported byrunning inRosetta 2emulation[119][120]), and also fully supports Intel-based Macs.Windows on ARMhas no official support yet. Julia has "initial support of OpenBSD in julia." but more is coming to make it actually work:https://github.com/JuliaLang/julia/issues/53632-->

Julia has four support tiers.[121]AllIA-32processors completely implementing thei686subarchitecture are supported and all 64-bitx86-64(akaamd64), i.e. all less than about a decade old are supported.Armv8(AArch64) processors are supported on first tier (for macOS); otherwise second tier on Linux, and ARMv7 (AArch32) on third tier.[122]Hundreds of packages areGPU-accelerated:[123]Nvidia GPUs have support withCUDA.jl(tier 1 on 64-bit Linux and tier 2 on 64-bit Windows, the package implementingPTX,for compute capability 3.5 (Kepler) or higher; both require CUDA 11+, older package versions work down to CUDA 9). There are also additionally packages supporting other accelerators, such as Google'sTPUs,[124]and some Intel (integrated) GPUs, throughoneAPI.jl,[125]and AMD's GPUs have support with e.g.OpenCL;and experimental support for the AMDROCmstack.[126]

On some platforms, Julia may need to be compiled from source code (e.g., the originalRaspberry Pi), with specific build options, which has been done and unofficial pre-built binaries (and build instructions) are available.[127][128]Julia has been built for several ARM platforms, from small Raspberry Pis to the world's fastest (at one point, until recently) supercomputerFugaku's ARM-basedA64FX.[129]PowerPC (64-bit) has tier 3 support, meaning it "may or may not build". Julia is now supported inRaspbian[130]while support is better for newer Pis, e.g., those with Armv7 or newer; the Julia support is promoted by theRaspberry Pi Foundation.[131]Julia has also been built for 64-bitRISC-V,[132][133]that has some supporting code in core Julia.

While Julia requires anoperating systemby default, and has no official support to run without or onembedded systemplatforms such asArduino,Julia code has still been run on it, with some limitations, i.e. on a baremetal 16MHz8-bit(ATmega328P)AVR-microcontrollerArduino with 2 KB RAM (plus 32 KB of flash memory).[134][135]

Adoption

edit

Julia has been adopted at many universities includingMIT,Stanford,UC Berkeley,Ferdowsi University of Mashhadand theUniversity of Cape Town.Large private firms across many sectors have adopted the language includingAmazon,IBM,JP MorganAI Research,[136]andASML.Julia has also been used by government agencies includingNASAand theFAA,as well as every US national energy laboratory.[18][137]

Scientific computing and engineering

edit

Pharmaceuticals and drug development

edit

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

Economics, finance, and political science

edit

See also

edit

References

edit
  1. ^"Smoothing data with Julia's @generated functions".5 November 2015.Archivedfrom the original on 4 March 2016.Retrieved9 December2015.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. ^"LICENSE.md".GitHub.September 2017.Archivedfrom the original on 23 January 2021.Retrieved20 October2014.
  3. ^"Contributors to JuliaLang/julia".GitHub.Archivedfrom the original on 23 January 2021.Retrieved20 October2014.
  4. ^abcdeJeff Bezanson; Stefan Karpinski; Viral Shah; Alan Edelman (February 2012)."Why We Created Julia".Julia website.Archivedfrom the original on 2 May 2020.Retrieved7 February2013.
  5. ^"Release 1.11.1".16 October 2024.Retrieved22 October2024.
  6. ^"Backports for 1.11.2 by KristofferC · Pull Request #56228 · JuliaLang/julia".GitHub.Retrieved18 October2024.
  7. ^"set VERSION to 1.10.7 (#56615) · JuliaLang/julia@4976d05".GitHub.Retrieved26 November2024.
  8. ^"Backports for Julia 1.11.3 by KristofferC · Pull Request #56652 · JuliaLang/julia".GitHub.Retrieved24 November2024.
  9. ^abEngheim, Erik (17 November 2017)."Dynamically Typed Languages Are Not What You Think".Medium.Archivedfrom the original on 5 March 2021.Retrieved27 January2021.
  10. ^"Building Julia (Detailed)".GitHub.September 2017.Archivedfrom the original on 16 May 2022.Retrieved16 May2022.
  11. ^"NVIDIA CUDA ⋅ JuliaGPU".juliagpu.org.Archivedfrom the original on 29 January 2022.Retrieved17 January2022.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
  12. ^Stokel-Walker, Chris."Julia: The Goldilocks language".Increment.Stripe.Archivedfrom the original on 9 November 2020.Retrieved23 August2020.
  13. ^"JuliaCon 2016".JuliaCon.Archivedfrom the original on 4 March 2017.Retrieved6 December2016.He has co-designed the programming language Scheme, which has greatly influenced the design of Julia
  14. ^abcd"Home · The Julia Language".docs.julialang.org.Archivedfrom the original on 11 January 2021.Retrieved15 August2018.
  15. ^"Programming Language Network".GitHub. Archived fromthe originalon 20 December 2020.Retrieved6 December2016.
  16. ^"What Should We Call the Language of Mathematica?—Stephen Wolfram Writings".writings.stephenwolfram.com.12 February 2013.Archivedfrom the original on 4 September 2024.Retrieved24 June2021.
  17. ^abFischer, Keno; Nash, Jameson."Growing a Compiler - Getting to Machine Learning from a General Purpose Compiler".juliahub.com.Retrieved16 November2022.
  18. ^ab"'Why We Created Julia' Turns Ten Years Old ".juliahub.com.Archivedfrom the original on 16 November 2022.Retrieved16 November2022.
  19. ^Bryant, Avi (15 October 2012)."Matlab, R, and Julia: Languages for data analysis".O'Reilly Strata. Archived fromthe originalon 26 April 2014.
  20. ^abKrill, Paul (18 April 2012)."New Julia language seeks to be the C for scientists".InfoWorld.Archivedfrom the original on 13 September 2014.Retrieved4 July2021.
  21. ^Finley, Klint (3 February 2014)."Out in the Open: Man Creates One Programming Language to Rule Them All".Wired.Archivedfrom the original on 20 December 2016.Retrieved8 March2017.
  22. ^"Sysimages · PackageCompiler".julialang.github.io.Archivedfrom the original on 10 April 2023.Retrieved10 April2023.
  23. ^abcd"GitHub - JuliaLang/PackageCompiler.jl: Compile your Julia Package".The Julia Language. 14 February 2019.Archivedfrom the original on 23 March 2019.Retrieved15 February2019.
  24. ^"julia/doc/src/devdocs/aot.md at master · JuliaLang/julia".GitHub.Archivedfrom the original on 3 October 2023.Retrieved3 October2023.
  25. ^"System Image Building · The Julia Language".docs.julialang.org.Retrieved3 October2023.
  26. ^"Suspending Garbage Collection for Performance...good idea or bad idea?".Groups.google.com.Archivedfrom the original on 14 February 2012.Retrieved31 May2017.
  27. ^ab"AppBundler.jl".PeaceFounder. 13 December 2023.Archivedfrom the original on 18 December 2023.Retrieved18 December2023.
  28. ^"Julia in Visual Studio Code".
  29. ^Holy, Tim (13 September 2019)."GitHub - timholy/ProfileView.jl: Visualization of Julia profiling data".GitHub.Archivedfrom the original on 31 January 2020.Retrieved22 September2019.
  30. ^Gregg, Brendan (20 September 2019)."GitHub - brendangregg/FlameGraph: Stack trace visualizer".GitHub.Archivedfrom the original on 26 September 2019.Retrieved22 September2019.
  31. ^"A Julia interpreter and debugger".julialang.org.Retrieved10 April2019.
  32. ^"Home · Rebugger.jl".timholy.github.io.Archivedfrom the original on 31 March 2019.Retrieved10 April2019.
  33. ^Torre, Charles."Stefan Karpinski and Jeff Bezanson on Julia".Channel 9.MSDN.Archivedfrom the original on 4 December 2018.Retrieved4 December2018.
  34. ^Bezanson, Jeff (2 April 2021)."CAS Benchmarks".discourse.julialang.org.Archivedfrom the original on 2 April 2021.Retrieved2 April2021.
  35. ^"Newsletter August 2021 - Julia Computing Completes $24 Million Series A Fundraise and Former Snowflake CEO Bob Muglia Joins Julia Computing Board of Directors - JuliaHub".juliahub.com.Archivedfrom the original on 16 November 2022.Retrieved16 November2022.
  36. ^"JuliaCon 2020".JuliaCon 2020.Archivedfrom the original on 12 October 2023.Retrieved6 October2023.
  37. ^"JuliaCon 2020 Wrap-up".julialang.org.11 August 2020.Archivedfrom the original on 30 November 2020.Retrieved20 December2020.
  38. ^"JuliaCon 2021 Highlights".julialang.org.Archivedfrom the original on 6 September 2021.Retrieved6 September2021.
  39. ^"Julia language co-creators win James H. Wilkinson Prize for Numerical Software".MIT News.26 December 2018.Archivedfrom the original on 28 January 2019.Retrieved22 January2019.
  40. ^"Alan Edelman of MIT Recognized with Prestigious 2019 IEEE Computer Society Sidney Fernbach Award | IEEE Computer Society"(Press release). 1 October 2019.Archivedfrom the original on 9 October 2019.Retrieved9 October2019.
  41. ^"What is Julia 0.7? How does it relate to 1.0?".JuliaLang.26 March 2018.Archivedfrom the original on 27 July 2018.Retrieved17 October2018.
  42. ^Davies, Eric."Writing Iterators in Julia 0.7".julialang.org.Archivedfrom the original on 6 August 2018.Retrieved5 August2018.
  43. ^Jeff Bezanson; Stefan Karpinski; Viral Shah; Alan Edelman; et al."Julia 1.6 Highlights".julialang.org.Archivedfrom the original on 26 March 2021.Retrieved26 March2021.
  44. ^"Upgrade to OpenBLAS 0.3.13 · Pull Request #39216 · JuliaLang/julia".GitHub.Archivedfrom the original on 23 March 2022.Retrieved26 April2021.Given that 1.7 is not too far away (timed releases going forward)
  45. ^"[Zlib_jll] Update to v1.2.12+3 by giordano · Pull Request #44810 · JuliaLang/julia".GitHub.Archivedfrom the original on 25 May 2022.Retrieved25 May2022.
  46. ^"Backports for Julia 1.8.5 by KristofferC · Pull Request #48011 · JuliaLang/julia".GitHub.Archivedfrom the original on 4 January 2023.Retrieved8 January2023.
  47. ^"compiler: speed up bootstrapping time by 25% by aviatesk · Pull Request #41794 · JuliaLang/julia".GitHub.Archivedfrom the original on 3 March 2022.Retrieved3 March2022.the bootstrapping took about 80 seconds previously, but on this PR the time is reduced to about 60 seconds.
  48. ^"Julia v1.10 Release Notes · The Julia Language".docs.julialang.org.25 December 2023.Archivedfrom the original on 30 March 2024.Retrieved30 March2024.
  49. ^"JuliaCon 2014".juliacon.org.Retrieved20 June2021.
  50. ^"JuliaCon 2016 at MIT".mit.edu.18 July 2016.Archivedfrom the original on 24 June 2021.Retrieved20 June2021.
  51. ^"JuliaCon 2019 at UMB".technical.ly.23 July 2019.Archivedfrom the original on 24 June 2021.Retrieved20 June2021.
  52. ^"JuliaCon 2020 wrap up".julialang.org.Archivedfrom the original on 30 November 2020.Retrieved20 June2021.
  53. ^"JuliaCon 2021".Juliacon.org.Archivedfrom the original on 20 June 2021.Retrieved20 June2021.
  54. ^"JuliaCon 2021 Highlights".julialang.org.Archivedfrom the original on 6 September 2021.Retrieved3 March2022.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.
  55. ^"Jan Vitek Homepage".janvitek.org.Archivedfrom the original on 22 January 2024.Retrieved20 June2021.
  56. ^"Soumith Chintala Homepage".soumith.ch.Archivedfrom the original on 24 June 2021.Retrieved20 June2021.
  57. ^"Julia: NumFOCUS Sponsored Project since 2014".numfocus.org.Archivedfrom the original on 28 September 2020.Retrieved29 September2020.
  58. ^"The Julia Language".julialang.org.Archivedfrom the original on 26 July 2019.Retrieved22 September2019.
  59. ^Cimpanu, Catalin."Mozilla is funding a way to support Julia in Firefox".ZDNet.Archivedfrom the original on 10 July 2019.Retrieved22 September2019.
  60. ^"Julia in Iodide".alpha.iodide.io.Archived fromthe originalon 22 September 2019.Retrieved22 September2019.
  61. ^"Language plugins - Iodide Documentation".iodide-project.github.io.Archivedfrom the original on 22 September 2019.Retrieved22 September2019.
  62. ^"Mozilla Research Grants 2019H1".Mozilla.Archived fromthe originalon 9 October 2019.Retrieved22 September2019.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.
  63. ^"Literate scientific computing and communication for the web: iodide-project/iodide".iodide. 20 September 2019.Archivedfrom the original on 24 August 2018.Retrieved22 September2019.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.
  64. ^"Sponsor the Julia Language".github.com.Archivedfrom the original on 5 July 2021.Retrieved5 June2021.
  65. ^"About Us – Julia Computing".juliacomputing.com.Archivedfrom the original on 1 September 2019.Retrieved12 September2017.
  66. ^"About Us - JuliaHub".juliahub.com.Archivedfrom the original on 16 November 2022.Retrieved16 November2022.
  67. ^"Julia Computing Raises $4.6M in Seed Funding"(Press release). Archived fromthe originalon 10 May 2019.
  68. ^"Julia Computing Awarded $910,000 Grant by Alfred P. Sloan Foundation, Including $160,000 for STEM Diversity".juliacomputing.com.26 June 2017. Archived fromthe originalon 3 August 2020.Retrieved28 July2020.
  69. ^"DIFFERENTIATE—Design Intelligence Fostering Formidable Energy Reduction (and) Enabling Novel Totally Impactful Advanced Technology Enhancements"(PDF).
  70. ^"Julia Computing raises $24 mln in funding round led by Dorilton Ventures".Reuters.19 July 2021.Archivedfrom the original on 18 August 2021.Retrieved18 August2021.
  71. ^"Williams welcomes Julia Computing as Dorilton Ventures partner".www.williamsf1.com(Press release).Archivedfrom the original on 2 September 2021.Retrieved2 September2021.
  72. ^"JuliaHub Receives $13 Million Strategic Investment from AE Industrial Partners HorizonX".info.juliahub.com(Press release). 27 June 2023.Retrieved30 June2023.
  73. ^"The Julia Language"(official website).Archivedfrom the original on 21 February 2017.Retrieved9 December2016.General Purpose [..] Julia lets you write UIs, statically compile your code, or even deploy it on a webserver.
  74. ^Green, Todd (10 August 2018)."Low-Level Systems Programming in High-Level Julia".Archived fromthe originalon 5 November 2018.Retrieved5 November2018.
  75. ^Moss, Robert (26 June 2015)."Using Julia as a Specification Language for the Next-Generation Airborne Collision Avoidance System"(PDF).Archivedfrom the original on 1 July 2015.Retrieved29 June2015.Airborne collision avoidance system
  76. ^abBiggs, 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.
  77. ^"Announcing Dash for Julia".plotly(Press release). 26 October 2020.Archivedfrom the original on 2 September 2021.Retrieved2 September2021.
  78. ^Anaya, Richard (28 April 2019)."How to create a multi-threaded HTTP server in Julia".Medium.Archivedfrom the original on 25 July 2019.Retrieved25 July2019.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.
  79. ^Anthoff, David (1 June 2019)."Node.js installation for julia".GitHub.Archivedfrom the original on 4 September 2024.Retrieved25 July2019.
  80. ^"Translate Julia to JavaScript".JuliaGizmos. 7 July 2019.Archivedfrom the original on 28 March 2019.Retrieved25 July2019.
  81. ^Fischer, Keno (22 July 2019)."Running julia on wasm".GitHub.Archivedfrom the original on 21 November 2020.Retrieved25 July2019.
  82. ^"[ANN] AppBundler.jl - Bundle Your Julia GUI Application".Julia Programming Language.30 November 2023.Archivedfrom the original on 4 September 2024.Retrieved18 December2023.
  83. ^ab"Learn Julia in Y Minutes".Learnxinyminutes.com.Archivedfrom the original on 15 August 2018.Retrieved31 May2017.
  84. ^"PythonCall & JuliaCall".JuliaPy. 29 October 2023.Archivedfrom the original on 31 October 2023.Retrieved30 October2023.
  85. ^"RCall.jl".JuliaInterop. 16 October 2023.Archivedfrom the original on 30 April 2019.Retrieved30 October2023.
  86. ^"CxxWrap".JuliaInterop. 28 October 2023.Retrieved30 October2023.
  87. ^"Julia and Spark, Better Together".juliacomputing.com.2 June 2020. Archived fromthe originalon 14 July 2020.
  88. ^Foster, Claire (23 October 2023)."SQLREPL.jl".Archivedfrom the original on 27 September 2022.Retrieved31 October2023.
  89. ^Noh, WooKyoung (18 October 2023)."Octo.jl".Retrieved31 October2023.
  90. ^"Usage Guide · FunSQL.jl".mechanicalrabbit.github.io.Archivedfrom the original on 31 October 2023.Retrieved31 October2023.
  91. ^"Using Julia with Oracle Databases".21 October 2022.Archivedfrom the original on 8 November 2022.Retrieved8 November2022.
  92. ^Short, Tom (30 October 2023)."StaticCompiler".Archivedfrom the original on 31 October 2023.Retrieved30 October2023.
  93. ^"The Julia REPL · The Julia Language".docs.julialang.org.Archivedfrom the original on 22 September 2019.Retrieved22 September2019.
  94. ^"Introducing Julia/The REPL - Wikibooks, open books for an open world".en.wikibooks.org.Archivedfrom the original on 23 June 2019.Retrieved22 September2019.you can install the Julia package OhMyREPL.jl [..] which lets you customize the REPL's appearance and behaviour
  95. ^"Getting Started · The Julia Language".docs.julialang.org.Archivedfrom the original on 10 August 2019.Retrieved15 August2018.
  96. ^See also:docs.julialang.org/en/v1/manual/strings/for string interpolation and thestring(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).
  97. ^"Julia Documentation".JuliaLang.org.Archivedfrom the original on 17 December 2016.Retrieved18 November2014.
  98. ^"Unicode 15.1 support by stevengj · Pull Request #253 · JuliaStrings/utf8proc".GitHub.Archivedfrom the original on 22 January 2024.Retrieved22 January2024.
  99. ^"support Unicode 15 via utf8proc 2.8 by stevengj · Pull Request #47392 · JuliaLang/julia".GitHub.Archivedfrom the original on 3 November 2022.Retrieved3 November2022.
  100. ^"Project Jupyter".Archivedfrom the original on 29 June 2017.Retrieved19 August2015.
  101. ^Boudreau, Emmett (16 October 2020)."Could Pluto Be A Real Jupyter Replacement?".Medium.Archivedfrom the original on 12 April 2023.Retrieved8 December2020.
  102. ^Machlis, Sharon (27 July 2022)."RStudio changes name to Posit, expands focus to include Python and VS Code".InfoWorld.Retrieved18 January2023.
  103. ^"Heads up! Quarto is here to stay. Immediately combine R & Python in your next document: An extension on a recent post".ds-econ.20 July 2022.Archivedfrom the original on 31 January 2023.Retrieved18 January2023.
  104. ^Foster, Chris (4 April 2022)."SQLREPL.jl".GitHub.Archivedfrom the original on 27 September 2022.Retrieved27 September2022.
  105. ^"Getting Started · RCall.jl".juliainterop.github.io.Archivedfrom the original on 4 September 2024.Retrieved27 September2022.
  106. ^"Julia crashes on installation of the RCall module".Julia Programming Language.21 October 2024.Retrieved22 October2024.For me RCall loads without issue on Julia 1.11 on MacOS
  107. ^"juliacall fails in julia 1.11 with `undefined symbol: jl_stdout_obj` · Issue #234 · Non-Contradiction/JuliaCall".GitHub.Retrieved22 October2024.
  108. ^"Home · LibPQ.jl".invenia.github.io.Archived fromthe originalon 8 November 2022.Retrieved8 November2022.
  109. ^ab"Home · FunSQL.jl".docs.juliahub.com.Archivedfrom the original on 8 November 2022.Retrieved8 November2022.
  110. ^Hood, Doug (21 October 2022)."Using Julia with Oracle Databases".Archivedfrom the original on 8 November 2022.Retrieved8 November2022.
  111. ^"Genie Builder - Visual Studio Marketplace".marketplace.visualstudio.com.Archivedfrom the original on 8 November 2022.Retrieved8 November2022.
  112. ^"How to Build Your First Web App in Julia with Genie.jl".freeCodeCamp.org.1 February 2022.Archivedfrom the original on 8 November 2022.Retrieved8 November2022.
  113. ^"JuliaRegistries / General".GitHub.Archivedfrom the original on 3 August 2020.Retrieved30 April2020.
  114. ^"Pkg.jl - Artifacts".Archivedfrom the original on 2 August 2020.Retrieved4 June2020.
  115. ^"Pkg.jl - Registries".Archivedfrom the original on 13 June 2020.Retrieved30 April2020.
  116. ^Bezanson, Jeff (6 June 2019)."JeffBezanson/femtolisp".GitHub.Archivedfrom the original on 22 December 2022.Retrieved16 June2019.
  117. ^"JuliaSyntax".The Julia Programming Language. 28 August 2022.Archivedfrom the original on 28 August 2022.Retrieved28 August2022.
  118. ^"Enable JuliaSyntax.jl as an alternative Julia parser by c42f · Pull Request #46372 · JuliaLang/julia".GitHub.Archivedfrom the original on 28 August 2022.Retrieved28 August2022.
  119. ^"Julia v1.7.3 has been released".JuliaLang.25 May 2022.Archivedfrom the original on 26 May 2022.Retrieved26 May2022.
  120. ^"Darwin/ARM64 tracking issue · Issue #36617 · JuliaLang/julia".GitHub.Archivedfrom the original on 11 November 2020.Retrieved8 December2020.
  121. ^"Julia Downloads".julialang.org.Archivedfrom the original on 26 January 2021.Retrieved17 May2019.
  122. ^"julia/arm.md".The Julia Language. 7 October 2021.Archivedfrom the original on 15 May 2022.Retrieved15 May2022.A list of known issues for ARM is available.
  123. ^"JuliaGPU".juliagpu.org.Archivedfrom the original on 23 May 2020.Retrieved16 November2022.Almost 300 packages rely directly or indirectly on Julia's GPU capabilities.
  124. ^"Julia on TPUs".JuliaTPU. 26 November 2019.Archivedfrom the original on 30 April 2019.Retrieved29 November2019.
  125. ^"Introducing: oneAPI.jl ⋅ JuliaGPU".juliagpu.org.Retrieved6 September2021.
  126. ^"AMD ROCm · JuliaGPU".juliagpu.org.Archivedfrom the original on 13 June 2020.Retrieved20 April2020.
  127. ^"Build Julia for RaspberryPi Zero".Gist.Archivedfrom the original on 1 December 2020.Retrieved14 August2020.
  128. ^"JuliaBerry: Julia on the Raspberry Pi".juliaberry.github.io.Archivedfrom the original on 8 July 2020.Retrieved14 August2020.
  129. ^Giordano, Mosè (29 September 2022)."Julia on Fugaku (2022-07-23)".GitHub.Archivedfrom the original on 8 November 2022.Retrieved8 November2022.
  130. ^"Julia available in Raspbian on the Raspberry Pi".Archivedfrom the original on 4 May 2017.Retrieved6 June2017.Julia works on all the Pi variants, we recommend using the Pi 3.
  131. ^"Julia language for Raspberry Pi".Raspberry Pi Foundation.12 May 2017.Archivedfrom the original on 2 June 2017.Retrieved6 June2017.
  132. ^"Release v1.12-0a92fecc12 · maleadt/julia".GitHub.Retrieved12 October2024.
  133. ^"julia/doc/src/devdocs/build/riscv.md at master · alexfanqi/julia".GitHub.Retrieved9 October2024.
  134. ^"Running Julia baremetal on an Arduino".seelengrab.github.io.Archivedfrom the original on 24 May 2022.Retrieved24 May2022.
  135. ^Sukera (31 July 2023)."AVRDevices.jl".Archivedfrom the original on 5 August 2023.Retrieved5 August2023.
  136. ^Chen, Jiahao."Jiahao Chen".Jiahao Chen.Archived fromthe originalon 23 February 2023.Retrieved23 February2023.
  137. ^"Newsletter January 2022 - Julia Growth Statistics - Julia Computing".juliacomputing.com.Archivedfrom the original on 26 January 2022.Retrieved26 January2022.
  138. ^"Introducing Braket.jl - Quantum Computing with Julia".Julia Community 🟣.15 November 2022.Archivedfrom the original on 19 June 2024.Retrieved23 February2023.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"(PDF).May 2020.Archived(PDF)from the original on 9 March 2024.Retrieved23 February2023.
  140. ^"Towards Using Julia for Real-Time applications in ASML JuliaCon 2022".pretalx.com.Archivedfrom the original on 23 February 2023.Retrieved23 February2023.
  141. ^"Home - CliMA".CliMA – Climate Modeling Alliance.Archivedfrom the original on 18 June 2023.Retrieved18 June2023.
  142. ^"Julia Computing Brings Support for NVIDIA GPU Computing on Arm Powered Servers - JuliaHub".juliahub.com(Press release).Archivedfrom the original on 16 November 2022.Retrieved16 November2022.
  143. ^"Julia for HEP Mini-workshop".indico.cern.c h.27 September 2021.Archivedfrom the original on 11 August 2022.Retrieved23 August2022.Julia and the first observation of Ω-_b → Ξ+_c K-π-
  144. ^Mikhasenko, Misha (29 July 2022)."ThreeBodyDecay".GitHub.Archivedfrom the original on 23 August 2022.Retrieved23 August2022.
  145. ^Mikhasenko, Misha (July 2021)."Julia for QCD spectroscopy"(PDF).indico.cern.ch.Archived(PDF)from the original on 23 August 2022.Retrieved23 August2022.Summary: Julia is ready to be used in physics HEP analysis.
  146. ^"JuliaHEP/UnROOT.jl".JuliaHEP. 19 August 2022.Archivedfrom the original on 19 June 2024.Retrieved23 August2022.
  147. ^"Julia · Search · GitLab".GitLab.Archivedfrom the original on 23 August 2022.Retrieved23 August2022.
  148. ^"Commits · master · sft / lcgcmake · GitLab".GitLab.Archivedfrom the original on 12 April 2023.Retrieved23 August2022.bump julia version to 1.7.3
  149. ^"Modeling Spacecraft Separation Dynamics in Julia - Jonathan Diegelman".9 March 2021.Archivedfrom the original on 6 September 2021.Retrieved6 September2021.
  150. ^"Circuitscape/Circuitscape.jl".Circuitscape. 25 February 2020.Archivedfrom the original on 30 July 2020.Retrieved26 May2020.
  151. ^"Conservation through Coding: 5 Questions with Viral Shah | Science Mission Directorate".science.nasa.gov.Archived fromthe originalon 25 May 2020.Retrieved26 May2020.
  152. ^"Julia in the Wild - Julia Data Science".juliadatascience.io.Archivedfrom the original on 12 September 2022.Retrieved12 September2022.
  153. ^"Seven Rocky TRAPPIST-1 Planets May Be Made of Similar Stuff".Exoplanet Exploration: Planets Beyond our Solar System.Archivedfrom the original on 6 October 2022.Retrieved6 October2022.
  154. ^"Julia in Astronomy & Astrophysics Research | Eric B. Ford | JuliaCon 2022".25 July 2022.Archivedfrom the original on 6 October 2022.Retrieved6 October2022.
  155. ^"JuliaSpace/SatelliteToolbox.jl".JuliaSpace. 20 May 2020.Archivedfrom the original on 16 June 2021.Retrieved26 May2020.
  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.Archivedfrom the original on 19 June 2024.Retrieved26 January2023.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".juliahub.com.Archivedfrom the original on 10 February 2023.Retrieved10 February2023.
  158. ^"Pumas-AI".Pumas-AI.Archivedfrom the original on 10 February 2023.Retrieved10 February2023.
  159. ^"Release v1.3.0 · FRBNY-DSGE/DSGE.jl".GitHub.Archivedfrom the original on 3 January 2022.Retrieved3 January2022.New subspecs of Model1002 for estimating the DSGE with COVID-19 shocks
  160. ^"Finance and Economics Use Cases".Julia Programming Language.2 May 2023.Retrieved4 May2023.
  161. ^abD'Cunha, Suparna Dutt (20 September 2017)."How A New Programming Language Created By Four Scientists Now Used By The World's Biggest Companies".Forbes.Archivedfrom the original on 1 October 2022.Retrieved1 October2022.
  162. ^"Julia for Election Security".Julia Forem. 23 September 2022.Archivedfrom the original on 4 September 2024.Retrieved27 September2022.
  163. ^"Nobel Laureate Thomas J. Sargent - JuliaHub".juliahub.com.Archivedfrom the original on 10 February 2023.Retrieved10 February2023.

Further reading

edit
edit