ajuvercr
ajuvercr
This tries to enable generic syscalls in GPU abstractions, with a main focus on speed and transparency. First enable better printing than `@cuprintf`, later multiple options are possible, like reading/writing...
With this file, the library can be used with TypeScript.
When running this CUDA.jl code with Revise.jl ```julia using CUDA function recursive_sub(b::Int64) if b > 0 recursive_sub(b-1) end return end function reproduce_main() function recursive_kernel() recursive_sub(5) return end @cuda threads=5 recursive_kernel()...
Add parameters inside struct types to handle dynamic URL's betters, example: ```rust #[derive(Feign)] #[feign(headers = "Accept: {accept}")] struct Github { #[feign_path("owner")] user: &'static str, #[feign_path] repo: &'static str, #[param] accept:...
Hi, I was wondering how difficult it would be to enable templates like `#[get("https://api.github.com/repos/{self.path}")]`. This can be useful to not store URL's as const like the GITHUB example. My usecase...
Hey bennybroseph I've been looking at your cloth simulation with great interest, your code looks great but there are some things I don't fully understand. According to my knowledge of...
This crate looks super nice! But I have a question I'm trying to do this ``` #[derive(Parse, Debug)] struct Findable { #[prefix(kwd::findable)] #[paren] arg_paren: syn::token::Paren, #[prefix(kwd::ty in arg_paren)] #[prefix(syn::Token![=] in...
This PR fixes #2529. - [X] Commits in this PR are minimal and [have descriptive commit messages](https://chris.beams.io/posts/git-commit/).
### Search terms you've used - ParserOption - getSolidDatasetWithAcl ### Bug description It is currently not possible to add parser options when getting a solid dataset with acl. This is...
Hi, I wonder if it is possible to raise the limit that the parser has to correct input in multiple ways. I'm writing a parser for Turtle for a language...