Torch
Torch
If you haven't started yet, I'd like to get started with the caching system. Can I help you? Please link me to the other issue.
If I understand that correctly, we need a cache that contains the .o files of the respective scripts and the hash of the source code. So we can actually save...
How can I best test the demoteCompiledModuleToBytecode function? The following case will not happen. ` if ( module.isCompiledPythonModule() and module.getCompilationMode() == "bytecode" ): demoteCompiledModuleToBytecode(module)`
If we cache the bytecode, how are they going to reuse it?
I have succeeded in getting the bytecode cached, and loaded if it is already in the cache. What comes next? For info, I have manipulated the decideCompilationMode so that the...
Why is the key not the content of the module, but the names of the python files and folders in the same folder as the module? So the cached becomes...
I think I'll try to compile wheels again.