diff options
| author | Trevor Gross <t.gross35@gmail.com> | 2025-05-28 10:28:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-28 10:28:08 -0400 |
| commit | 7f5f29b663bd851bdedd32ca8024f89c5f984bc4 (patch) | |
| tree | 57dbbd641d3b60df4aacf88c3f230ea06e57adf9 /compiler/rustc_builtin_macros/messages.ftl | |
| parent | 5f17779a03746af581d8867449b1627404d8cd3f (diff) | |
| parent | c6c2fde737e5d6730cc7135afd841a0afed6096e (diff) | |
| download | rust-7f5f29b663bd851bdedd32ca8024f89c5f984bc4.tar.gz rust-7f5f29b663bd851bdedd32ca8024f89c5f984bc4.zip | |
Rollup merge of #140697 - Sa4dUs:split-autodiff, r=ZuseZ4
Split `autodiff` into `autodiff_forward` and `autodiff_reverse` This PR splits `#[autodiff]` macro so `#[autodiff(df, Reverse, args)]` would become `#[autodiff_reverse(df, args)]` and `#[autodiff(df, Forward, args)]` would become `#[autodiff_forwad(df, args)]`.
Diffstat (limited to 'compiler/rustc_builtin_macros/messages.ftl')
| -rw-r--r-- | compiler/rustc_builtin_macros/messages.ftl | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_builtin_macros/messages.ftl b/compiler/rustc_builtin_macros/messages.ftl index 628bdee1129..d32e6f1558e 100644 --- a/compiler/rustc_builtin_macros/messages.ftl +++ b/compiler/rustc_builtin_macros/messages.ftl @@ -56,7 +56,6 @@ builtin_macros_assert_requires_expression = macro requires an expression as an a builtin_macros_autodiff = autodiff must be applied to function builtin_macros_autodiff_missing_config = autodiff requires at least a name and mode -builtin_macros_autodiff_mode = unknown Mode: `{$mode}`. Use `Forward` or `Reverse` builtin_macros_autodiff_mode_activity = {$act} can not be used in {$mode} Mode builtin_macros_autodiff_not_build = this rustc version does not support autodiff builtin_macros_autodiff_number_activities = expected {$expected} activities, but found {$found} |
