variables.mk: Add target for tensor synthesizable unittest

This commit is contained in:
Hansung Kim
2024-10-14 19:45:44 -07:00
parent 3c4dc2ee94
commit 967e382332

View File

@@ -131,9 +131,20 @@ ifeq ($(SUB_PROJECT),coalescer)
SBT_PROJECT ?= chipyard SBT_PROJECT ?= chipyard
MODEL ?= TestHarness MODEL ?= TestHarness
VLOG_MODEL ?= $(MODEL) VLOG_MODEL ?= $(MODEL)
MODEL_PACKAGE ?= freechips.rocketchip.unittest MODEL_PACKAGE ?= chipyard.unittest
CONFIG ?= CoalescingUnitTestConfig CONFIG ?= CoalescingUnitTestConfig
CONFIG_PACKAGE ?= radiance.memory CONFIG_PACKAGE ?= radiance.unittest
GENERATOR_PACKAGE ?= chipyard
TB ?= TestDriver
TOP ?= UnitTestSuite
endif
ifeq ($(SUB_PROJECT),tensor)
SBT_PROJECT ?= chipyard
MODEL ?= TestHarness
VLOG_MODEL ?= $(MODEL)
MODEL_PACKAGE ?= chipyard.unittest
CONFIG ?= TensorUnitTestConfig
CONFIG_PACKAGE ?= radiance.unittest
GENERATOR_PACKAGE ?= chipyard GENERATOR_PACKAGE ?= chipyard
TB ?= TestDriver TB ?= TestDriver
TOP ?= UnitTestSuite TOP ?= UnitTestSuite