aboutsummaryrefslogtreecommitdiff
path: root/src/dynamic_fusion/sketch/gpu/IGpuKernelWriter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/dynamic_fusion/sketch/gpu/IGpuKernelWriter.h')
-rw-r--r--src/dynamic_fusion/sketch/gpu/IGpuKernelWriter.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dynamic_fusion/sketch/gpu/IGpuKernelWriter.h b/src/dynamic_fusion/sketch/gpu/IGpuKernelWriter.h
index 28e5432224..1d8b231efd 100644
--- a/src/dynamic_fusion/sketch/gpu/IGpuKernelWriter.h
+++ b/src/dynamic_fusion/sketch/gpu/IGpuKernelWriter.h
@@ -53,7 +53,10 @@ public:
/** Generate kernel code */
virtual std::string get_code() = 0;
/** Generate build options */
- virtual CLBuildOptions get_build_options() = 0;
+ virtual CLBuildOptions get_build_options()
+ {
+ return {};
+ }
/** Generate config id string of the entire kernel. This is used for tuning */
virtual std::string get_config_id() = 0;
/** Generate execution window */