CMakeLists.txt 323 B

12345678910111213
  1. #
  2. # gpt-neox
  3. set(TEST_TARGET gpt-neox)
  4. add_executable(${TEST_TARGET} main.cpp)
  5. target_link_libraries(${TEST_TARGET} PRIVATE ggml common common-ggml)
  6. #
  7. # gpt-neox-quantize
  8. set(TEST_TARGET gpt-neox-quantize)
  9. add_executable(${TEST_TARGET} quantize.cpp)
  10. target_link_libraries(${TEST_TARGET} PRIVATE ggml common common-ggml)