Skip to content
#

julia-language

julia logo

Julia is a high-level dynamic programming language designed to address the needs of high-performance numerical analysis and computational science. It provides a sophisticated compiler, distributed parallel execution, numerical accuracy, and an extensive mathematical function library.

Here are 508 public repositories matching this topic...

julia
CameronBieganek
CameronBieganek commented Feb 21, 2020

Do we expect the following syntax to work?

julia> [Int, Float64, String, Bool] .<: Union{Int, String}
ERROR: syntax: space not allowed after ":" used for quoting

It works if you call <: as a broadcasted function:

julia> (<:).([Int, Float64, String, Bool], Union{Int, String})
4-element BitArray{1}:
 1
 0
 1
 0

Version info:

Julia Versio
dhairyagandhi96
dhairyagandhi96 commented Feb 24, 2020

Currently, the setup phase is documented properly, but a similar example of the teardown would be well appreciated as that quickly got lost when trying to work on some benchmarks I was working on recently. It wasn't obvious that my benchmark (specifically the teardown) was set up properly, and there wasn't a simple one-or-two liner in the docs that I could use to verify what I was doing was

lassepe
lassepe commented Mar 17, 2020

It seems like the documentation is outdated for vim and emas. The examples still suggest that one should handle a Dict as the last argument to the LanguangeServerInstance. However, it seems like this is a function now (error handler). Unfortunately, I don't know enough about the internals to update the documentation myself and make a PR, all I can tell is that the current documentation seems o

non-Jedi
non-Jedi commented Feb 24, 2018

Would be really nice if julia-mode provided ability to edit docstrings using
markdown-mode. Not an elisp guy, and still a relatively new emacs user, so I'm
not sure exactly how this would work, but I thought I'd throw the suggestion out
there.

Maybe if I get some time, I'll take a look at how org-mode does it with src
blocks and see if I can duplicate that in julia-mode.

Keno
Keno commented Dec 12, 2018

Currently we say things like "<8 TPU chips in 2x2x2 topology>", which is informative, but doesn't match Google terminology. We could try printing something like "<TPUv3-8 in 2x2 topology>". We don't get the chip kind information from the topology, but we could for now just determine it from the memory information.

ahojukka5
ahojukka5 commented Sep 16, 2019
add_element!(mesh, elid, eltype, connectivity)
Add an element into the mesh. ´elid´ is the element id, ´eltype´ is the type of the element and ´connectivity´ is the connectivity of the element.

At least eltype needs to be defined more precisely. I guess it's a symbol :Seg2, :Tri3 and so on.

Datseris
Datseris commented Mar 26, 2020

We should make an additional documentation page, called "Example overview". In this page we list the examples (as bullet points). In each bullet point we explain what the user can learn by each example page.

Eg. from HK model they learn synchronous agent update. From COVID-19 they learn using arbitrary graphs and plotting on arbitrary graphs. etc.

jac0320
jac0320 commented Aug 25, 2017

Proposed Sections on POD Documentation,

  • README.md: general description and instructions for POD.jl

  • Documenter.jl

    • Introduction: General solver description
    • How to Use: Instruction of installing and using POD with an example
    • Choosing Solver: List of supported sub-solvers and directions on how to use them
    • Algorithm: Big-picture description and point to the paper
    • Expr

Created by Jeff Bezanson, Stefan Karpinski, Viral B. Shah, Alan Edelman

Released February 14, 2012

Organization
JuliaLang
Website
julialang.org
Wikipedia
Wikipedia

Related Topics

language
You can’t perform that action at this time.