Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
LinearRationalExpectations.jl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
DynareJulia
LinearRationalExpectations.jl
Commits
d30d0418
Commit
d30d0418
authored
3 years ago
by
MichelJuillard
Browse files
Options
Downloads
Patches
Plain Diff
modify FastLapackInterface API
parent
ad1cfae1
Branches
master
No related tags found
No related merge requests found
Pipeline
#6634
failed
3 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/backward_linear_rational_expectations.jl
+1
-3
1 addition, 3 deletions
src/backward_linear_rational_expectations.jl
src/linear_rational_expectations.jl
+1
-1
1 addition, 1 deletion
src/linear_rational_expectations.jl
with
2 additions
and
4 deletions
src/backward_linear_rational_expectations.jl
+
1
−
3
View file @
d30d0418
using
LinearAlgebra
using
FastLapackInterface
using
FastLapackInterface
.
LinSolveAlgo
using
FastLapackInterface
.
QrAlgo
using
PolynomialMatrixEquations
#using SolveEyePlusMinusAkronB: EyePlusAtKronBWs, generalized_sylvester_solver!
...
...
@@ -145,7 +143,7 @@ struct BackwardLinearRationalExpectationsWs
colsUE
=
backward_nbr
.+
findall
(
in
(
backward_indices
),
forward_indices
)
linsolve_static_ws
=
LinSolveWs
(
static_nbr
)
AGplusB
=
Matrix
{
Float64
}(
undef
,
endogenous_nbr
,
endogenous_nbr
)
AGplusB_linsolve_ws
=
LinSolveAlgo
.
LinSolveWs
(
endogenous_nbr
)
AGplusB_linsolve_ws
=
LinSolveWs
(
endogenous_nbr
)
# if m.serially_correlated_exogenous
# eye_plus_at_kron_b_ws = EyePlusAtKronBWs(ma, mb, mc, 1)
# else
...
...
This diff is collapsed.
Click to expand it.
src/linear_rational_expectations.jl
+
1
−
1
View file @
d30d0418
...
...
@@ -324,7 +324,7 @@ function make_lu_AGplusB!(AGplusB::AbstractMatrix{Float64},
mul!
(
ws
.
temp7
,
A
,
ws
.
temp3
)
vAG
=
view
(
AGplusB
,
:
,
ws
.
backward_indices
)
vAG
.+=
ws
.
temp7
LinSolveAlgo
.
lu!
(
AGplusB
,
ws
.
AGplusB_linsolve_ws
)
FastLapackInterface
.
lu!
(
AGplusB
,
ws
.
AGplusB_linsolve_ws
)
end
function
solve_for_derivatives_with_respect_to_shocks!
(
results
::
LinearRationalExpectationsResults
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment