-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(WIP) Refactor row major matrix #624
base: master
Are you sure you want to change the base?
Conversation
This is a great effort! As some moment I am also curious what would be the impact if we remove MaybeUint feature and use raw vector as we only have one implementation. I just do a very quick tried on this branch against master branch on riscv_add benchmark with command on remote ceno benchmark machine, with command
and the result turns out to be ~+6% slower on e2e latency.
I believed with fibonacchi example it might be even much slower. So it's still nessesary to this feature for keeping high performance. |
If we just talked about capture this unssignment error, I think we can achieve it from different path: in unittest we support init vector into 2 different default value with same execution trance, and then compare 2 witnesses which should be identical. An unequality indicate there are some unassigment bug. And with that, we can capture the unassignment error in early stage. |
Thank you! This is still work in progress; I'm examining some ways to make it faster while keeping it clean/safe. My bench results are a bit better for some reason:
What regression % (evaluated at yours) would you consider acceptable? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking nice so far 👍
pub fn num_instances(&self) -> usize { | ||
self.values.len() / self.num_col - self.num_padding_rows | ||
pub fn len(&self) -> usize { | ||
self.values.len() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Confusing name. Maybe total_len
, num_cells
, …?
let start = Instant::now(); | ||
let padding_row = match self.padding_strategy { | ||
InstancePaddingStrategy::RepeatLast => { | ||
self.values[self.values.len() - self.num_col..].to_vec() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What if empty?
There was a special case if steps.is_empty()
somewhere:
InstancePaddingStrategy::RepeatLast if steps.is_empty() => {
tracing::debug!("No {} steps to repeat, using zero padding", Self::name());
vec![MaybeUninit::new(E::BaseField::ZERO); num_witin]
}
although that was not completely correct either; better than crashing.
No description provided.