MatrixArray構造体を実装し、行列の生成と要素取得メソッドを追加#41
Closed
SanaeProject wants to merge 9 commits into
Closed
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds an initial Rust crate for matrix functionality alongside the existing C++ NeuralNetwork codebase, introducing a MatrixArray type and exposing it from the Rust library.
Changes:
- Added a Rust
MatrixArrayimplementation with size/data constructors and element access. - Added Rust crate metadata and lockfile.
- Added generated Cargo/rust-analyzer build artifacts under
rust/target.
Reviewed changes
Copilot reviewed 6 out of 7 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
rust/src/matrix_array.rs |
Adds the MatrixArray struct, constructors, and get accessors for row/column-major layouts. |
rust/src/lib.rs |
Exposes the new matrix module. |
rust/Cargo.toml |
Defines the new Rust package. |
rust/Cargo.lock |
Records the generated Cargo lock data. |
rust/target/CACHEDIR.TAG |
Adds generated Cargo cache metadata. |
rust/target/.rustc_info.json |
Adds generated rustc/toolchain metadata. |
rust/target/flycheck0/stdout |
Adds generated rust-analyzer flycheck output. |
rust/target/flycheck0/stderr |
Adds generated cargo stderr output. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.