Vitaly Shukela
Vitaly Shukela
Is `3.5.0`'s design compatible with reading wav from pipes (0xFFFFFFFF lengths everywhere)? Looks like no, as https://docs.rs/hound/latest/src/hound/read.rs.html#735 would eventually abort reading file even if initialisation succeeds. `num_samples` should be either...
Just do like other multimedia command-line tools do: use `0xFFFFFFFF` as chunk and data subchunk size initially, then patch it up to correct size on finalize if seeking is available...
> possible is to only require W: io::Write on WavWriter, but to add the constraint W: io::Seek to WavWriter::flush() and WavWriter::finalize() It is one of options. But `Drop` may be...
> `proc_macro_derive(Derivative, attributes(derivative))` Can't there be other, multiple attributes apart from `derivative`?
In [smart-default](https://crates.io/crates/smart-default) it's just `#[default]`.
It fails for me: ``` unning in CPU mode /root/torch-cl/install/bin/luajit: /root/torch-cl/install/share/lua/5.1/nn/LookupTable.lua:56: index out of range at /root/torch-cl/pkg/torch/lib/TH/generic/THTensorMath.c:156 stack traceback: [C]: in function 'index' /root/torch-cl/install/share/lua/5.1/nn/LookupTable.lua:56: in function 'updateOutput' /root/torch-cl/install/share/lua/5.1/nn/Sequential.lua:44: in function...
@troubledjoe , Try updated version from master: dgcrouse/torch-rnn@53caddd4fdf5f8374c8dd54deaabfcac46f7fbcd
Note: this probably conflicts with #74. I can prepare a merged pull request if needed.
Can it be done without ptracing that process or loading some special kernel module? This feature is likely to appear in syscall_limiter if libseccomp library supports it.
Yes, it is a limitation. As far as I understand, seccomp filter must be stateless and can't refer to any memory, so it's not possible to allow first `execve`, but...