-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Added all missing xml docs for Tensors #106084
Conversation
Tagging subscribers to this area: @dotnet/area-system-numerics-tensors |
@gewarren could you review the language for these new docs? We will also need to review the language for the other APIs not being added in this PR, but I'll do another pass on those before I have you take a look. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for tagging me!
src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/Tensor.Factory.cs
Outdated
Show resolved
Hide resolved
src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/Tensor.cs
Outdated
Show resolved
Hide resolved
src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/Tensor.cs
Outdated
Show resolved
Hide resolved
src/libraries/System.Numerics.Tensors/src/System/Numerics/Tensors/netcore/TensorExtensions.cs
Outdated
Show resolved
Hide resolved
/// <param name="shape1">The first shape to broadcast.</param> | ||
/// <param name="shape2">The second shape to broadcast.</param> | ||
/// <returns>The smallest lengths these shapes can be broadcast to.</returns> | ||
/// <exception cref="ArgumentException"></exception> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// <exception cref="ArgumentException"></exception> | |
/// <exception cref="ArgumentException">The lengths of <paramref name="shape1" /> and <paramref name="shape2" /> are not broadcast compatible.</exception> |
src/libraries/System.Numerics.Tensors/src/System.Numerics.Tensors.csproj
Show resolved
Hide resolved
@michaelgsharp I resolved your merge conflicts from #106179 |
@gewarren all comments have been resolved. |
This PR adds as missing XML docs for all public APIs.
It also enables
UseCompilerGeneratedDocXmlFile
so that we can use these as the source of truth. We will need to review the XML that was already in the repo and not being modified by this PR. That will be done in a separate PR so this is not held by that.