Jan
Jan
additional idea: a full timeline where x is the tickrate of the demo in lenear increments and it highlits all your actions...
> [...] I don't think we support onnxruntime? Where did you see that? 🤔 via torch dynamo mentioned here: https://github.com/huggingface/accelerate/blob/68b3dbf666155a67925b9243c94f71c81fd557f4/src/accelerate/utils/dataclasses.py#L366
I would love to know the progress on this. From the linked issue it looks like there has been some progress. A python `try:` can't catch these panics so crashes...
Will this be a weeks, months or years timeline? If it's unlikely to be done this year, I will have to look for a different solution for my project. By...
I tried my implementation with v0.10.0 but still got into a panic. I will try to run the debugger a bit more and see how the new changes of ErrorHandler...
I have taken a look at the examples and simply took the [default Shadertoy shader](https://www.shadertoy.com/new) and made an intentional typo in line 10, writing `coll` instead of `col` ```diff //...
the whole use case for me is as part of an evaluation benchmark for code generation language models. One idea I am following is to run the generated code and...
> You could check the repo to see if there is an issue that already tracks this, and create one if not. (If you know a bit of Rust you...
for now I am using a janky solution that works to convince my supervisors. ```py with tempfile.NamedTemporaryFile(suffix=".frag", mode="w") as f: f.write(frag_shader_code) f.flush() try: subprocess.run(["naga", f.name], check=True, capture_output=True) except subprocess.CalledProcessError as...
not to revive this issue. But I have run into at least one more shader that panics in a similar way. And this one validates with `naga` just fine(the frag_shader_code.frag...