Skip to content

Commit 06691bb

Browse files
authored
cpu-o3: add kmhv2 intcvt fu (#608)
Change-Id: Id2311fc79e3f87e77e23290adb79dd36ad69e4fb
1 parent 1c2440d commit 06691bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

configs/common/FUScheduler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class KunminghuScheduler(Scheduler):
113113
IssuePort(fu=[IntBJU()], rp=[IntRD(4, 1), IntRD(5, 1)])
114114
]),
115115
IssueQue(name='intIQ2', inports=2, size=2*12, oports=[
116-
IssuePort(fu=[IntALU()], rp=[IntRD(4, 0), IntRD(5, 0)]),
116+
IssuePort(fu=[IntALU(), IntCvt()], rp=[IntRD(4, 0), IntRD(5, 0)]),
117117
IssuePort(fu=[IntBJU(), IntMisc()], rp=[IntRD(2, 1), IntRD(3, 1)])
118118
]),
119119
IssueQue(name='intIQ3', inports=2, size=2*12, oports=[
@@ -303,7 +303,7 @@ class IdealScheduler(Scheduler):
303303
IssuePort(fu=[IntBJU()])
304304
]),
305305
IssueQue(name='intIQ2', inports=2, size=2*24, oports=[
306-
IssuePort(fu=[IntALU()]),
306+
IssuePort(fu=[IntALU(), IntCvt()]),
307307
IssuePort(fu=[IntBJU(), IntMisc()])
308308
]),
309309
IssueQue(name='intIQ3', inports=2, size=2*24, oports=[

0 commit comments

Comments
 (0)