diff --git a/configs/example/apu_se.py b/configs/example/apu_se.py index 1a649d3324..16e336573b 100644 --- a/configs/example/apu_se.py +++ b/configs/example/apu_se.py @@ -257,6 +257,12 @@ parser.add_argument( default=4, help="Number of coalescer tokens per CU", ) +parser.add_argument( + "--vrf_lm_bus_latency", + type=int, + default=1, + help="Latency while accessing shared memory", +) parser.add_argument( "--TLB-prefetch", type=int, help="prefetch depth for" "TLBs" ) @@ -442,6 +448,7 @@ for i in range(n_cu): localMemBarrier=args.LocalMemBarrier, countPages=args.countPages, max_cu_tokens=args.max_cu_tokens, + vrf_lm_bus_latency=args.vrf_lm_bus_latency, localDataStore=LdsState( banks=args.numLdsBanks, bankConflictPenalty=args.ldsBankConflictPenalty,