Julia (programming language)

Julia
Paradigm Multi-paradigm: multiple dispatch ("object-oriented"), procedural, functional, meta, multistaged[1]
Designed by Jeff Bezanson, Stefan Karpinski, Viral B. Shah, Alan Edelman
Developer Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors[2][3]
First appeared 2012 (2012)[4]
Stable release
0.5.0[5] / 0.4.7[6] / 19 September 2016 (2016-09-19)[7]
Preview release
0.6.0-dev / updated daily
Typing discipline Dynamic, nominative, parametric
OS Linux, macOS, FreeBSD, Windows
License MIT (core)[2] / GPL v2[8][9] A make-file option drops the GPL libraries[10]
Filename extensions .jl
Website julialang.org
Influenced by
MATLAB, Lisp, C, Fortran, Mathematica[4] (strictly its Wolfram Language), Python, Perl, R, Ruby, Lua[11]

Julia is a high-level dynamic programming language designed to address the requirements of high-performance numerical and scientific computing while also being effective for general-purpose programming,[12][13][14][15] web use[16][17] or as a specification language.[18]

Distinctive aspects of Julia's design include a type system with parametric types in a fully dynamic programming language and multiple dispatch as its core programming paradigm. It allows concurrent, parallel and distributed computing, and direct calling of C and Fortran libraries without glue code.

Julia is garbage-collected,[19] uses eager evaluation and includes efficient libraries for floating-point calculations, linear algebra, random number generation, fast Fourier transforms and regular expression matching.

Language features

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

Multiple dispatch (also known as multimethods in Lisp) is a generalization of single dispatch  the polymorphic mechanism used in common object oriented (OO) 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 be subtyped, but composition is used over inheritance, that is used by traditional object-oriented languages (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 (such as an ALGOL-like free-form infix syntax rather than a Lisp-like prefix syntax, while in Julia "everything"[23] is an expression)  also a multiple-dispatch-oriented dynamic language  and Fortress, another numerical programming language with multiple dispatch and a sophisticated parametric type system. While 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 compilation and execution 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 needs to be pre-installed as you run source code you provide, while another way is possible, where you make a standalone "executable that doesn't require any Julia source code" built with BuildExecutable.jl.[24][25]

Julia's syntactic macros (used for metaprogramming), like Lisp macros, are more powerful and different from 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 session shell, called Julia's REPL, which can be used to experiment and test code quickly.[26] The following fragment represents a sample session on the REPL:[27]

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. The REPL also keeps the history of commands, even between sessions. For other examples, see the Julia documentation,[28] which gives 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 (for example):[29]

$ julia <filename>

Julia is also supported by Jupyter, an online interactive "notebooks" environment (project Jupyter is a multi-language extension, that "evolved", from the IPython command shell; now includes IJulia). See for other ways in the next section.

To use Julia with other languages

Julia's ccall keyword is used to call C-exported or Fortran shared library functions individually.

Julia has Unicode 9.0 support, with UTF-8 used for source code (and by default for strings) and e.g. optionally allowing 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.

Implementation

Julia's core is implemented in C and C++ (the LLVM dependency is in C++), its parser in Scheme ("femtolisp"), and the LLVM compiler framework is used for just-in-time (JIT) generation of 64-bit or 32-bit optimized machine code (i.e. not for VM[30]) depending on the platform Julia runs on. With some exceptions (e.g., libuv), the standard library is implemented in Julia itself. 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).[31] Development of Julia began in 2009 and an open-source version was publicized in February 2012.[4][32]

Julia, the 0.5.x line, is on a monthly release schedule where bugs are fixed and some new features from 0.6-dev are backported (and possibly also to 0.4.x).

Current and future platforms

While Julia uses JIT[33] (MCJIT[34] from LLVM)  Julia generates native machine code, directly, the first time a function is run (not a bytecode that is run on a VM, as with e.g. Java/JVM or Java/Dalvik in Android).

Current support is for 32- and 64-bit (all except for ancient pre-Pentium 4-era, to optimize for newer) x86 processors (and with download of executables or source code also available for other architectures). "Experimental and early support for ARM, AARCH64, and POWER (little-endian) is available too."[35] Including support for Raspberry Pi 1 and later (e.g. "requires at least armv6").[36][37]

Support for GNU Hurd is being worked on.[38]

Julia version 0.6 is planned for 2016 and 1.0 for 2017 and some features are discussed for 2+ that is also planned, e.g. "multiple inheritance for abstract types".[39]

Julia2C source-to-source compiler

A Julia2C source-to-source compiler from Intel Labs is available.[40] This source-to-source compiler is a fork of Julia, that implements the same Julia language syntax, which emits C code (for compatibility with more CPUs) instead of native machine code, for functions or whole programs. The compiler is also meant to allow analyzing code at a higher level than C.[41]

Intel's ParallelAccelerator.jl can be thought of as a partial Julia to C++ compiler, but the objective is parallel speedup (can by "100x over plain Julia", for the older 0.4 version,[42] and could in cases also speed up serial code manyfold for that version), not compiling the full language to C++ (it's only an implementation detail, that may be dropped later). It needs not compile all syntax, as the rest is handled by Julia.

Notes

  1. Calling newer Python 3 also works[20][21] (and PyPy[22]) and calling in the other direction, from Python to Julia, is also supported with pyjulia. Even calling recursively (back and forth) between these languages is possible, without (or with) using Polyglot.jl, that supports additional languages to Python.

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. 1 2 "LICENSE.md". GitHub.
  3. "Contributors to JuliaLang/julia". GitHub.
  4. 1 2 3 "Why We Created Julia". Julia website. February 2012. Retrieved 7 February 2013.
  5. http://julialang.org/downloads/
  6. http://julialang.org/downloads/oldreleases.html
  7. https://github.com/JuliaLang/julia/releases/tag/v0.5.0
  8. https://julialang.org
  9. Non-GPL Julia?
  10. "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 lets you build from source without any GPL library dependencies.
  11. http://julia.readthedocs.org/en/latest/manual/introduction/
  12. "The Julia Language" (official website).
  13. Bryant, Avi (15 October 2012). "Matlab, R, and Julia: Languages for data analysis". O'Reilly Strata.
  14. Krill, Paul (18 April 2012). "New Julia language seeks to be the C for scientists". InfoWorld.
  15. Finley, Klint (3 February 2014). "Out in the Open: Man Creates One Programming Language to Rule Them All". Wired.
  16. "Escher lets you build beautiful interactive Web UIs in Julia". Retrieved 27 July 2015.
  17. "Getting Started with Node Julia". node-julia.
  18. Moss, Robert (26 June 2015). "Using Julia as a Specification Language for the Next-Generation Airborne Collision Avoidance System". Archived from the original on 1 July 2015. Retrieved 29 June 2015. Airborne collision avoidance system
  19. "Suspending Garbage Collection for Performance...good idea or bad idea?".
  20. "PyCall.jl". stevengj. github.com.
  21. "Using PyCall in julia on Ubuntu with python3". julia-users at Google Groups. to import modules (e.g. python3-numpy)
  22. "Polyglot.jl". wavexx. github.com.
  23. Learn X in Y minutes: Where X=Julia at learnxinyminutes.com
  24. dhoegh/BuildExecutable.jl: Build a standalone executables from a Julia script
  25. https://groups.google.com/forum/#!topic/julia-users/MtF4wHc77sw
  26. Julia REPL documentation
  27. See also: http://julia.readthedocs.org/en/latest/manual/strings/ for string interpolation and the string(greet, ", ", whom, ".\n") example for preferred ways to concatenate strings. While the + operator is not used for string concatenation, it could easily be defined to do so. Julia has the println and print functions, but also a @printf macro, while not in a function form, to eliminate run-time overhead of formatting (unlike the same function in C).
  28. "Julia Documentation". julialang.org. Retrieved 18 November 2014.
  29. Learn Julia in Y Minutes
  30. "Chris Lattner discusses the name LLVM". Retrieved 22 December 2011.
  31. "Julia: A Fast Dynamic Language for Technical Computing" (PDF). 2012.
  32. Gibbs, Mark (9 January 2013). "Pure and Julia are cool languages worth checking out". Network World (column). Retrieved 7 February 2013.
  33. "Support MCJIT". Retrieved 26 May 2015.
  34. "Using MCJIT with the Kaleidoscope Tutorial". 22 July 2013. Retrieved 26 May 2015.
  35. https://github.com/JuliaLang/julia/blob/v0.5.0/README.md
  36. "Cross-compiling for ARMv6". Retrieved 16 May 2015. I believe #10917 should fix this. The CPU used there arm1176jzf-s.
  37. "ARM build failing during bootstrap on Raspberry Pi 2". Retrieved 16 May 2015. I can confirm (FINALLY) that it works on the Raspberry Pi 2 [..] I guess we can announce alpha support for arm in 0.4 as well.
  38. https://github.com/JuliaLang/openlibm/pull/129 Fix building tests on GNU/kFreeBSD and GNU/Hurd
  39. https://github.com/JuliaLang/julia/issues/6975 Interfaces for Abstract Types
  40. https://github.com/IntelLabs/julia/tree/j2c/j2c
  41. "Julia2C initial release". By translating Julia to C, we leverage the high-level abstractions (matrix, vector, ..), which are easier to analyze, and can potentially add the rich extensions of C (like openmp, tbb, ...).

    The tool may also extend Julia to new architectures where the only available tool chain is for C
    [..]
    Translation from C to Julia might be harder.
  42. Lindsey Kuper (1 Mar 2016). "An introduction to ParallelAccelerator.jl".

External links

Wikibooks has a book on the topic of: Introducing Julia
This article is issued from Wikipedia - version of the 11/23/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.