12 lines
229 B
C++
12 lines
229 B
C++
|
|
#ifndef AMDILUTILS_H_
|
||
|
|
#define AMDILUTILS_H_
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
namespace amdilUtils {
|
||
|
|
// Change all private uav length in a kernel
|
||
|
|
void changePrivateUAVLength(std::string& kernel, unsigned length);
|
||
|
|
|
||
|
|
}
|
||
|
|
#endif /* AMDILUTILS_H_ */
|