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
18 changes: 9 additions & 9 deletions INSTALL.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SAGE-DB-Bench 安装指南
# CANDOR-Bench 安装指南

本指南提供了多种安装方式,适用于不同的使用场景。

Expand All @@ -24,8 +24,8 @@

```bash
# 1. 克隆仓库(不包含子模块)
git clone https://github.com/intellistream/SAGE-DB-Bench.git
cd SAGE-DB-Bench
git clone --recursive https://github.com/DataSysResearch/CANDOR-Bench.git
cd CANDOR-Bench

# 2. 安装Python依赖
pip install -r requirements.txt
Expand All @@ -49,8 +49,8 @@ python -m pytest tests/ -v

```bash
# 克隆主仓库
git clone https://github.com/intellistream/SAGE-DB-Bench.git
cd SAGE-DB-Bench
git clone --recursive https://github.com/DataSysResearch/CANDOR-Bench.git
cd CANDOR-Bench

# 初始化并更新所有子模块
git submodule update --init --recursive
Expand Down Expand Up @@ -194,8 +194,8 @@ conda install -c conda-forge faiss-cpu # 或 faiss-gpu
pip install gdown

# 克隆仓库
git clone --recursive https://github.com/intellistream/SAGE-DB-Bench.git
cd SAGE-DB-Bench
git clone --recursive https://github.com/DataSysResearch/CANDOR-Bench.git
cd CANDOR-Bench

# 编译其他算法
cd algorithms_impl
Expand Down Expand Up @@ -393,6 +393,6 @@ python run_experiments.py

## 🆘 获取帮助

- **Issues**: https://github.com/intellistream/SAGE-DB-Bench/issues
- **Discussions**: https://github.com/intellistream/SAGE-DB-Bench/discussions
- **Issues**: https://github.com/DataSysResearch/CANDOR-Bench/issues
- **Discussions**: https://github.com/DataSysResearch/CANDOR-Bench/discussions
- **Email**: [维护者邮箱]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This repository accompanies the following paper:

```bash
# Clone the repo (with submodules)
git clone --recursive https://github.com/intellistream/CANDOR-Bench.git
git clone --recursive https://github.com/DataSysResearch/CANDOR-Bench.git
cd CANDOR-Bench

# Run the deployment script
Expand Down
2 changes: 1 addition & 1 deletion README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

```bash
# 克隆仓库(包含 submodules)
git clone --recursive https://github.com/intellistream/CANDOR-Bench.git
git clone --recursive https://github.com/DataSysResearch/CANDOR-Bench.git
cd CANDOR-Bench

# 运行部署脚本
Expand Down
5 changes: 4 additions & 1 deletion algorithms_impl/DiskANN/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,10 @@ else()
elseif(EXISTS ${MKL_PATH}/libmkl_def.so)
set(MKL_DEF_SO ${MKL_PATH}/libmkl_def.so)
else()
message(FATAL_ERROR "Despite finding MKL, libmkl_def.so was not found in expected locations.")
# oneMKL 2026 no longer ships this internal dispatch library. The
# documented static link set below remains sufficient without it.
set(MKL_DEF_SO "")
message(STATUS "Optional libmkl_def was not found; using the standard oneMKL static link set.")
endif()
link_directories(${MKL_PATH})
include_directories(${MKL_INCLUDE_PATH})
Expand Down
4 changes: 2 additions & 2 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
# ============================================================================
# SAGE-DB-Bench 部署脚本
# CANDOR-Bench 部署脚本
# ============================================================================
#
# 本脚本会:
Expand Down Expand Up @@ -118,7 +118,7 @@ print_info "Python 版本: $(python3.10 --version)"
# ============================================================================
# 开始部署
# ============================================================================
print_banner "SAGE-DB-Bench 部署"
print_banner "CANDOR-Bench 部署"

SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$SCRIPT_DIR"
Expand Down
10 changes: 5 additions & 5 deletions install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# SAGE-DB-Bench 自动安装脚本
# CANDOR-Bench 自动安装脚本
# 用于快速在Linux/macOS上部署完整环境

set -e # 遇到错误立即退出
Expand Down Expand Up @@ -225,7 +225,7 @@ show_usage() {
cat << EOF

${GREEN}═══════════════════════════════════════════════════════════${NC}
${GREEN} SAGE-DB-Bench Installation Complete!${NC}
${GREEN} CANDOR-Bench Installation Complete!${NC}
${GREEN}═══════════════════════════════════════════════════════════${NC}

Next steps:
Expand All @@ -248,8 +248,8 @@ Documentation:
- algorithms_impl/README.md - Algorithm compilation

Need help?
- Issues: https://github.com/intellistream/SAGE-DB-Bench/issues
- Docs: https://github.com/intellistream/SAGE-DB-Bench
- Issues: https://github.com/DataSysResearch/CANDOR-Bench/issues
- Docs: https://github.com/DataSysResearch/CANDOR-Bench

${GREEN}═══════════════════════════════════════════════════════════${NC}

Expand All @@ -259,7 +259,7 @@ EOF
# 主函数
main() {
echo ""
log_info "SAGE-DB-Bench Installation Script"
log_info "CANDOR-Bench Installation Script"
echo ""

# 创建日志目录
Expand Down
Loading