minor update

This commit is contained in:
Blaise Tine
2021-07-31 03:02:25 -07:00
parent 94ad34768b
commit ee46bc8a48
4 changed files with 28 additions and 32 deletions

View File

@@ -146,18 +146,12 @@
"wsched_warp_pc": "32"
},
"afu/vortex/cluster/core/pipeline/execute/gpu_unit": {
"?gpu_req_fire": 1,
"gpu_req_wid": "`NW_BITS",
"gpu_req_tmask": "`NUM_THREADS",
"gpu_req_op_type": "`GPU_BITS",
"gpu_req_rs1": "32",
"gpu_req_rs2": "32",
"?gpu_rsp_valid": 1,
"gpu_rsp_wid": "`NW_BITS",
"gpu_rsp_tmc": "`GPU_TMC_SIZE",
"gpu_rsp_wspawn": "`GPU_WSPAWN_SIZE",
"gpu_rsp_split": "`GPU_SPLIT_SIZE",
"gpu_rsp_barrier": "`GPU_BARRIER_SIZE"
"gpu_rsp_tmc": "`GPU_TMC_BITS",
"gpu_rsp_wspawn": "`GPU_WSPAWN_BITS",
"gpu_rsp_split": "`GPU_SPLIT_BITS",
"gpu_rsp_barrier": "`GPU_BARRIER_BITS"
},
"afu/vortex/cluster/core/pipeline/execute/lsu_unit": {
"?dcache_req_fire":"`NUM_THREADS",

View File

@@ -240,8 +240,8 @@ def expand_text(text, params):
iter = 0
while True:
if iter > 99:
raise Exception("Macro recursion!")
if iter > 65536:
raise Exception("Macro recursion!")
has_func = False
while True:
params_updated = False
@@ -257,7 +257,7 @@ def expand_text(text, params):
has_func = do_repl.has_func
if not (params_updated or do_repl.expanded):
break
text = new_text
text = new_text
changed = True
if not has_func:
break