Denys Zariaiev

Results 24 comments of Denys Zariaiev

What do you think about moving `cty` into a separate module within `libc` - let's say `libc::generic_cty`? Then whitelisted targets can implicitly reexport (or override some of them) types from...

Hi, thanks for trying out the tool! I'm afraid the message can indicate that older than the supported version of BuildKit / Docker is used. I can confirm that the...

Could you please share the command you use to start the build and `Cargo.toml` contents? I believe `cargo-wharf` is not being used for some reason. The message doesn't look like...

Not relevant right now, because there is no CLI story defined yet.

I wonder if the quick workaround works in your case: `docker build -f inner-crate-path/Cargo.toml .` In this case, the frontend will build only binary(-es) defined in a crate at `inner-crate-path`...

On the long run, I've been thinking about something similar to Cargo [`cfg(...)`](https://github.com/rust-lang/cargo/pull/2328). Eventually, it might be possible to specify base and "overridden" settings: ``` toml [package.metadata.wharf.builder] image = "rust"...

Hi, thanks for checking out the project! Could you please explain a little in details your use case and where is that path dependency? Technically, there is no such requirement...

Could you please tell more about your CUDA debugging experience? I'm curious because I never tried this before even with C++ CUDA.

I think it worth trying external `libm` implementation for math functions. `fpow` issue is kind of expected because there is [no `pow` PTX instruction](https://docs.nvidia.com/cuda/parallel-thread-execution/#floating-point-instructions). A little more details can be...

My plan is to finish [rust-crate-compile-test](https://github.com/denzp/rust-crate-compile-test) first and then we will be able to test `ptx-linker` more reliably. The linker is the core of Rust's CUDA stack and unfortunately, it...