Skip to content

Commit 31684e4

Browse files
committed
Merge branch 'feat/moe-expert-profiling'
2 parents 3faea98 + 68d9f10 commit 31684e4

11 files changed

Lines changed: 1542 additions & 0 deletions

tools/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,5 @@ else()
3939
endif()
4040
add_subdirectory(fit-params)
4141
add_subdirectory(results)
42+
add_subdirectory(expert-profile)
4243
endif()
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
set(TARGET llama-expert-profile)
2+
add_executable(${TARGET} expert-profile.cpp)
3+
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
4+
target_compile_features(${TARGET} PRIVATE cxx_std_17)
5+
6+
if(LLAMA_TOOLS_INSTALL)
7+
install(TARGETS ${TARGET} RUNTIME)
8+
endif()

0 commit comments

Comments
 (0)