Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
schaapcommon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ResearchAndDevelopment
schaapcommon
Merge requests
!168
Draft: Add working cache code for fftw
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Add working cache code for fftw
add_fftw_cache
into
master
Overview
4
Commits
7
Pipelines
7
Changes
3
4 unresolved threads
Hide all comments
Open
Mattia Mancini
requested to merge
add_fftw_cache
into
master
3 weeks ago
Overview
4
Commits
7
Pipelines
7
Changes
1
4 unresolved threads
Hide all comments
Expand
0
0
Merge request reports
Compare
version 1
version 5
7f7201e6
2 weeks ago
version 4
05ec9e33
2 weeks ago
version 3
5dec4cf6
3 weeks ago
version 2
20502bc7
3 weeks ago
version 1
7478b6c0
3 weeks ago
master (HEAD)
and
version 2
latest version
b85afc80
7 commits,
2 weeks ago
version 5
7f7201e6
6 commits,
2 weeks ago
version 4
05ec9e33
5 commits,
2 weeks ago
version 3
5dec4cf6
4 commits,
3 weeks ago
version 2
20502bc7
2 commits,
3 weeks ago
version 1
7478b6c0
1 commit,
3 weeks ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/math/convolution.cc
+
1
−
1
Options
@@ -139,7 +139,7 @@ FTTWPlannerCache* GetFFTWCache() {
namespace
schaapcommon
::
math
{
void
CleanWisdom
()
{
fftwf_cleanup
();
};
void
MakeFftwfPlannerThreadSafe
()
{
/*
fftwf_make_planner_thread_safe();
*/
}
void
MakeFftwfPlannerThreadSafe
()
{
fftwf_make_planner_thread_safe
();
}
void
PlanMultiFFTW
(
std
::
vector
<
size_t
>
height
,
std
::
vector
<
size_t
>
width
)
{
GetFFTWCache
()
->
PlanMulti
<
FFTWType
::
C2C_FORWARD
>
(
height
);
Loading