Skip to content

Commit

Permalink
add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
jcosborn committed Jan 8, 2024
1 parent fd1393e commit 59bcd6e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions include/targets/generic/kernel_ops_target.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#pragma once
#include <kernel_ops.h>

namespace quda {

// KernelOps
template <typename ...T>
struct KernelOps : KernelOps_Base<T...> {
};

// op implementations
struct op_blockSync {
template <typename ...Arg>
static constexpr unsigned int shared_mem_size(dim3, const Arg &...) { return 0; }
};

template <typename T>
struct op_warp_combine {
template <typename ...Arg>
static constexpr unsigned int shared_mem_size(dim3, const Arg &...) { return 0; }
};

}

0 comments on commit 59bcd6e

Please sign in to comment.