host random buffer fillers

This commit is contained in:
2026-04-14 21:20:49 -04:00
parent b0121a2f83
commit 361ee4c6da
42 changed files with 540 additions and 57 deletions

View File

@ -17,7 +17,7 @@ builddir = "./build_linux64"
doinstall = True #copies the build_output to the install dir when finished
cc = "nvcc" #compiler
cflags = "-dc --compiler-options '-fPIC -O3'"
libraries = "-l{}".format(libname)
libraries = "-l{} -lpthread".format(libname)
libdirs = "-L{} -L{}/lib -L{}/lib".format(builddir,commondir,depdir)
linkerflags = " -Xlinker=-rpath,."
srcexts = [".c",".cpp",".cu"]