bug fixed in nvcc path

This commit is contained in:
abnerhexu
2026-01-18 21:54:29 +08:00
parent 5fe43bcd7a
commit a5fed9c0b9
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
#compilers
CC=/usr/local/cuda-12.0/bin/nvcc
CC=/usr/local/cuda-13.0/bin/nvcc
NVCC_FLAGS = -O3 -ccbin /usr/local/gcc-12.2/bin -m64 -gencode arch=compute_80,code=sm_80
NVCC_FLAGS = -O3 -ccbin /usr/bin -m64 -gencode arch=compute_80,code=sm_80
# #ENVIRONMENT_PARAMETERS
# CUDA_INSTALL_PATH = /usr/local/cuda-12.0

View File

@@ -1,5 +1,4 @@
#include "dasp_spmv3.h"
#include "utils.h"
#define groupNum 1
#define warpNum_short 4

View File

@@ -2,6 +2,7 @@
#define DASP_SPMV3_H
#include "common.h"
#include "utils.h"
struct DASPSparseMatrix {
// === 1. Long Part ===