-
Notifications
You must be signed in to change notification settings - Fork 34
Fix Issues #196 and #197 #198
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
base: master
Are you sure you want to change the base?
Fix Issues #196 and #197 #198
Conversation
trsxvz
left a comment
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.
3 typos + 1 forgotten definition
| std::span<real>); | ||
| /*! | ||
| * \return the data associated with an integration point | ||
| * \param[in] o: offset associated wNith the integration point |
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.
typo "wNith"
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.
done
| }; | ||
|
|
||
| /*! | ||
| * \brief a srided coalescence view which acts as a tensorial function |
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.
typo "srided"
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.
done
| @@ -0,0 +1,111 @@ | |||
| /*! | |||
| * \file MGIS/Function/Tensors/CoalescedMemoryAccessCompositeTensorsView.ixx | |||
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.
bad \file name : forgot to add "Strided" at its beginning
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.
done
| const size_type) const | ||
| requires(LinearQuadratureSpaceConcept<Space>); | ||
| //! \return the underlying quadrature space | ||
| [[nodiscard]] constexpr const Space& getSpace() const noexcept; |
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.
declared but never defined. build passes because it is not tested yet, but implementing a test for it makes the build crash with error :
91 | [[nodiscard]] constexpr const Space& getSpace() const noexcept;
| ^~~~~~~~
[100%] Linking CXX executable StridedCoalescedMemoryAccessFunctionViewTest
/usr/bin/ld : CMakeFiles/StridedCoalescedMemoryAccessFunctionViewTest.dir/StridedCoalescedMemoryAccessFunctionViewTest.cxx.o : dans la fonction « StridedCoalescedMemoryAccessFunctionViewBaseTest::test2() » :
StridedCoalescedMemoryAccessFunctionViewTest.cxx:(.text._ZN48StridedCoalescedMemoryAccessFunctionViewBaseTest5test2Ev[_ZN48StridedCoalescedMemoryAccessFunctionViewBaseTest5test2Ev]+0x91) : référence indéfinie vers « mgis::function::StridedCoalescedMemoryAccessFunctionViewBase<mgis::function::BasicLinearSpace, 2ul,
true>::getSpace() const » ```
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.
done
No description provided.