Is rvx-core a single cycle processor? #66
Answered
by
rafaelcalcada
pointerliu
asked this question in
Q&A
-
|
Hi, I appreciate the elegance and minimalism of rvx. I haven't run a simulation on it yet, but I'm curious about its architecture. Is rvx-core a single-cycle processor? Specifically, does it fetch an instruction and compute the result to be written to the register file within a single cycle? Thanks! 😄 |
Beta Was this translation helpful? Give feedback.
Answered by
rafaelcalcada
Mar 23, 2025
Replies: 1 comment 4 replies
-
|
Hi @pointerliu, yes, RVX is a single-cycle, unpipelined processor core. It executes one instruction per cycle, with the exception of load/store instructions, which needs 2 cycles. |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
pointerliu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @pointerliu, yes, RVX is a single-cycle, unpipelined processor core. It executes one instruction per cycle, with the exception of load/store instructions, which needs 2 cycles.