mirror of https://github.com/llvm/torch-mlir
NFC: Move CPA support down into it's own directory.
parent
e1839a0d6b
commit
b0604684ba
|
@ -14,5 +14,5 @@ add_mlir_conversion_library(NPCOMPBasicpyPasses
|
|||
LINK_LIBS PUBLIC
|
||||
MLIRIR
|
||||
MLIRPass
|
||||
NPCOMPTyping
|
||||
NPCOMPTypingCPA
|
||||
)
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#include "npcomp/Dialect/Basicpy/IR/BasicpyDialect.h"
|
||||
#include "npcomp/Dialect/Basicpy/IR/BasicpyOps.h"
|
||||
#include "npcomp/Dialect/Basicpy/Transforms/Passes.h"
|
||||
#include "npcomp/Typing/CPASupport.h"
|
||||
#include "npcomp/Typing/CPA/CPASupport.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
|
||||
#define DEBUG_TYPE "basicpy-type-inference"
|
||||
|
|
|
@ -1,7 +1 @@
|
|||
add_library(NPCOMPTyping
|
||||
CPASupport.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(NPCOMPTyping
|
||||
MLIRIR
|
||||
)
|
||||
add_subdirectory(CPA)
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
add_library(NPCOMPTypingCPA
|
||||
CPASupport.cpp
|
||||
)
|
||||
|
||||
target_link_libraries(NPCOMPTypingCPA
|
||||
MLIRIR
|
||||
)
|
|
@ -6,7 +6,7 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "npcomp/Typing/CPASupport.h"
|
||||
#include "npcomp/Typing/CPA/CPASupport.h"
|
||||
|
||||
#include "mlir/IR/Operation.h"
|
||||
|
Loading…
Reference in New Issue