-
Notifications
You must be signed in to change notification settings - Fork 804
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
Fix issue with visualize #244
Conversation
Dropped this on top of my current checkout of 1.8.0, but I got:
I'll make sure I have all the files from |
From your
|
|
I checked that
|
jk looks great. (I completely shut down Xcode and relaunched it. I think it caches some/all of the lldb imports?) |
Ah, different versions for those two modules. Try stopping the debug session, running |
Fixes #215 and #177.
UIImagePNGRepresentation()
is apparently multithreaded. However, by default Chisel disables other threads from running when evaluating expressions. This change exposes a keyword argument,tryAllThreads
, which lets commands likevisualize
specify that certain expressions be evaluated with multithreading permitted.Note that calling
visualize
with anOptional
type will require unwrapping it. For example:cc @cbowns