Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sdptr
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
Container registry
Model registry
Operate
Environments
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LOFAR2.0
sdptr
Commits
f4284e9c
Commit
f4284e9c
authored
Oct 5, 2021
by
Pieter Donker
Browse files
Options
Downloads
Patches
Plain Diff
L2SDP-307
, removed C_N_sub_bf
parent
2b452acc
Branches
Branches containing commit
No related tags found
1 merge request
!29
L2SDP-307, working version.
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/constants.h
+0
-1
0 additions, 1 deletion
src/constants.h
src/fpga.cpp
+2
-2
2 additions, 2 deletions
src/fpga.cpp
with
2 additions
and
3 deletions
src/constants.h
+
0
−
1
View file @
f4284e9c
...
@@ -47,7 +47,6 @@
...
@@ -47,7 +47,6 @@
#define C_Q_fft 2
#define C_Q_fft 2
#define C_N_sub 512
#define C_N_sub 512
#define C_N_pol_bf 2
#define C_N_pol_bf 2
#define C_N_sub_bf 488
#define C_S_sub_bf 488
#define C_S_sub_bf 488
#define C_N_step 1
#define C_N_step 1
#define C_N_crosslets_max 7
#define C_N_crosslets_max 7
...
...
This diff is collapsed.
Click to expand it.
src/fpga.cpp
+
2
−
2
View file @
f4284e9c
...
@@ -156,8 +156,8 @@ Fpga::Fpga(list<class Node*>& nodelist, const int32_t n_beamsets):
...
@@ -156,8 +156,8 @@ Fpga::Fpga(list<class Node*>& nodelist, const int32_t n_beamsets):
pointMap
->
add_register
(
"FPGA_scrap_R"
,
"fpga/scrap"
,
nodes
.
size
(),
C_N_scrap
,
"RO"
,
REG_FORMAT_UINT32
);
pointMap
->
add_register
(
"FPGA_scrap_R"
,
"fpga/scrap"
,
nodes
.
size
(),
C_N_scrap
,
"RO"
,
REG_FORMAT_UINT32
);
pointMap
->
add_register
(
"FPGA_scrap_RW"
,
"fpga/scrap"
,
nodes
.
size
(),
C_N_scrap
,
"RW"
,
REG_FORMAT_UINT32
);
pointMap
->
add_register
(
"FPGA_scrap_RW"
,
"fpga/scrap"
,
nodes
.
size
(),
C_N_scrap
,
"RW"
,
REG_FORMAT_UINT32
);
pointMap
->
add_register
(
"FPGA_weights_R"
,
"fpga/weights"
,
nodes
.
size
(),
C_S_pn
*
nBeamsets
*
C_
N
_sub_bf
,
"RO"
,
REG_FORMAT_INT16
);
pointMap
->
add_register
(
"FPGA_weights_R"
,
"fpga/weights"
,
nodes
.
size
(),
C_S_pn
*
nBeamsets
*
C_
S
_sub_bf
,
"RO"
,
REG_FORMAT_INT16
);
pointMap
->
add_register
(
"FPGA_weights_RW"
,
"fpga/weights"
,
nodes
.
size
(),
C_S_pn
*
nBeamsets
*
C_
N
_sub_bf
,
"RW"
,
REG_FORMAT_INT16
);
pointMap
->
add_register
(
"FPGA_weights_RW"
,
"fpga/weights"
,
nodes
.
size
(),
C_S_pn
*
nBeamsets
*
C_
S
_sub_bf
,
"RW"
,
REG_FORMAT_INT16
);
pointMap
->
add_register
(
"FPGA_signal_input_data_buffer_R"
,
"fpga/signal_input_data_buffer"
,
nodes
.
size
(),
C_S_pn
*
C_V_si_db
,
"RO"
,
REG_FORMAT_INT16
);
pointMap
->
add_register
(
"FPGA_signal_input_data_buffer_R"
,
"fpga/signal_input_data_buffer"
,
nodes
.
size
(),
C_S_pn
*
C_V_si_db
,
"RO"
,
REG_FORMAT_INT16
);
pointMap
->
add_register
(
"FPGA_signal_input_histogram_R"
,
"fpga/signal_input_histogram"
,
nodes
.
size
(),
C_S_pn
*
C_V_si_histogram
,
"RO"
,
REG_FORMAT_UINT32
);
pointMap
->
add_register
(
"FPGA_signal_input_histogram_R"
,
"fpga/signal_input_histogram"
,
nodes
.
size
(),
C_S_pn
*
C_V_si_histogram
,
"RO"
,
REG_FORMAT_UINT32
);
...
...
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