Jacky Kwok
Jacky Kwok
Similar to the memory leak issue in federated execution, the reference counts for some PyObjects are not being appropriately managed. In the case for unfederated execution, when the reaction that...
**Error Message:** ```An exception occurred during diagram synthesis\ java.nio.file.InvalidPathException: Illegal character [:] in path at index 4: \\\c:\Users\jacky\Desktop\results\sample_efficiency\sample_efficiency\sample_efficiency.lf \ at java.base/sun.nio.fs.WindowsPathParser.nextSlash(WindowsPathParser.java:212) \ at java.base/sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:111) \ at java.base/sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:77) \ at java.base/sun.nio.fs.WindowsPath.parse(WindowsPath.java:92)...
Hi Sam, I was trying to reproduce the example: ``` import sys from concurrent.futures import ThreadPoolExecutor print(f"nogil={getattr(sys.flags, 'nogil', False)}") def fib(n): if n < 2: return 1 return fib(n-1) +...
**Issue** Reference: [#2778](https://github.com/skypilot-org/skypilot/issues/2778) When launching a TPU VM with `sky launch tpu_vm.yaml -c mycluster --cloud gcp --disk-size 200`, the resulting VM is still initialized with a disk size of 100...
This PR introduces a new target property `python-version` that allows users to explicitly specify the Python version to be used. Related Issues and PR: [Issue #2298](https://github.com/lf-lang/lingua-franca/issues/2298) [Issue #2299](https://github.com/lf-lang/lingua-franca/issues/2299) [PR #2292](https://github.com/lf-lang/lingua-franca/pull/2292)...