mirror of
https://github.com/SikongJueluo/Mini-Nav.git
synced 2026-07-13 04:25:32 +08:00
- Make cam_read_noise a pass-through module, removing all noise injection logic - Switch write noise to use noise_mask_bernoulli instead of noise_mask_grouped - Add state machine to cam_write_noise for mask generation timing - Remove noise_mask_grouped.sv (no longer needed) - Remove read noise parameters from cam_noisy and cam_top - Update simulation and benchmark code to reflect read noise removal - Sync documentation to reflect Phase 2 architecture
17 lines
379 B
Makefile
17 lines
379 B
Makefile
SIM_ROOT := $(abspath ../..)
|
|
RTL_ROOT := $(abspath $(SIM_ROOT)/../rtl)
|
|
include $(SIM_ROOT)/mk/rtl-sources.mk
|
|
|
|
TOPLEVEL := cam_top
|
|
COCOTB_TEST_MODULES := benchmarks.retrieval.test_retrieval_benchmark
|
|
VERILOG_SOURCES := $(RTL_CAM_TOP)
|
|
|
|
TOPK_K ?= 5
|
|
NUM_ROWS ?= 4096
|
|
WRITE_NOISE_EN ?= 0
|
|
|
|
CAM_RETRIEVAL_DATASET ?=
|
|
export CAM_RETRIEVAL_DATASET
|
|
|
|
include $(SIM_ROOT)/mk/cocotb-common.mk
|