-
Notifications
You must be signed in to change notification settings - Fork 3
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
elasticity 3D #221
elasticity 3D #221
Conversation
add supporting operators needed for Real4
- Works for CPU, multi-CPU, GPU, multi-GPU
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #221 +/- ##
==========================================
+ Coverage 74.88% 75.21% +0.32%
==========================================
Files 64 64
Lines 10018 10230 +212
Branches 1200 1215 +15
==========================================
+ Hits 7502 7694 +192
- Misses 2157 2158 +1
- Partials 359 378 +19 ☔ View full report in Codecov by Sentry. |
femutils/BSRFormat.h
Outdated
Int32 m_nb_non_zero_value; | ||
Int32 m_nb_col; | ||
Int32 m_nb_row; | ||
Int8 m_nb_block; |
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.
These fields may be initialized to prevent errors if if we use the some methods of the class but initialize()
has not yet been called.
Int32 m_nb_non_zero_value = 0;
Int32 m_nb_col = 0;
Int32 m_nb_row = 0;
Int8 m_nb_block = 1;
femutils/BSRFormat.h
Outdated
@@ -365,6 +366,7 @@ class BSRFormat : public TraceAccessor | |||
/*---------------------------------------------------------------------------*/ | |||
|
|||
private: | |||
Int8 m_nb_dof; |
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.
Init with value 1
.
No description provided.