Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
redesign-prototype
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nektar
redesign-prototype
Commits
be896d6e
Commit
be896d6e
authored
1 year ago
by
Pavol Margitfalvi
Browse files
Options
Downloads
Patches
Plain Diff
Fix non-virtual destructors in base classes
parent
ecce4ba6
No related branches found
Branches containing commit
No related tags found
5 merge requests
!22
Basic implementation of Matrix-free BwdTrans and padding feature in Field
,
!11
Implement CUDA BwdTrans sum-factorization kernels
,
!8
BwdTrans operator in CUDA
,
!3
First naive implementation
,
!2
Implements BwdTrans StdMat operator
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Operators/Operator.hpp
+1
-0
1 addition, 0 deletions
Operators/Operator.hpp
Operators/OperatorBwdTrans.hpp
+2
-0
2 additions, 0 deletions
Operators/OperatorBwdTrans.hpp
with
3 additions
and
0 deletions
Operators/Operator.hpp
+
1
−
0
View file @
be896d6e
...
...
@@ -31,6 +31,7 @@ template <typename TData> OperatorFactory<TData> &GetOperatorFactory();
template
<
typename
TData
>
class
Operator
{
public:
virtual
~
Operator
()
=
default
;
template
<
typename
TDescriptor
>
static
std
::
shared_ptr
<
typename
TDescriptor
::
class_name
>
create
(
std
::
string
pKey
=
""
)
...
...
This diff is collapsed.
Click to expand it.
Operators/OperatorBwdTrans.hpp
+
2
−
0
View file @
be896d6e
...
...
@@ -11,6 +11,8 @@ namespace Nektar::Operators
template
<
typename
TData
>
class
OperatorBwdTrans
:
public
Operator
<
TData
>
{
public:
virtual
~
OperatorBwdTrans
()
=
default
;
virtual
void
apply
(
Field
<
TData
,
FieldState
::
Coeff
>
&
in
,
Field
<
TData
,
FieldState
::
Phys
>
&
out
)
=
0
;
virtual
void
operator
()(
Field
<
TData
,
FieldState
::
Coeff
>
&
in
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment