Results 640 comments of Vadim Kantorov

> 1. **Make TorchAudio easier to maintain to ensure long-term reliability.** We plan to eliminate all C++ code so that TorchAudio is a Python-only library. We also plan to reduce...

@scotts Also, might be interesting to promote some of stable signal processing functions / modules into PyTorch core (e.g. new `torch.signal` namespace akin to https://docs.scipy.org/doc/scipy/reference/signal.html)?

Another solution might be: - moving all python-only models/code to HuggingFace - moving mature functions/transforms to core pytorch - moving all other C++ extensions to use `torch.utils.cpp_extensions.load_inline` or `nvrtc` (via...

Would it be another alternative to somehow convince core to take in all the C++/CUDA ops from torchaudio? (like some CTC impl is already in core, and lfilter might be...

I think, this would expand the `fuse-archive`'s usecases, including listing, working with archives and supporting random-access seek without modifying existing user's scripts/code - also for the cases where FUSE kernel...

> Sorry, but I still don't understand. Could you please explain what you exactly mean by: fuse-archive provides a proper FUSE interface (requiring FUSE kernel module being loaded) for working...

Also, for some reason AVF has removed LD_PRELOAD support: https://sourceforge.net/p/avf/git/ci/8989ae447eaea0a700ae25e72898fddfec6e156a/ It's a known problem that very complete LD_PRELOAD-based impls are quite brittle (but impl of basic methods sufficient for simple...

Got it! It would be curious to see if fuse-archive can be used with ldpfuse on a machine without the fuse kernel module

> An "ordinary" user can use `fuse-archive` to mount an archive as a read-only filesystem. Just FYI, if I understood well, on Docker/k8s for now, one would still require CAP_SYS_ADMIN...

For now, I've used `typeperf.exe` to fetch throttling info: ```bat typeperf.exe -sc 1 "\Processor Information(_Total)\Processor Frequency" REM "(PDH-CSV 4.0)","\\DELL_DE_VADIM\Processor Information(_Total)\Processor Frequency" REM "08/09/2023 13:43:32.695","1358.000000" typeperf.exe -qx | findstr.exe Frequency ```...