Skip to content
#

The 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 4,171 public repositories matching this topic...

julia
stevengj
stevengj commented Apr 2, 2022

Currently, this is defined only for arrays, but it seems like we should have

normalize(x::Number) = x / abs(x)

(I just came across this when trying to implement this algorithm for random unitary matrices, which is basically Q * Diagonal(normalize.(diag(R)), but I discovered that normalize didn't work.)

linear algebra good first issue
dash
Pluto.jl
BioTurboNick
BioTurboNick commented Apr 19, 2022

I believe the error itself is unrelated to Pluto, but it's causing the notebook to hang (working animations running). Pluto v0.19.0, Julia 1.8.0-beta3

It seems to be happening when I try to add using Profile. The only way to get out of it is to edit the notebook manually to remove that line, then restart the notebook.

      From worker 17:   ERROR: LoadError: ccall method definition: 
good first issue package manager
JuMP.jl
BeastyBlacksmith
BeastyBlacksmith commented Jan 26, 2022

Details

This shouldn't happen

using Plots
plot(rand(4,4), layout = 2, series_annotations = [1 2; 3 4])
Error showing value of type Plots.Plot{Plots.GRBackend}:
ERROR: type Array has no field baseshape
Stacktrace:
  [1] getproperty(x::Vector{Plots.SeriesAnnotations}, f::Symbol)
    @ Base ./Base.jl:42
  [2] serie
Makie.jl
eatonphil
eatonphil commented Nov 17, 2021

Unlike all the existing charts that graph a string (most likely) against a number, this graphs numbers on both axises. So in addition to the configuration changes needed for passing the right field to chartjs, the PR for this should also change the "preferred type" to "number" for the x axis when the chart type is scatter plot.

enhancement good first issue
ToucheSir
ToucheSir commented Apr 20, 2022

We have ZygoteRuleConfig for this, so there should be no major technical limitations. rrules generally have far better UX than @adjoints (as anyone who has had to read a stacktrace from Zygote can attest). The ultimate end goal would be to get rid of ZygoteRules entirely.

enhancement good first issue up for grabs
jonathan-laurent
jonathan-laurent commented Sep 10, 2021

In order to profile and optimize the current inference server architecture and best tune its hyper-parameters for various applications, it would be very useful for AlphaZero.jl to have a mode where it outputs a debugging timeline in which it is possible to easily visualize when each worker submits an inference request, when it gets an answer, and when inference concretely runs on the GPU (along wi

help wanted good first issue
traversaro
traversaro commented Jan 23, 2022

If I run the copy&paste examples, such as https://mtk.sciml.ai/stable/tutorials/acausal_components/ :

using ModelingToolkit, Plots, DifferentialEquations

@variables t
@connector function Pin(;name)
    sts = @variables v(t)=1.0 i(t)=1.0 [connect = Flow]
    ODESystem(Equation[], t, sts, []; name=name)
end

function Ground(;name)
    @named g = Pin()
    eqs = [g.v ~ 0]
    
good first issue

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