madeleineudell / ParallelSparseMatMul.jl

A Julia library for parallel sparse matrix multiplication using shared memory
Other
43 stars 13 forks source link

ERROR: access to undefined reference #5

Closed zahachtah closed 10 years ago

zahachtah commented 10 years ago

I get the following error on my macbook, it worked the day before...my iMac runs this without hiccups. Any ideas?

julia> addprocs(3) 3-element Array{Any,1}: 2 3 4

julia> using ParallelSparseMatMul

julia> @time S = share(sprand(nDendr,nCells+nExtInp,0.1)) ERROR: nDendr not defined

julia> nDendr=10000 10000

julia> @time D = share(sprand(nDendr,nDendr,0.01)) ERROR: access to undefined reference in share at /Users/jon/.julia/ParallelSparseMatMul/src/parallel_matmul.jl:47 in share at /Users/jon/.julia/ParallelSparseMatMul/src/parallel_matmul.jl:51

madeleineudell commented 10 years ago

I'm not able to reproduce your error running the master branch of julia at commit 037a469. I'll fast-forward to the current version and see what happens.

On Tue, Mar 4, 2014 at 1:23 AM, zahachtah notifications@github.com wrote:

I get the following error on my macbook, it worked the day before...my iMac runs this without hiccups. Any ideas?

julia> addprocs(3) 3-element Array{Any,1}: 2 3 4

julia> using ParallelSparseMatMul

julia> @time https://github.com/time S = share(sprand(nDendr,nCells+nExtInp,0.1)) ERROR: nDendr not defined

julia> nDendr=10000 10000

julia> @time https://github.com/time D = share(sprand(nDendr,nDendr,0.01)) ERROR: access to undefined reference in share at /Users/jon/.julia/ParallelSparseMatMul/src/parallel_matmul.jl:47 in share at /Users/jon/.julia/ParallelSparseMatMul/src/parallel_matmul.jl:51

Reply to this email directly or view it on GitHubhttps://github.com/madeleineudell/ParallelSparseMatMul.jl/issues/5 .

Madeleine Udell PhD Candidate in Computational and Mathematical Engineering Stanford University www.stanford.edu/~udell

madeleineudell commented 10 years ago

I can't reproduce your error running the latest version of julia either...

zahachtah commented 10 years ago

Ok, must be something wrong at my end. thanks for looking into it.