-
Notifications
You must be signed in to change notification settings - Fork 17
Issue 990 assembly sources - Implement assembly sources #1128
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
Conversation
…function and I have too much uncommited work
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.
Minor comments
core/specfem/assembly/compute_source_array/dim3/impl/compute_source_array_from_tensor.cpp
Show resolved
Hide resolved
core/specfem/assembly/compute_source_array/dim3/impl/compute_source_array_from_tensor.hpp
Show resolved
Hide resolved
// EXTENT_IMPL_CHANGE | ||
template <typename T, int Rank> struct ExtentImpl { | ||
using type = typename ExtentImpl<T, Rank - 1>::type *; | ||
}; | ||
|
||
template <typename T> struct ExtentImpl<T, 0> { | ||
using type = T; | ||
}; |
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.
This needs to be in an impl namespace or a tpp file.
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.
Will try to use kokkos extents which should be supported from 4.7.00
Description
Issue Number
If there is an issue created for these changes, link it here
Checklist
Please make sure to check developer documentation on specfem docs.