14 lines
273 B
C++
14 lines
273 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace onnx_mlir {
|
|
|
|
/// Returns the directory that should hold PIM artifacts/debug dumps for the
|
|
/// current compiler invocation.
|
|
std::string getOutputDir();
|
|
|
|
void createDirectory(const std::string& directory);
|
|
|
|
} // namespace onnx_mlir
|