From 614613e7d485fc29c0b4b2ed6f4e710e0735c1c2 Mon Sep 17 00:00:00 2001 From: Tom Deakin Date: Fri, 14 Oct 2016 14:39:48 +0100 Subject: [PATCH] Add the dot routine to the abstract class --- Stream.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Stream.h b/Stream.h index 671289e..d595122 100644 --- a/Stream.h +++ b/Stream.h @@ -23,6 +23,7 @@ class Stream virtual void mul() = 0; virtual void add() = 0; virtual void triad() = 0; + virtual T dot() = 0; // Copy memory between host and device virtual void write_arrays(const std::vector& a, const std::vector& b, const std::vector& c) = 0;