Maybe it would be better to export the BLAS module instead of putting the individual function into Base? Like we have Pkg.init() one would have BLAS.axpy!
Am Montag, 9. März 2015 11:22:23 UTC+1 schrieb Mauro: > > On my system I need to qualify it with Base, so Base.axpy! works. > > On Mon, 2015-03-09 at 11:20, Daniel Carrera <[email protected] > <javascript:>> wrote: > > 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. > >
