Skip to content

Commit

Permalink
Rename nv_large to nv_full, and deprecate nv_small.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jwise committed Nov 21, 2017
1 parent 1ec604e commit dd14fbe
Show file tree
Hide file tree
Showing 9 changed files with 545 additions and 581 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ DEFAULT_CPP := /home/utils/gcc-4.0.0/bin/cpp
DEFAULT_GCC := /home/utils/gcc-4.0.0/bin/g++
DEFAULT_PERL := /home/utils/perl-5.8.8/bin/perl
DEFAULT_JAVA := /home/utils/java/jdk1.8.0_131/bin/java
DEFAULT_PROJ := nv_large nv_small
DEFAULT_PROJ := nv_full

$(TREE_MAKE): Makefile
@echo "Creating tree.make to setup your working environment and projects"
Expand Down
File renamed without changes.
36 changes: 0 additions & 36 deletions spec/defs/nv_small.spec

This file was deleted.

2 changes: 1 addition & 1 deletion tools/bin/run_sanity
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ croak "$tree_make_vm does not exists" unless -e $tree_make_vm;

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

my $log = "$tot/outdir/build.log";
open(L, "<${log}") or die("ERROR: Can't read log file $log\n");
Expand Down
2 changes: 1 addition & 1 deletion tools/make/tree.make.vm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
## ================================================================
##
## set the chip you want to build
PROJECTS := nv_large nv_small
PROJECTS := nv_full

#=================
# ENV TOOL setup
Expand Down
534 changes: 267 additions & 267 deletions verif/dut/dut.f

Large diffs are not rendered by default.

538 changes: 269 additions & 269 deletions verif/dut/dut.vivado.f

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions verif/sim/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,10 @@ TOPDIR := ${dir ${shell ${PWD}}}
DUTDIR := ${TOPDIR}dut
SIMDIR := ${TOPDIR}sim
SYNTHTBDIR := ${TOPDIR}synth_tb
VLIBDIR := ${TOPDIR}../outdir/nv_large/vmod/vlibs
VMODINCDIR := ${TOPDIR}../outdir/nv_large/vmod/include
VLIBDIR := ${TOPDIR}../outdir/nv_full/vmod/vlibs
VMODINCDIR := ${TOPDIR}../outdir/nv_full/vmod/include
ifeq (${DESIGNWARE_NOEXIST},1)
DWDIR := ${TOPDIR}../outdir/nv_large/vmod/vlibs
DWDIR := ${TOPDIR}../outdir/nv_full/vmod/vlibs
DWFILES := ${DWDIR}/NV_DW02_tree.v \
${DWDIR}/NV_DW_lsd.v \
${DWDIR}/NV_DW_minmax.v
Expand Down
6 changes: 3 additions & 3 deletions verif/sim_vivado/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ TOPDIR := ${dir ${shell ${PWD}}}
DUTDIR := ${TOPDIR}dut
SIMDIR := ${TOPDIR}sim_vivado
SYNTHTBDIR := ${TOPDIR}synth_tb
VLIBDIR := ${TOPDIR}../outdir/nv_large/vmod/vlibs
VMODINCDIR := ${TOPDIR}../outdir/nv_large/vmod/include
VLIBDIR := ${TOPDIR}../outdir/nv_full/vmod/vlibs
VMODINCDIR := ${TOPDIR}../outdir/nv_full/vmod/include
ifeq (${DESIGNWARE_NOEXIST},1)
DWDIR := ${TOPDIR}../outdir/nv_large/vmod/vlibs
DWDIR := ${TOPDIR}../outdir/nv_full/vmod/vlibs
DWFILES := ${DWDIR}/NV_DW02_tree.v \
${DWDIR}/NV_DW_lsd.v \
${DWDIR}/NV_DW_minmax.v
Expand Down

0 comments on commit dd14fbe

Please sign in to comment.