ATLAS Offline Software
Loading...
Searching...
No Matches
HIPFunctions.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 ATHEXHIP_HIPFUNCTIONS_H
6#define ATHEXHIP_HIPFUNCTIONS_H
7
8// System include(s).
9#include <iosfwd>
10#include <vector>
11
12namespace AthHIPExamples {
13
15 void printHipDeviceInfo( int deviceId, std::ostream& out );
16
18 void linearTransform( int deviceId, std::vector< float >& data,
19 float a, float b );
20
21} // namespace AthHIPExamples
22
23#endif // ATHEXHIP_HIPFUNCTIONS_H
char data[hepevt_bytes_allocation_ATLAS]
Definition HepEvt.cxx:11
void printHipDeviceInfo(int deviceId, std::ostream &out)
Return information about the selected device.
void linearTransform(int deviceId, std::vector< float > &data, float a, float b)
Perform a linear transformation on an array.