vaibhav
vaibhav
Are you referring to rendering with different modes? If not, any links to refer to? BTW, I just started learning OpenGL and as a python developer, moderngl was my first...
Thanks for your reply. I think you can merge with changes for now. But can give some references or examples about what changes you are talking about? I am very...
Hey @geohot! Can you tell me what your concern was with this "NOTE" that you have written at [L37 in lazy.py](https://github.com/geohot/tinygrad/blob/2fd2fb6380ef41bfb36cd370f2437dae282813ae/tinygrad/lazy.py#L37)? To be exact, my question is, what problems could...
Hello again @geohot ! I would argue that the case that you have mentioned doesn't ever occur. **Explanation:** The _psrcs_ list contains only elements that have atmost one children, look...
:smiley: Yay! Though in the end the final change was 1 character, it took hundreds of lines of code trying to understand what actually happening behind the scenes as it...
Can you try putting your `hotkeys.service` in one of XDG_CONFIG_DIRS folders?(for me this is somewhere in /etc folder) Also don't forget to remove the previous service.
@certik Can you provide me with some feedback on this PR? Are there any things that could be improved? Thanks beforehand.
To support f-strings I have used re2c [conditions](https://re2c.org/manual/manual_c.html#start-conditions). This was the best solution I could come up with to support lexing and parsing of expression enclosed within the string. So,...
I think I have finally found an efficient/clean solution to handle lexing fstrings and parsing expressions within it. I noticed re2c conditions explode the code size of tokenizer.cpp from ~3000...
Now the following works: ```python a : i32 = 10 b : f64 = 15.5 c : str = "foobar" print(f"Trying some calculations : {a*2+3}, {b*3.14}, some strings {c*2}") ```...