Add solve() docs examples#1179
Conversation
|
/build |
Greptile SummaryThis PR adds Sphinx documentation examples for the
Confidence Score: 5/5Safe to merge — purely additive documentation change with no logic modifications. All six literalinclude markers are correctly placed and named, the RST relative path resolves to the right file, and no test logic was altered. The only observation is that the batched examples (4 and 5) surface identical one-liners in the rendered docs, leaving readers without shape context. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
RST["solve.rst\n(6x literalinclude)"]
CU["SolveDense.cu\nexample-begin/end markers"]
RST -->|"example-begin solve-test-1"| T1["Dense vector RHS\n(X = solve(A, B)).run(exec)"]
RST -->|"example-begin solve-test-2"| T2["Dense matrix RHS\n(X = solve(A, B)).run(exec)"]
RST -->|"example-begin solve-test-3"| T3["In expression\n(X = solve(A, B) * C).run(exec)"]
RST -->|"example-begin solve-test-4"| T4["Batched vector RHS\n(X = solve(A, B)).run(exec)"]
RST -->|"example-begin solve-test-5"| T5["Batched matrix RHS\n(X = solve(A, B)).run(exec)"]
RST -->|"example-begin solve-test-6"| T6["In-place RHS\n(B = solve(A, B)).run(exec)"]
T1 & T2 & T3 & T4 & T5 & T6 --> CU
Reviews (1): Last reviewed commit: "Add solve docs examples" | Re-trigger Greptile |
No description provided.