File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -18,22 +18,6 @@ namespace kitgenbench {
1818 TDev device{};
1919 };
2020
21- template <typename TRecipe>
22- concept Recipe = requires (TRecipe recipe) {
23- { std::get<0 >(recipe.next ()) } -> std::same_as<decltype (Actions::STOP)>;
24- };
25-
26- template <typename TLogger, typename TFunctor>
27- concept Logger = requires (TLogger logger, TFunctor func) {
28- { (logger.call (func)) } -> std::same_as<decltype (func ())>;
29- };
30-
31- template <typename TChecker, typename TResult>
32- concept Checker = requires (TChecker checker, TResult result) {
33- std::get<0 >(checker.check (result)) == Actions::CHECK;
34- { std::get<1 >(checker.check (result)) } -> std::same_as<bool >;
35- };
36-
3721 struct BenchmarkKernel {
3822 template <typename TAcc>
3923 ALPAKA_FN_ACC auto operator ()(TAcc const & acc, auto * instructions) const -> void {
You can’t perform that action at this time.
0 commit comments