JLD.jl icon indicating copy to clipboard operation
JLD.jl copied to clipboard

Saving and loading julia variables while preserving native types

Results 100 JLD.jl issues
Sort by recently updated
recently updated
newest added
trafficstars

This issue has been reported initially at JuliaLang/julia#17554. Discussion can continue here.

From Nanosoldier: ``` stored type BenchmarkTools.ParametersPreV006 does not match currently loaded type ``` Unfortunately this seems to have crippled Nanosoldier. I'm not sure what the deal is yet.

```@save``` macro in JLD.jl is highly useful and convenient. However, I encountered the following problem. I am using both Plots.jl and LightGraphs.jl packages along with JLD.jl (v0.8.3) under Julia v0.6.1....

Hello, I stored some data on .jld files on a computer. Now I am trying to load the data on a different computer but I receive the following error: >...

I often use a pattern where my code can run in one of two modes: - Record, where benchmark results are created - Playback, where previously recorded results are used...

Consider the following minimal module: ```julia __precompile__() module Foo using JLD file = joinpath(@__DIR__, "foo.jld") JLD.save(file, "a", (1,)) JLD.load(file) # This line triggers the warning end ``` Precompiling it results...

I just noticed that when I save a `SharedArray`, the type information is appropriately recreated on load. However, when loaded, the data exists in the primary thread, but is not...

Can't save `Union`s? JLD tests passed though... ```julia julia> using JLD julia> x = Union{Int, String}[1,"a"] 2-element Array{Union{Int64, String},1}: 1 "a" julia> save("/tmp/myfile.jld", "x", x) ERROR: MethodError: no method matching...

Hi ! very useful module :) but i got a problem trying to save a "Model" data structure from JuMP package. i use julia 0.6.0 here is my test script...

I don't see a way this is going to work on 0.7, since we have no control over the alignment of arrays within the file. We could use [UnalignedVectors.jl](https://github.com/JuliaArrays/UnalignedVectors.jl) in...