https://julialang.org
The Julia Programming Language
Watch what unfolded at JuliaCon 2023 here. The latest developments, optimizations, and features happen right here, at JuliaCon.
The Julia Programming Language Did you miss JuliaCon 2024? Watch the 11th annual JuliaCon talks on YouTube! × Download Documentation Learn Blog Community Contribute JSoC Star Sponsor The Julia Programming Language Download Documentation Star Julia in a Nutshell Fast Julia was designed for high performance. Julia programs automatically compile to efficient native code via LLVM, and support multiple platforms. Dynamic Julia is dynamically typed, feels like a scripting language, and has good support for interactive use, but can also optionally be separately compiled. Reproducible Reproducible environments make it possible to recreate the same Julia environment every time, across platforms, with pre-built binaries. Composable Julia uses multiple dispatch as a paradigm, making it easy to express many object-oriented and functional programming patterns. The talk on the Unreasonable Effectiveness of Multiple Dispatch explains why it works so well. General Julia provides asynchronous I/O, metaprogramming, debugging, logging, profiling, a package manager, and more. One can build entire Applications and Microservices in Julia. Open source Julia is an open source project with over 1,000 contributors. It is made available under the MIT license. The source code is available on GitHub. See Julia Code Examples Try Julia In Your Browser Ecosystem Visualization General Purpose Data Science Machine Learning Scientific Domains Parallel Computing General Computing Build, Deploy or Embed Your Code Julia makes it possible to build complete applications. Write web UIs with Dash.jl and Genie.jl or native UIs with GTK.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. 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. Parallel Computing Parallel and Heterogeneous Computing Julia is designed for parallelism, and provides built-in primitives for parallel computing at every level: instruction level parallelism, multi-threading, GPU computing, and distributed computing. 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. Machine Learning Scalable Machine Learning The MLJ.jl package provides a unified interface to common machine learning algorithms, which include generalized linear models, decision trees, and clustering. Flux.jl and Lux.jl are powerful packages for Deep Learning. Packages such as Metalhead.jl, ObjectDetector.jl, and 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 is a best in class package for probabilistic programming. Scientific Computing Rich Ecosystem for Scientific Computing Julia is designed from the ground up to be very good at numerical and scientific computing. This can be seen in the abundance of scientific tooling written in Julia, such as the state-of-the-art differential equations ecosystem (DifferentialEquations.jl), optimization tools (JuMP.jl and Optim.jl), iterative linear solvers (IterativeSolvers.jl), Fast Fourier transforms (AbstractFFTs.jl), and much more. 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. Data Science Interact with your Data The Julia data ecosystem provides DataFrames.jl to work with datasets, and perform common data manipulations. CSV.jl is a fast multi-threaded package to read CSV files and integration with the Arrow ecosystem is in the works with Arrow.jl. Online computations on streaming data can be performed with OnlineStats.jl. The Queryverse provides query, file IO and visualization functionality. In addition to working with tabular data, the JuliaGraphs packages make it easy 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. Visualization Data Visualization and Plotting 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. Plots.jl is a visualization interface and toolset. It provides a common API across various backends, like GR.jl, PyPlot.jl, and PlotlyJS.jl. Makie.jl is a sophisticated package for complex graphics and animations. 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. For those who do not wish to leave the comfort of the terminal, there is also UnicodePlots.jl. Lorenz Attractor in Julia × 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 Close JuliaCon 2023 Julia Channel on YouTube JuliaCon 2023 videos Packages Julia has been downloaded over 45 million times and the Julia community has registered over 10,000 Julia packages for community use. These include various mathematical libraries, data manipulation tools, and packages for general purpose computing. In addition to these, you can easily use libraries from Python, R, C/Fortran, C++, and Java. If you do not find what you are looking for, ask on Discourse, or even better, contribute one! JuliaHub: Package Search JuliaPackages: Trending Feed of new Julia packages Recent Blog Posts JuliaCon Global 2025 and JuliaCon 2024 Wrap-Up 2024-09-18 nothing 2024 GSoC and JSoC Fellows Announced 2024-05-03 nothing Julia 1.10 Highlights 2023-12-27 nothing Visit Blog View Community Posts Talk to us Discourse Discourse GitHub Source code Zulip Zulip Slack Slack Twitter #JuliaLang Videos YouTube LinkedIn LinkedIn Twitch Twitch Editors and IDEs VS Code VS Code Extension Jupyter Jupyter kernel Pluto.jl Simple reactive notebooks Vim Vim plugin Emacs Emacs plugin Essential Tools Debugger Debugger.jl Profiler Profile (Stdlib) Revise Revise.jl GPUs JuliaGPU About Get Help Governance Publications Sponsors Downloads All Releases Source Code Current Stable Release Longterm Support Release Documentation JuliaAcademy YouTube Getting Started FAQ Books Community Code of Conduct Stewards Diversity Julia Gender Inclusive JuliaCon User/Developer Survey Shop Merchandise Contributing Contributor's Guide Issue Tracker Report a Security Issue Help Wanted Issues Good First Issue Dev Docs Last modified: 0001-01-01. This site is powered by Netlify, Franklin.jl, and the Julia Programming Language. We thank Fastly for their generous infrastructure support. ©2024 JuliaLang.org contributors. The content on this website is made available under the MIT license. Sponsor
en
en
1730968044
https://julialang.org
ཁྱོད་རའི་ས་ཁོངས་ཞུན་དག་འབད་ག?
ཁྱོད༌ག༌ཅི༌འབདཝ༌སྨོ?