Files
Raptor/src/PIM/Compiler/CMakeLists.txt
T
NiccoloN 41de3cb150
Validate Operations / validate-operations (push) Has been cancelled
add memory coalescing pass
better reports
refactor for more code-reuse and patter usage
fixes
2026-05-12 18:17:00 +02:00

41 lines
702 B
CMake

add_pim_library(OMPimCompilerOptions
PimCompilerOptions.cpp
EXCLUDE_FROM_OM_LIBS
INCLUDE_DIRS PRIVATE
${PIM_COMPILER_INCLUDE_DIRS}
LINK_LIBS PUBLIC
OMCompilerOptions
ACCEL_INCLUDE_DIRS PRIVATE
${PIM_ACCEL_INCLUDE_DIRS}
)
add_pim_library(OMPimCompilerUtils
PimCompilerUtils.cpp
PimArtifactWriter.cpp
PimBatchEmission.cpp
PimCodeGen.cpp
PimWeightEmitter.cpp
EXCLUDE_FROM_OM_LIBS
INCLUDE_DIRS PRIVATE
${PIM_COMPILER_INCLUDE_DIRS}
LINK_LIBS PUBLIC
OMPimCompilerOptions
OMPimCommon
OMPimBufferization
OMPimStaticMemoryCoalescing
OMPimPasses
OMONNXToSpatial
OMSpatialToPim
OMCompilerPasses
ACCEL_INCLUDE_DIRS PRIVATE
${PIM_ACCEL_INCLUDE_DIRS}
)