Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libnux
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Apps
BrainScaleS
libnux
Commits
80b2606d
Commit
80b2606d
authored
5 years ago
by
Aron Leibfried
Browse files
Options
Downloads
Patches
Plain Diff
Add correct addressing for vector in/out for HX
Change-Id: Iea5c9d65ff51b12d8b6f24131dc132dda654baff
parent
e061e055
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libnux/dls_vx.h
+10
-6
10 additions, 6 deletions
libnux/dls_vx.h
with
10 additions
and
6 deletions
libnux/dls_vx.h
+
10
−
6
View file @
80b2606d
...
...
@@ -11,12 +11,16 @@ static uint32_t const dls_num_synapses = 32 * 32;
static
uint32_t
const
dls_num_synapse_vectors
=
32
*
32
/
16
;
/* Addressing for vector in/out */
static
uint32_t
const
dls_weight_base
=
0x0000
;
static
uint32_t
const
dls_decoder_base
=
0x4000
;
static
uint32_t
const
dls_causal_base
=
0x8000
;
static
uint32_t
const
dls_vreset_causal_base
=
0x9000
;
static
uint32_t
const
dls_acausal_base
=
0xc000
;
static
uint32_t
const
dls_vreset_acausal_base
=
0xd000
;
static
uint32_t
const
dls_weight_base
=
0x00000000
;
static
uint32_t
const
dls_decoder_base
=
0x00040000
;
static
uint32_t
const
dls_causal_base
=
0x00080000
;
static
uint32_t
const
dls_vreset_causal_base
=
0x00090000
;
static
uint32_t
const
dls_acausal_base
=
0x000c0000
;
static
uint32_t
const
dls_vreset_acausal_base
=
0x000d0000
;
static
uint32_t
const
dls_config_even_base
=
0x00010000
;
static
uint32_t
const
dls_config_odd_base
=
0x00020000
;
static
uint32_t
const
dls_raw_base
=
0x000f0000
;
static
uint32_t
const
dls_randgen_base
=
0x000e0000
;
/* Byte to be written to synapse for correlation reset */
static
uint8_t
const
dls_correlation_reset
=
0x3
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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