Skip to content

Commit

Permalink
tweak the L3 multi case
Browse files Browse the repository at this point in the history
  • Loading branch information
wsong83 committed Sep 4, 2024
1 parent e73e4eb commit ac7528e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ $(PARALLEL_REGRESSION_TESTS_EXE): %:%.cpp $(UTIL_OBJS) $(CRYPTO_LIB) $(CACHE_HEA
$(CXX) $(CXXFLAGS_MULTI) $< $(UTIL_OBJS) $(CRYPTO_LIB) $(REGRESS_LD_FLAGS) -o $@

$(PARALLEL_REGRESSION_TESTS_RST): %.out: %
timeout 1m $< 2>$@
timeout 2m $< 2>$@

regression: $(REGRESSION_TESTS_RST) $(PARALLEL_REGRESSION_TESTS_RST)

Expand Down
2 changes: 1 addition & 1 deletion regression/multi-l3-msi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ int main(){
auto core_inst = get_l1_core_interface(l1i);

auto l2 = cache_gen_inc<L2IW, L2WN, Data64B, MetadataBroadcastBase, ReplaceLRU, MSIPolicy, policy_l2, false, void, true, true>(NCore, "l2");
auto l3 = cache_gen_inc<L3IW, L3WN, Data64B, MetadataBroadcastBase, ReplaceLRU, MSIPolicy, policy_l3, true, void, true, true>(1, "llc")[0];
auto l3 = cache_gen_inc<L3IW, L3WN, Data64B, MetadataBroadcastBase, ReplaceLRU, MSIPolicy, policy_l3, true, void, true, true>(1, "l3")[0];

auto mem = new SimpleMemoryModel<Data64B, void, true, true>("mem");
globalPrinter = new PrintPool(256);
Expand Down

0 comments on commit ac7528e

Please sign in to comment.