Experience blazing fast computing and a vibrant ecosystem.
Julia makes it easy to build and deploy applications for a wide range of tasks.
Category | Description |
---|---|
Build, Deploy or Embed Your Code | Write web UIs with Dash.jl and Genie.jl or native UIs with Gtk4.jl. Pull data from a variety of databases. Build shared libraries and executables with PackageCompiler. Deploy on a webserver with HTTP.jl or embedded devices. Powerful shell integration make it easy to managing other processes. |
Foreign Function Interfaces | Julia has foreign function interfaces for C, Fortran, C++, Python, R, Java, Mathematica, Matlab, and many other languages. Julia can also be embedded in other programs through its embedding API. Julia's PackageCompiler makes it possible to build binaries from Julia programs that can be integrated into larger projects. Python programs can call Julia using juliacall. R programs can do the same with R's JuliaCall, which is demonstrated by calling MixedModels.jl from R. Mathematica supports calling Julia through its External Evaluation System. |
Julia is designed for parallelism, and provides built-in primitives for parallel computing at every level.
Feature | Details |
---|---|
Instruction Level Parallelism | Supported |
Multi-threading | Supported |
GPU Computing | Supported |
Distributed Computing | Supported |
The Celeste.jl project achieved 1.5 PetaFLOP/s on the Cori supercomputer at NERSC using 650,000 cores.
The Julia compiler can also generate native code for GPUs. Packages such as DistributedArrays.jl and Dagger.jl provide higher levels of abstraction for parallelism. Distributed Linear Algebra is provided by packages like Elemental.jl and TSVD.jl. MPI style parallelism is also available through MPI.jl.
Julia offers a rich ecosystem for machine learning.
Package | Description |
---|---|
MLJ.jl | Provides a unified interface to common machine learning algorithms, which include generalized linear models, decision trees, and clustering. |
Flux.jl & Lux.jl | Powerful packages for Deep Learning. |
Metalhead.jl, ObjectDetector.jl, TextAnalysis.jl | Provide ready to use pre-trained models for common tasks. |
AlphaZero.jl | Provides a high performance implementation of the reinforcement learning algorithms from AlphaZero. |
Turing.jl | A best in class package for probabilistic programming. |
Julia is designed from the ground up to be very good at numerical and scientific computing.
Example Tools | Category |
---|---|
DifferentialEquations.jl | Differential Equations |
JuMP.jl & Optimization.jl | Optimization |
Krylov.jl, LinearSolve.jl | Iterative Linear Solvers |
AbstractFFTs.jl | Fast Fourier Transforms |
General purpose simulation frameworks are available for Scientific Machine Learning, Quantum computing and much more.
Julia also offers a number of domain-specific ecosystems, such as in biology (BioJulia), operations research (JuMP Dev), image processing (JuliaImages), quantum physics (QuantumBFS), nonlinear dynamics (JuliaDynamics), quantitative economics (QuantEcon), astronomy (JuliaAstro) and ecology (EcoJulia).
With a set of highly enthusiastic developers and maintainers, the scientific ecosystem in Julia continues to grow rapidly.
Julia has a comprehensive data science ecosystem.
Package | Description |
---|---|
DataFrames.jl | To work with datasets, and perform common data manipulations. |
CSV.jl | A fast multi-threaded package to read CSV files and integration with the Arrow ecosystem is in the works with Arrow.jl. |
OnlineStats.jl | Online computations on streaming data |
The Queryverse | Provides query, file IO and visualization functionality. |
JuliaGraphs | To work with combinatorial data. |
Julia can work with almost all databases using JDBC.jl and ODBC.jl drivers. In addition, it also integrates with the Spark ecosystem through Spark.jl.
Data visualization has a complicated history. Plotting software makes trade-offs between features and simplicity, speed and beauty, and a static and dynamic interface.
Some packages make a display and never change it, while others make updates in real-time.
Package | Description |
---|---|
Plots.jl | A visualization interface and toolset. It provides a common API across various backends, like GR.jl, PyPlot.jl, and PlotlyJS.jl. |
Makie.jl | A sophisticated package for complex graphics and animations. |
Gadfly.jl | Users who are used to "grammar of graphics" plotting APIs should take a look at Gadfly.jl. |
VegaLite.jl | Provides the Vega-Lite grammar of interactive graphics interface as a Julia package. |
UnicodePlots.jl | For those who do not wish to leave the comfort of the terminal. |
function fill_twos!(a) for i=1:length(a) a[i] = 2 end end function fast_strange_twos(n) a = Array(randbool() ? Int64 : Float64, n) fill_twos!(a) return a end