Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
c261426
add `naked_functions_target_feature` unstable feature
folkertdev Mar 16, 2025
03ece26
update tests
ZuseZ4 Mar 17, 2025
b77590c
Use llvm_runtimes for compiler-rt
daltenty Mar 17, 2025
f5c37c3
[NFC] split up gen_body_helper
ZuseZ4 Mar 17, 2025
f9d0a14
resolve repeated attribute fixme
ZuseZ4 Mar 17, 2025
5f7ff88
[NFC] use outer_normal_attr helper
ZuseZ4 Mar 17, 2025
f4c2978
[NFC] extract autodiff call lowering in cg_llvm into own function
ZuseZ4 Mar 17, 2025
47c07ed
[NFC] simplify matching
ZuseZ4 Mar 17, 2025
81b2d55
addressing feedback, removing unused arg
ZuseZ4 Mar 18, 2025
a3669b8
updated compiler tests for rustc_intrinsic'
aaishwarymishra Mar 12, 2025
599dc82
Simplify `get_git_modified_files`
Kobzol Mar 16, 2025
2139a78
Fix bug in `get_git_modified_files`
Kobzol Mar 16, 2025
b24dc75
Respect `--src` bootstrap flag
Kobzol Mar 19, 2025
9b88fd0
Update GCC submodule
Kobzol Mar 19, 2025
7c085f7
add rustc_macro_edition_2021
jdonszelmann Mar 19, 2025
93d5ca8
Pin tests.
m-ou-se Mar 19, 2025
25896cc
Add cfg(not(bootstrap)) for new test.
m-ou-se Mar 19, 2025
20432c9
Use explicit cpu in some asm and codegen tests.
Mar 19, 2025
0577300
Address review comments.
m-ou-se Mar 19, 2025
ecea977
Update `compiler-builtins` to 0.1.152
tgross35 Mar 20, 2025
cafd238
tests: accept some noise from LLVM 21 in symbols-all-mangled
durin42 Mar 18, 2025
7e624c5
Rollup merge of #138364 - BLANKatGITHUB:compiler, r=RalfJung
matthiaskrgr Mar 21, 2025
aa3ec09
Rollup merge of #138570 - folkertdev:naked-function-target-feature-ga…
matthiaskrgr Mar 21, 2025
f7d9cc6
Rollup merge of #138623 - daltenty:daltenty/fix-compiler-rt, r=Kobzol
matthiaskrgr Mar 21, 2025
04b0e39
Rollup merge of #138627 - EnzymeAD:autodiff-cleanups, r=oli-obk
matthiaskrgr Mar 21, 2025
3c03c99
Rollup merge of #138669 - durin42:llvm-21-anon-func-unmangled, r=bjorn3
matthiaskrgr Mar 21, 2025
cacad7d
Rollup merge of #138706 - Kobzol:bootstrap-git-refactor-1, r=onur-ozkan
matthiaskrgr Mar 21, 2025
2a8b44c
Rollup merge of #138709 - Kobzol:update-gcc, r=GuillaumeGomez
matthiaskrgr Mar 21, 2025
11aee2e
Rollup merge of #138717 - jdonszelmann:pin-macro, r=WaffleLapkin
matthiaskrgr Mar 21, 2025
01f6d03
Rollup merge of #138721 - jchecahi:tests-explicit-cpus, r=tgross35
matthiaskrgr Mar 21, 2025
3ec7f85
Rollup merge of #138728 - tgross35:update-builtins, r=tgross35
matthiaskrgr Mar 21, 2025
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update tests
  • Loading branch information
ZuseZ4 committed Mar 17, 2025
commit 03ece26b79c8b04a916bcd6ee0ab26c8c20e7b66
2 changes: 1 addition & 1 deletion tests/pretty/autodiff_forward.pp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
pub fn f3(x: &[f64], y: f64) -> f64 {
::core::panicking::panic("not implemented")
}
#[rustc_autodiff(ForwardFirst, Dual, Const, Const,)]
#[rustc_autodiff(Forward, Dual, Const, Const,)]
#[inline(never)]
pub fn df3(x: &[f64], bx: &[f64], y: f64) -> f64 {
unsafe { asm!("NOP", options(pure, nomem)); };
Expand Down
2 changes: 1 addition & 1 deletion tests/pretty/autodiff_forward.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub fn f2(x: &[f64], y: f64) -> f64 {
unimplemented!()
}

#[autodiff(df3, ForwardFirst, Dual, Const, Const)]
#[autodiff(df3, Forward, Dual, Const, Const)]
pub fn f3(x: &[f64], y: f64) -> f64 {
unimplemented!()
}
Expand Down
2 changes: 1 addition & 1 deletion tests/pretty/autodiff_reverse.pp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
pub fn f3(x: &[f64], y: f64) -> f64 {
::core::panicking::panic("not implemented")
}
#[rustc_autodiff(ReverseFirst, Duplicated, Const, Active,)]
#[rustc_autodiff(Reverse, Duplicated, Const, Active,)]
#[inline(never)]
pub fn df3(x: &[f64], dx: &mut [f64], y: f64, dret: f64) -> f64 {
unsafe { asm!("NOP", options(pure, nomem)); };
Expand Down
2 changes: 1 addition & 1 deletion tests/pretty/autodiff_reverse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pub fn f1(x: &[f64], y: f64) -> f64 {
#[autodiff(df2, Reverse)]
pub fn f2() {}

#[autodiff(df3, ReverseFirst, Duplicated, Const, Active)]
#[autodiff(df3, Reverse, Duplicated, Const, Active)]
pub fn f3(x: &[f64], y: f64) -> f64 {
unimplemented!()
}
Expand Down