# TestMovingCorrelation **Repository Path**: QAiCode/test-moving-correlation ## Basic Information - **Project Name**: TestMovingCorrelation - **Description**: test-moving - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2025-04-23 - **Last Updated**: 2025-09-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 安装GPU驱动和cuda toolkit等工具 参考:N卡官方驱动和 CUDA 安装.md # 安装gcc及cmake工具 # 安装qt相关开发工具(ubuntu系统) ``` sudo apt-get install qtbase5-dev qtbase5-dev-tools sudo apt-get install qttools5-dev-tools sudo apt-get install qtcreator sudo ln -s /usr/lib/x86_64-linux-gnu/qt5/bin/moc /usr/lib/qt5/bin/moc ``` # 计算能力 根据nvidia显卡的型号,修改CMakeList.txt中计算能力(当前CMakeList.txt会自动设置) 如 RTX4070 `set(CMAKE_CUDA_ARCHITECTURES "89")` # 编译 `./build.sh` # 运行 ``` cd build ./MovingCorrelation ```