Skip to content
New issue

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

updated .gitignore #1

Merged
merged 1 commit into from
Mar 3, 2021
Merged

updated .gitignore #1

merged 1 commit into from
Mar 3, 2021

Conversation

alixdamman
Copy link
Collaborator

No description provided.

@alixdamman alixdamman requested a review from jmpplan March 3, 2021 13:57
Copy link
Collaborator

@jmpplan jmpplan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@@ -30,3 +30,6 @@
*.exe
*.out
*.app

# IDE
*.vscode
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good idea !

@jmpplan jmpplan merged commit 51a0e68 into main Mar 3, 2021
@alixdamman alixdamman deleted the dev branch March 3, 2021 15:19
jmpplan added a commit that referenced this pull request Oct 8, 2023
    - new vector KSIM_POSXK_REV[] containing the reverse of KSIM_POSXK[] to accelerate the process of retrieving
        the position of an equation in the model (for NEMESIS, reduces the SCC by a factor 300!)
    - KE_findpath(): assignation of KSIM_POSXK_REV[i] when KSIM_POSXK is modified

api/simulation/k_sim_main.c:
    - new vector KSIM_POSXK_REV containing the reverse position of the equations
    - new vector KSIM_CPUS containing the CPU time for each simulated period
    - K_simul():
        - initialize KSIM_POSXK_REV
        - alloc KSIM_NORMS, KSIM_NITERS and KSIM_CPUS
        - calc KSIM_POSXK_REV in the link loop
        - Fixed #330: in exchange endo-exo, if one of the vars does not exist, a message is
            provided and the function returns (and IODE does not crash anymore).
        - calc and store KSIM_CPUS[t] for each period

    - K_simul_free(): frees KSIM_POSXK_REV
    - K_simul_1():
        - initialize KSIM_CPUS[t]
        - added CPU in the iteration messages
    - K_simul(): fixed #1. In exchange endo-exo, if one of the vars does not exist, a message is
        provided (and IODE does not crash anymore).

api/k_sim_order.c:
    - new globals KSIM_CPU_SCC and KSIM_CPU_SORT
    - KE_order():
        - the message "sorting equations" is split in 2 steps:
        "Calculating SCC..." and "Reordering interdependent block...".
        The CPU is provided for each separated step and saved in KSIM_CPU_SORT and KSIM_CPU_SCC
    - KE_poseq():
        - use of KSIM_POSXK_REV containing the reverse position of the equations to (radically)
            accelerate the function
        - if posendo < 0 (ex in KE_ModelCalcSCC()), return(-1)
    - KE_tri(): save the elapsed time (not really CPU) in KSIM_CPU_SORT

api/k_sim_scc.c:
    - KE_ModelCalcSCC(): new variable KSIM_POSXK_REV to store reverse positions of endogenous variables
jmpplan added a commit that referenced this pull request Oct 12, 2023
    - new vector KSIM_POSXK_REV[] containing the reverse of KSIM_POSXK[] to accelerate the process of retrieving
        the position of an equation in the model (for NEMESIS, reduces the SCC by a factor 300!)
    - KE_findpath(): assignation of KSIM_POSXK_REV[i] when KSIM_POSXK is modified

api/simulation/k_sim_main.c:
    - new vector KSIM_POSXK_REV containing the reverse position of the equations
    - new vector KSIM_CPUS containing the CPU time for each simulated period
    - K_simul():
        - initialize KSIM_POSXK_REV
        - alloc KSIM_NORMS, KSIM_NITERS and KSIM_CPUS
        - calc KSIM_POSXK_REV in the link loop
        - Fixed #330: in exchange endo-exo, if one of the vars does not exist, a message is
            provided and the function returns (and IODE does not crash anymore).
        - calc and store KSIM_CPUS[t] for each period

    - K_simul_free(): frees KSIM_POSXK_REV
    - K_simul_1():
        - initialize KSIM_CPUS[t]
        - added CPU in the iteration messages
    - K_simul(): fixed #1. In exchange endo-exo, if one of the vars does not exist, a message is
        provided (and IODE does not crash anymore).

api/k_sim_order.c:
    - new globals KSIM_CPU_SCC and KSIM_CPU_SORT
    - KE_order():
        - the message "sorting equations" is split in 2 steps:
        "Calculating SCC..." and "Reordering interdependent block...".
        The CPU is provided for each separated step and saved in KSIM_CPU_SORT and KSIM_CPU_SCC
    - KE_poseq():
        - use of KSIM_POSXK_REV containing the reverse position of the equations to (radically)
            accelerate the function
        - if posendo < 0 (ex in KE_ModelCalcSCC()), return(-1)
    - KE_tri(): save the elapsed time (not really CPU) in KSIM_CPU_SORT

api/k_sim_scc.c:
    - KE_ModelCalcSCC(): new variable KSIM_POSXK_REV to store reverse positions of endogenous variables
jmpplan added a commit that referenced this pull request Oct 15, 2023
    - new vector KSIM_POSXK_REV[] containing the reverse of KSIM_POSXK[] to accelerate the process of retrieving
        the position of an equation in the model (for NEMESIS, reduces the SCC by a factor 300!)
    - KE_findpath(): assignation of KSIM_POSXK_REV[i] when KSIM_POSXK is modified

api/simulation/k_sim_main.c:
    - new vector KSIM_POSXK_REV containing the reverse position of the equations
    - new vector KSIM_CPUS containing the CPU time for each simulated period
    - K_simul():
        - initialize KSIM_POSXK_REV
        - alloc KSIM_NORMS, KSIM_NITERS and KSIM_CPUS
        - calc KSIM_POSXK_REV in the link loop
        - Fixed #330: in exchange endo-exo, if one of the vars does not exist, a message is
            provided and the function returns (and IODE does not crash anymore).
        - calc and store KSIM_CPUS[t] for each period

    - K_simul_free(): frees KSIM_POSXK_REV
    - K_simul_1():
        - initialize KSIM_CPUS[t]
        - added CPU in the iteration messages
    - K_simul(): fixed #1. In exchange endo-exo, if one of the vars does not exist, a message is
        provided (and IODE does not crash anymore).

api/k_sim_order.c:
    - new globals KSIM_CPU_SCC and KSIM_CPU_SORT
    - KE_order():
        - the message "sorting equations" is split in 2 steps:
        "Calculating SCC..." and "Reordering interdependent block...".
        The CPU is provided for each separated step and saved in KSIM_CPU_SORT and KSIM_CPU_SCC
    - KE_poseq():
        - use of KSIM_POSXK_REV containing the reverse position of the equations to (radically)
            accelerate the function
        - if posendo < 0 (ex in KE_ModelCalcSCC()), return(-1)
    - KE_tri(): save the elapsed time (not really CPU) in KSIM_CPU_SORT

api/k_sim_scc.c:
    - KE_ModelCalcSCC(): new variable KSIM_POSXK_REV to store reverse positions of endogenous variables
jmpplan added a commit that referenced this pull request Oct 17, 2023
    - new vector KSIM_POSXK_REV[] containing the reverse of KSIM_POSXK[] to accelerate the process of retrieving
        the position of an equation in the model (for NEMESIS, reduces the SCC by a factor 300!)
    - KE_findpath(): assignation of KSIM_POSXK_REV[i] when KSIM_POSXK is modified

api/simulation/k_sim_main.c:
    - new vector KSIM_POSXK_REV containing the reverse position of the equations
    - new vector KSIM_CPUS containing the CPU time for each simulated period
    - K_simul():
        - initialize KSIM_POSXK_REV
        - alloc KSIM_NORMS, KSIM_NITERS and KSIM_CPUS
        - calc KSIM_POSXK_REV in the link loop
        - Fixed #330: in exchange endo-exo, if one of the vars does not exist, a message is
            provided and the function returns (and IODE does not crash anymore).
        - calc and store KSIM_CPUS[t] for each period

    - K_simul_free(): frees KSIM_POSXK_REV
    - K_simul_1():
        - initialize KSIM_CPUS[t]
        - added CPU in the iteration messages
    - K_simul(): fixed #1. In exchange endo-exo, if one of the vars does not exist, a message is
        provided (and IODE does not crash anymore).

api/k_sim_order.c:
    - new globals KSIM_CPU_SCC and KSIM_CPU_SORT
    - KE_order():
        - the message "sorting equations" is split in 2 steps:
        "Calculating SCC..." and "Reordering interdependent block...".
        The CPU is provided for each separated step and saved in KSIM_CPU_SORT and KSIM_CPU_SCC
    - KE_poseq():
        - use of KSIM_POSXK_REV containing the reverse position of the equations to (radically)
            accelerate the function
        - if posendo < 0 (ex in KE_ModelCalcSCC()), return(-1)
    - KE_tri(): save the elapsed time (not really CPU) in KSIM_CPU_SORT

api/k_sim_scc.c:
    - KE_ModelCalcSCC(): new variable KSIM_POSXK_REV to store reverse positions of endogenous variables
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants