Skip to content

Commit dd14fbe

Browse files
committed
Rename nv_large to nv_full, and deprecate nv_small.
Note that, from now on, nv_large refers to the *single-precision* int8-only configuration. nv_full refers to the full-precision configuration, for which configurable RTL does not currently exist.
1 parent 1ec604e commit dd14fbe

File tree

9 files changed

+545
-581
lines changed

9 files changed

+545
-581
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ DEFAULT_CPP := /home/utils/gcc-4.0.0/bin/cpp
1313
DEFAULT_GCC := /home/utils/gcc-4.0.0/bin/g++
1414
DEFAULT_PERL := /home/utils/perl-5.8.8/bin/perl
1515
DEFAULT_JAVA := /home/utils/java/jdk1.8.0_131/bin/java
16-
DEFAULT_PROJ := nv_large nv_small
16+
DEFAULT_PROJ := nv_full
1717

1818
$(TREE_MAKE): Makefile
1919
@echo "Creating tree.make to setup your working environment and projects"
File renamed without changes.

spec/defs/nv_small.spec

Lines changed: 0 additions & 36 deletions
This file was deleted.

tools/bin/run_sanity

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ croak "$tree_make_vm does not exists" unless -e $tree_make_vm;
1717

1818
system ("chmod +w $tot/tree.make") if $run;
1919
system ("cp $tree_make_vm $tot/tree.make") if $run;
20-
system ("$tot/tools/bin/tmake -project nv_large") if $run;
20+
system ("$tot/tools/bin/tmake -project nv_full") if $run;
2121

2222
my $log = "$tot/outdir/build.log";
2323
open(L, "<${log}") or die("ERROR: Can't read log file $log\n");

tools/make/tree.make.vm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## ================================================================
88
##
99
## set the chip you want to build
10-
PROJECTS := nv_large nv_small
10+
PROJECTS := nv_full
1111

1212
#=================
1313
# ENV TOOL setup

verif/dut/dut.f

Lines changed: 267 additions & 267 deletions
Large diffs are not rendered by default.

verif/dut/dut.vivado.f

Lines changed: 269 additions & 269 deletions
Large diffs are not rendered by default.

verif/sim/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@ TOPDIR := ${dir ${shell ${PWD}}}
121121
DUTDIR := ${TOPDIR}dut
122122
SIMDIR := ${TOPDIR}sim
123123
SYNTHTBDIR := ${TOPDIR}synth_tb
124-
VLIBDIR := ${TOPDIR}../outdir/nv_large/vmod/vlibs
125-
VMODINCDIR := ${TOPDIR}../outdir/nv_large/vmod/include
124+
VLIBDIR := ${TOPDIR}../outdir/nv_full/vmod/vlibs
125+
VMODINCDIR := ${TOPDIR}../outdir/nv_full/vmod/include
126126
ifeq (${DESIGNWARE_NOEXIST},1)
127-
DWDIR := ${TOPDIR}../outdir/nv_large/vmod/vlibs
127+
DWDIR := ${TOPDIR}../outdir/nv_full/vmod/vlibs
128128
DWFILES := ${DWDIR}/NV_DW02_tree.v \
129129
${DWDIR}/NV_DW_lsd.v \
130130
${DWDIR}/NV_DW_minmax.v

verif/sim_vivado/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ TOPDIR := ${dir ${shell ${PWD}}}
117117
DUTDIR := ${TOPDIR}dut
118118
SIMDIR := ${TOPDIR}sim_vivado
119119
SYNTHTBDIR := ${TOPDIR}synth_tb
120-
VLIBDIR := ${TOPDIR}../outdir/nv_large/vmod/vlibs
121-
VMODINCDIR := ${TOPDIR}../outdir/nv_large/vmod/include
120+
VLIBDIR := ${TOPDIR}../outdir/nv_full/vmod/vlibs
121+
VMODINCDIR := ${TOPDIR}../outdir/nv_full/vmod/include
122122
ifeq (${DESIGNWARE_NOEXIST},1)
123-
DWDIR := ${TOPDIR}../outdir/nv_large/vmod/vlibs
123+
DWDIR := ${TOPDIR}../outdir/nv_full/vmod/vlibs
124124
DWFILES := ${DWDIR}/NV_DW02_tree.v \
125125
${DWDIR}/NV_DW_lsd.v \
126126
${DWDIR}/NV_DW_minmax.v

0 commit comments

Comments
 (0)