We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running the example scripts a set where address bus is larger than 32 bits, the following error appears:
C1_SCY, C1_MCU, C1_SHF, C1_TRC = DetectAnomalies_FullCheck_MassStorage(UInt64.(DATA), WordWidth, LA, Operation, TraceRuleLength, UsePseudoAddress, KeepCycles, ϵ, LargestMCUSize) ERROR: MethodError: no method matching CreateDVSetHistogram_MassStorage(::Vector{UInt64}, ::Int64) Closest candidates are: CreateDVSetHistogram_MassStorage(::Vector{Integer}, ::Int64) @ LELAPE ...LELAPE/src/functions/DataTreatCheck/CreateHistogram_MassStorage.jl:52 Stacktrace: [1] DetectAnomalies_FullCheck_MassStorage(DATA::Matrix{…}, WordWidth::Int64, LN0::Int64, Operation::String, TraceRuleLength::Int64, UsePseudoADD::Bool, KeepCycle::Bool, ϵ::Float64, LargestMCUSize::Int64) @ LELAPE .../LELAPE/src/functions/DataTreatCheck/DetectAnomalies_FullCheck_MassStorage.jl:360 [2] top-level scope @ REPL[13]:1 Some type information was truncated. Use `show(err)` to see complete types.
This points out to a mismatch between input and output variables. Vector{Integer} is not equivalent to Vector{UInt64}.
The text was updated successfully, but these errors were encountered:
Solving #9: code modified to avoid type mismatch in mass storage mode
e000783
Apparently fixed, but bugs can appear, so this issue is not closed yet.
Sorry, something went wrong.
fjfrancopelaez
No branches or pull requests
When running the example scripts a set where address bus is larger than 32 bits, the following error appears:
This points out to a mismatch between input and output variables. Vector{Integer} is not equivalent to Vector{UInt64}.
The text was updated successfully, but these errors were encountered: