mirror of
https://github.com/ROCm/ROCm.git
synced 2026-04-05 03:01:17 -04:00
23 lines
276 B
C++
23 lines
276 B
C++
#ifndef _TRITON_SELECTION_TRANSFORM_DISASSOCIATE_H_
|
|
#define _TRITON_SELECTION_TRANSFORM_DISASSOCIATE_H_
|
|
|
|
|
|
namespace triton {
|
|
namespace ir {
|
|
class module;
|
|
}
|
|
|
|
namespace codegen{
|
|
namespace transform{
|
|
|
|
class disassociate {
|
|
public:
|
|
void run(ir::module &mod);
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|