diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-14 14:36:27 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-14 14:36:27 +0200 |
commit | 622a9452d228bb02a888cc074ebb6851fdefb343 (patch) | |
tree | fe687dd2d92c6437a7516aa8fce6b1af9e590d16 | |
parent | 408142542f09200bd3ce30bfe7872117c2f8f61e (diff) |
GEMV: provide virtual getKernel function
-rw-r--r-- | GEMV/include/dfatool_host.ah | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GEMV/include/dfatool_host.ah b/GEMV/include/dfatool_host.ah index bc2d512..ce3a35c 100644 --- a/GEMV/include/dfatool_host.ah +++ b/GEMV/include/dfatool_host.ah @@ -5,7 +5,7 @@ aspect DfatoolHostTiming : public DfatoolHostDPUTiming { - uint32_t kernel = 1; + virtual int getKernel() { return 1; } DfatoolHostTiming() { element_size = sizeof(T); |