Skip to content
Snippets Groups Projects
  1. Feb 21, 2021
    • Bentriou Mahmoud's avatar
      Fix of the segfault generated by the euclidean automaton test. · dd619a95
      Bentriou Mahmoud authored
      Julia shouldn't crash but rather raise an error about the existence
      of a function generated by metaprogramming. I didn't manage to isolate
      the segfault withtout the package.
      To overcome the issue, I add another level of multiple dispatch/abstract
      type for synchronized models.
      Test of the euclidean distance automaton works.
      dd619a95
  2. Feb 20, 2021
    • Bentriou Mahmoud's avatar
      The package becomes more meta to reach higher performance. · 5d886fc4
      Bentriou Mahmoud authored
      This commit groups the change operated to the creation of models and
      simulate function of a ContinuousTimeModel.
      The general idea is to create a concrete type and a simulate function
       per model creation by metaprogramming.
      - Now, ContinuousTimeModel is an abstract type. Each creation of a model
      defines a concrete type T <: ContinuousTimeModel by meta programming.
      - f! and isabsorbing ContinuousTimeModel fields are Symbols.
      - simulate(::ContinuousTimeModel) is run by multiple dispatch, according
      to the type of the model.
      
      Can't run the whole tests for now but unit/simulate_available_models.jl
      runs properly (i've updated the list of models in this commit), and I've
      manually checked in the repl that simulations run correctly (distributed
      / plots).
      5d886fc4
  3. Jan 27, 2021
    • Bentriou Mahmoud's avatar
      Creation of automata has been change again to improve performance. Now · 886e9d98
      Bentriou Mahmoud authored
      check_constraint and update_state functions are created inside
      create_automaton_*(), by the evaluation of meta_elementary_functions <:
      Expr. check_constraint and update_state don't depend on constants::Dict
      anymore: constants are interpolated inside the expression.
      
      Add of tests for euclidean distance automaton.
      Add a new function euclidean_distance that computes the euclidean
      distance of a Trajectory compared to observations along a discrete
      timeline.
      886e9d98
  4. Jan 25, 2021
    • Bentriou Mahmoud's avatar
      1) Detection of a bug when two synchronized models with two different · 00b622f3
      Bentriou Mahmoud authored
      automata and proba moels are differents. This bug was introduced after
      we change the structure of automata in order to better distributed
      programming.
      It leads to a restructuration of automata. In fine, the structure is
      more stable and consistent. It is possible it is more computationally
      efficient, but for now it is not well tested.
      
      2) Creation of functions that collects data along with a timeline
      over a trajectory + unit test vectorize.
      
      3) Very small fix in plots and abc smc.
      00b622f3
  5. Dec 10, 2020
  6. Dec 09, 2020
  7. Dec 07, 2020
  8. Dec 03, 2020
  9. Nov 30, 2020
    • Bentriou Mahmoud's avatar
      A major fix in simulation was done, side effect issue, an efficient · c095bee4
      Bentriou Mahmoud authored
      copyto! is implemented for LHA states.
      
      Automaton G works almost well, a bias in the distance is identified
      compared to Cosmos when one of the model parameters is zero.
      
      Implementation of volatile_simulate, which simulates SynchronizedModel
      without saving values: it only returns the last LHA state of the
      simulation.
      
      Implementation of distributed computations of variable automata with
      volatile_simulate.
      
      Tests passed.
      c095bee4
  10. Nov 27, 2020
  11. Nov 24, 2020
  12. Nov 23, 2020
    • Bentriou Mahmoud's avatar
      Change of Trajectory.values type from Matrix to Vector of Vector in · 5b7fc78f
      Bentriou Mahmoud authored
      order to replace vcat by push!.
      
      The benchmarks are at least equal, and better when the buffer size is
      small. However, no significative difference of performance with adequate
      buffer size.
      
      My opinion the gain can be seen when simulations are going to be very
      long with more complicated models than we have implemented for now.
      
      All tests passed.
      5b7fc78f
  13. Nov 21, 2020
  14. Nov 20, 2020
  15. Nov 19, 2020
  16. Nov 18, 2020
  17. Nov 17, 2020
  18. Nov 16, 2020
  19. Nov 15, 2020
    • Bentriou Mahmoud's avatar
      Fix of type instability in SIR model: · 384b4ad7
      Bentriou Mahmoud authored
      - Real => Float64 for better performance (Real is an abstract type)
      - Should not create a type inside the model because the compiler fails
      at estimating the type of the output of the f function (detected with
      @code_warntype)
      - Intentionaly ER is not as well improved as SIR in order to check the
      differences of performance.
      384b4ad7
    • Bentriou Mahmoud's avatar
      - Add of ER model + tests · 06dca928
      Bentriou Mahmoud authored
      - Add of benchmark scripts that compares perf wrt pygmalion.
      => As expected it is bad in terms of reading cost (because of row by row
      matrix read) but it is also not good in terms of simulation cost.
      hcat seems to perform badly, should investigate.
      06dca928
    • Bentriou Mahmoud's avatar
      Commit that implement the essentials for the lauch of a simulation of a · 2f7fea8f
      Bentriou Mahmoud authored
      SIR model.
      
      - Evolution of the ContinuousTimeModel type
      - simulate, easy access to Trajectory fields
      - fix of several errors
      2f7fea8f
  20. Nov 14, 2020
    • Bentriou Mahmoud's avatar
      First commit with. Details the organization of the code. · c5f43847
      Bentriou Mahmoud authored
      Two folders:
      - core/ which contains the essential files for the packages
      - tests/ which contains tests and benchmarks of other packages / methods
      
      For now on:
      - we wrote minimal tests in tests/ (a simulation of SIR model) that should run for
      a first minimal version of the package
      - we described in core/ the general structure of essential
      types, how they articulate each others and the minimum methods we should
      implement for a first version that runs the tests.
      c5f43847
Loading