Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/executor-memcuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
ninja && \

# 构建 CUDA 执行器
apt install -y libhiredis-dev && \
cd ../../mem-cuda && \
mkdir -p build && cd build && \
cmake -DCMAKE_BUILD_TYPE=Release \
Expand Down
3 changes: 1 addition & 2 deletions executor/mem-cuda/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ find_path(REDISPP_INCLUDE redis++/redis++.h)
find_library(HIREDIS_LIB hiredis)

add_subdirectory(src)
add_subdirectory(tools)
add_subdirectory(test)
# add_subdirectory(test)

message(STATUS "mem-cuda: CUDA toolkit at ${CUDAToolkit_ROOT}")
message(STATUS "mem-cuda: redis++ include: ${REDISPP_INCLUDE}, hiredis lib: ${HIREDIS_LIB}")
2 changes: 0 additions & 2 deletions executor/mem-cuda/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ cmake_minimum_required(VERSION 3.18)
# src/CMakeLists.txt - memcuda core (clean)

set(SRCS
registry/redis_client.cpp
registry/registry.cpp
ipc/ipc.cpp
allocator/cuda_pool.cpp
runtime/lifecycle.cpp
Expand Down
61 changes: 0 additions & 61 deletions executor/mem-cuda/src/registry/redis_client.cpp

This file was deleted.

29 changes: 0 additions & 29 deletions executor/mem-cuda/src/registry/redis_client.h

This file was deleted.

Loading