QUDA  1.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
worker.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace quda {
4 
5  class Worker {
6 
7  public:
8  Worker() { }
9  virtual ~Worker() { }
10  virtual void apply(const cudaStream_t &stream) = 0;
11 
12  };
13 
14 };
virtual void apply(const cudaStream_t &stream)=0
cudaStream_t * stream
Worker()
Definition: worker.h:8
virtual ~Worker()
Definition: worker.h:9