diff options
author | Dave.Wen <dave.wen@sifive.com> | 2019-04-30 19:20:16 -0700 |
---|---|---|
committer | Dave.Wen <dave.wen@sifive.com> | 2019-04-30 19:20:16 -0700 |
commit | 99e1c9df7c6f7ab55c143593219ebb07698575b7 (patch) | |
tree | 13fdcf6fb433a62b5375246dbff142bf6eec4b78 /config.h.in | |
parent | 2e64dcd3cd50f1ca803911638a5ce201c71e069a (diff) | |
download | spike-99e1c9df7c6f7ab55c143593219ebb07698575b7.zip spike-99e1c9df7c6f7ab55c143593219ebb07698575b7.tar.gz spike-99e1c9df7c6f7ab55c143593219ebb07698575b7.tar.bz2 |
rvv: configurable vector architecture during configuration and
execution time
configuration: --with-vector ${VARCH_STR}
execution: --varch ${VARCH_STR}
VARCH_STR representation: v${VLEN in bits}:e${ELEN in bits}:s${SLEN in bits}
e.g.: v128:e32:s128
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 137f195..e82156d 100644 --- a/config.h.in +++ b/config.h.in @@ -6,6 +6,9 @@ /* Default value for --isa switch */ #undef DEFAULT_ISA +/* Default value for --vector switch */ +#undef DEFAULT_VARCH + /* Path to the device-tree-compiler */ #undef DTC |