Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V0.3.0 #64

Merged
merged 88 commits into from
Apr 5, 2024
Merged

V0.3.0 #64

merged 88 commits into from
Apr 5, 2024

Conversation

FL03
Copy link
Owner

@FL03 FL03 commented Apr 5, 2024

No description provided.

Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: FL03 <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
FL03 added 16 commits March 31, 2024 16:03
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
Signed-off-by: Joe McCain III <jo3mccain@icloud.com>
@FL03 FL03 added enhancement New feature or request rust Improvements or additions that update the Rust code upgrade Alterations to the codebase macro Any additions or improvements to procedural macros tensor labels Apr 5, 2024
@FL03 FL03 added this to the v0.3.0 milestone Apr 5, 2024
@FL03 FL03 self-assigned this Apr 5, 2024
Copy link

codesandbox bot commented Apr 5, 2024

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

Signed-off-by: Joe McCain III <92560746+FL03@users.noreply.github.com>
@FL03 FL03 enabled auto-merge April 5, 2024 15:26
}
}

handle_block(&block, &var)

Check warning

Code scanning / clippy

this expression creates a reference which is immediately dereferenced by the compiler Warning

this expression creates a reference which is immediately dereferenced by the compiler
}
}

handle_block(&block, &var)

Check warning

Code scanning / clippy

this expression creates a reference which is immediately dereferenced by the compiler Warning

this expression creates a reference which is immediately dereferenced by the compiler

let grad = vars
.iter()
.map(|var| handle_block(&block, &var))

Check warning

Code scanning / clippy

this expression creates a reference which is immediately dereferenced by the compiler Warning

this expression creates a reference which is immediately dereferenced by the compiler

let grad = vars
.iter()
.map(|var| handle_block(&block, &var))

Check warning

Code scanning / clippy

this expression creates a reference which is immediately dereferenced by the compiler Warning

this expression creates a reference which is immediately dereferenced by the compiler
pub fn gradient(grad: &GradientAst) -> TokenStream {
let GradientAst { attrs, item } = grad;
let _attrs = attrs;
let item = item;

Check failure

Code scanning / clippy

redundant redefinition of a binding item Error

redundant redefinition of a binding item
let GradientAst { attrs, item } = grad;
let _attrs = attrs;
let item = item;
handle_item_fn(&item)

Check warning

Code scanning / clippy

this expression creates a reference which is immediately dereferenced by the compiler Warning

this expression creates a reference which is immediately dereferenced by the compiler

let grad = vars
.iter()
.map(|var| handle_block(&block, &var))

Check warning

Code scanning / clippy

this expression creates a reference which is immediately dereferenced by the compiler Warning

this expression creates a reference which is immediately dereferenced by the compiler

let grad = vars
.iter()
.map(|var| handle_block(&block, &var))

Check warning

Code scanning / clippy

this expression creates a reference which is immediately dereferenced by the compiler Warning

this expression creates a reference which is immediately dereferenced by the compiler
@FL03 FL03 disabled auto-merge April 5, 2024 15:28
@FL03 FL03 merged commit 5429a4e into main Apr 5, 2024
1 of 2 checks passed
@FL03 FL03 deleted the v0.3.0 branch April 5, 2024 15:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request macro Any additions or improvements to procedural macros rust Improvements or additions that update the Rust code upgrade Alterations to the codebase
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant