Skip to content
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

Refactor exec_jec #207

Merged
merged 4 commits into from
Feb 27, 2024
Merged

Conversation

uncomputable
Copy link
Collaborator

A small change that fits into no other PR.

@uncomputable
Copy link
Collaborator Author

Added another bugfix that fits nowhere else.

The lifetime of the error message was tied to the lifetime of the Value.
We have already generalized Arc<Transaction>
Add getters for members that we read.
Clarify that the unit of `len` is bits.
@uncomputable
Copy link
Collaborator Author

uncomputable commented Feb 20, 2024

Rebased on master. Creating the buffers inside the helper methods is much cleaner than passing mutable references. Added assertions that the active read / write frame are large enough. Resolved misunderstanding that jet source / target type is as wide as active read / write frame (actually the relation is type ≤ frame).

/// ## Panics
///
/// Active read frame has fewer bits than `bit_width`.
unsafe fn get_input_frame(
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In b561354:

Ok, awesome, this is looking much cleaner.

Should add a ## Safety section to the doc simply saying that it returns a CFrameItem which points into the returned Vec and that the Vec must outlive the CFrameItem.

Alternately we could create a new opaque type struct BackedCFrameItem which holds the Vec, implements Deref<CFrameItem>, and which would then ensure that you were obeying the lifetime rules. I think that if you did this, you could eliminate unsafe from this method.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, will do. I haven't been working much with unsafe, so these comments on how to write unsafe Rust (somewhat) safely are appreciated :)

/// ## Panics
///
/// Active write frame has fewer bits than `bit_width`.
fn update_active_write_frame(mac: &mut BitMachine, bit_width: usize, buffer: &[UWORD]) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In b561354:

Here you still need unsafe because the passed buffer might now be wide enough for your c_readBit calls. I think you can add another assert! that buffer.len() is the right length to avoid this unsafety.

Split the function into parts:

1. Write input to C read frame
2. Prepare output C write frame
3. Execute jet
4. Read output from C write frame

I also find it easier to keep separate input and output buffers.
Both buffers are allocated with their final capacity so the performance
should be the same.

Introduce active_{read, write}_bit_width methods to keep code better
readable.
Copy link
Collaborator

@apoelstra apoelstra left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ACK 44d20a9

@apoelstra apoelstra merged commit c7f1371 into BlockstreamResearch:master Feb 27, 2024
16 checks passed
@uncomputable uncomputable deleted the exec-jet branch February 28, 2024 08:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants