Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooBatchCompute::RooBatchComputeInterface Class Referenceabstract

The interface which should be implemented to provide optimised computation functions for implementations of RooAbsReal::doEval().

The class RooBatchComputeInterface provides the mechanism for external modules (like RooFit) to call functions from the library. The power lies in the virtual functions that can resolve to different implementations for the functionality; for example, calling a function through dispatchCuda will resolve to efficient CUDA implementations.

This interface contains the signatures of the compute functions of every PDF that has an optimised implementation available. These are the functions that perform the actual computations in batches.

Several implementations of this interface may be provided, e.g. SSE, AVX, AVX2 etc. At run time, the fastest implementation of this interface is selected, and using a virtual call, the computation is dispatched to the best backend.

See also
RooBatchCompute::dispatch, RooBatchComputeClass, RF_ARCH

Definition at line 162 of file RooBatchCompute.h.

Public Member Functions

virtual ~RooBatchComputeInterface ()=default
 
virtual Architecture architecture () const =0
 
virtual std::string architectureName () const =0
 
virtual void compute (Config const &cfg, Computer, std::span< double > output, VarSpan, ArgSpan)=0
 
virtual std::unique_ptr< AbsBufferManagercreateBufferManager () const =0
 
virtual void cudaEventRecord (CudaInterface::CudaEvent *, CudaInterface::CudaStream *) const =0
 
virtual bool cudaStreamIsActive (CudaInterface::CudaStream *) const =0
 
virtual void cudaStreamWaitForEvent (CudaInterface::CudaStream *, CudaInterface::CudaEvent *) const =0
 
virtual void deleteCudaEvent (CudaInterface::CudaEvent *) const =0
 
virtual void deleteCudaStream (CudaInterface::CudaStream *) const =0
 
virtual CudaInterface::CudaEventnewCudaEvent (bool forTiming) const =0
 
virtual CudaInterface::CudaStreamnewCudaStream () const =0
 
virtual ReduceNLLOutput reduceNLL (Config const &cfg, std::span< const double > probas, std::span< const double > weights, std::span< const double > offsetProbas)=0
 
virtual double reduceSum (Config const &cfg, InputArr input, size_t n)=0
 

#include </home/sftnight/build/workspace/root-makedoc-master/rootspi/rdoc/src/master/roofit/batchcompute/res/RooBatchCompute.h>

Inheritance diagram for RooBatchCompute::RooBatchComputeInterface:
[legend]

Constructor & Destructor Documentation

◆ ~RooBatchComputeInterface()

virtual RooBatchCompute::RooBatchComputeInterface::~RooBatchComputeInterface ( )
virtualdefault

Member Function Documentation

◆ architecture()

virtual Architecture RooBatchCompute::RooBatchComputeInterface::architecture ( ) const
pure virtual

◆ architectureName()

virtual std::string RooBatchCompute::RooBatchComputeInterface::architectureName ( ) const
pure virtual

◆ compute()

virtual void RooBatchCompute::RooBatchComputeInterface::compute ( Config const &  cfg,
Computer  ,
std::span< double output,
VarSpan  ,
ArgSpan   
)
pure virtual

◆ createBufferManager()

virtual std::unique_ptr< AbsBufferManager > RooBatchCompute::RooBatchComputeInterface::createBufferManager ( ) const
pure virtual

◆ cudaEventRecord()

virtual void RooBatchCompute::RooBatchComputeInterface::cudaEventRecord ( CudaInterface::CudaEvent ,
CudaInterface::CudaStream  
) const
pure virtual

◆ cudaStreamIsActive()

virtual bool RooBatchCompute::RooBatchComputeInterface::cudaStreamIsActive ( CudaInterface::CudaStream ) const
pure virtual

◆ cudaStreamWaitForEvent()

virtual void RooBatchCompute::RooBatchComputeInterface::cudaStreamWaitForEvent ( CudaInterface::CudaStream ,
CudaInterface::CudaEvent  
) const
pure virtual

◆ deleteCudaEvent()

virtual void RooBatchCompute::RooBatchComputeInterface::deleteCudaEvent ( CudaInterface::CudaEvent ) const
pure virtual

◆ deleteCudaStream()

virtual void RooBatchCompute::RooBatchComputeInterface::deleteCudaStream ( CudaInterface::CudaStream ) const
pure virtual

◆ newCudaEvent()

virtual CudaInterface::CudaEvent * RooBatchCompute::RooBatchComputeInterface::newCudaEvent ( bool  forTiming) const
pure virtual

◆ newCudaStream()

virtual CudaInterface::CudaStream * RooBatchCompute::RooBatchComputeInterface::newCudaStream ( ) const
pure virtual

◆ reduceNLL()

virtual ReduceNLLOutput RooBatchCompute::RooBatchComputeInterface::reduceNLL ( Config const &  cfg,
std::span< const double probas,
std::span< const double weights,
std::span< const double offsetProbas 
)
pure virtual

◆ reduceSum()

virtual double RooBatchCompute::RooBatchComputeInterface::reduceSum ( Config const &  cfg,
InputArr  input,
size_t  n 
)
pure virtual

The documentation for this class was generated from the following file: