ATLAS Offline Software
Loading...
Searching...
No Matches
TaskArena.h
Go to the documentation of this file.
1// Dear emacs, this is -*- c++ -*-
2//
3// Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
4//
5#ifndef ATHCUDACORE_TASKARENA_H
6#define ATHCUDACORE_TASKARENA_H
7
8#include <functional>
9
10namespace AthCUDA {
11
19 void enqueueTask( std::function<void()> f );
20
21} // namespace AthCUDA
22
23
24#endif // ATHCUDACORE_TASKARENA_H
Definition Info.h:14
void enqueueTask(std::function< void()> f)
Enqueue a function to the TBB task arena used for CUDA calls.
Definition TaskArena.cxx:20