-
Notifications
You must be signed in to change notification settings - Fork 9
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
Allow TapedFunction
as a special Instruction
#99
Comments
yebai
changed the title
Treat
Allow Dec 14, 2021
Tape
as a special InstructionTape
as a special Instruction
Closed
Fixed by #100. |
yebai
changed the title
Allow
Allow Jan 26, 2022
Tape
as a special InstructionTapedFunction
as a special Instruction
Do we still need this feature? |
We might still want to selectly convert some function calls into |
Probably not necessary after #138 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We currently treat all instructions on a tape as primitive. There are use-cases (see here) where we need to selectively trace into instructions. One neat way of achieving that is to have a special instruction type that allows us to plug a tape A into another tape B, where tape A is considered as a standard instruction on tape B. This way, we can create a dedicated tape for an instruction that we want to trace into, and use it on another (parent) tape.
The text was updated successfully, but these errors were encountered: