Hello, The Julia documentation says that you can access some BLAS functions:
http://docs.julialang.org/en/release-0.3/stdlib/linalg/?module-Base.LinAlg.BLAS#module-Base.LinAlg.BLAS However, I don't seem to have any of those in my system: julia> help(axpy!) ERROR: axpy! not defined julia> using BLAS ERROR: BLAS not found in require at loading.jl:47 julia> Pkg.add("BLAS") ERROR: unknown package BLAS in wait at task.jl:51 in sync_end at ./task.jl:311 in add at pkg/entry.jl:319 in add at pkg/entry.jl:71 in anonymous at pkg/dir.jl:28 in cd at ./file.jl:20 in __cd#228__ at ./pkg/dir.jl:28 in add at pkg.jl:20 julia> Does anybody know what's going on? What do I need to do to get the BLAS functions? Cheers, Daniel.
