NWChemEx / NWChemEx/TensorWrapper
accumulate
Open
Nobody has claimed this yet.
good first issue
- Dominant language
- C++
- Stars
- 0
- Forks
- 0
- Avg merge
- 5h 33m
- Merged PRs (30d)
- 6
Description
Issue Description
Right now we support tensor operations like C("i,j") = A("i,j") + B("i,j");, but not operations like A("i,j") += B("i,j");. This issue is for adding support for operator+= and operator-=.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by locating the tensor expression and assignment entry points that handle C("i,j") = A("i,j") + B("i,j");. Trace how assignment currently combines tensor operands, then determine the relevant tests or add focused coverage for A("i,j") += B("i,j") and A("i,j") -= B("i,j"). Done means both compound operations are supported consistently with the existing operation.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- cpp
- Domain
- data
- Issue type
- Feature
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100