浏览代码

chore: ignore generated CUDA build outputs

master
Jan Svabenik 2 天前
父节点
当前提交
bbfec45fbb
共有 2 个文件被更改,包括 3 次插入1 次删除
  1. +1
    -1
      .gitignore
  2. +2
    -0
      tools/build-gpudemod-kernel.ps1

+ 1
- 1
.gitignore 查看文件

@@ -8,7 +8,7 @@
/bin/

# runtime data
data/events.jsonl
data/
config.autosave.yaml

# local prompts


+ 2
- 0
tools/build-gpudemod-kernel.ps1 查看文件

@@ -16,6 +16,8 @@ if (!(Test-Path $nvcc)) {
New-Item -ItemType Directory -Force -Path $OutDir | Out-Null
$outObj = Join-Path $OutDir 'kernels.obj'
$outLib = Join-Path $OutDir 'gpudemod_kernels.lib'
if (Test-Path $outObj) { Remove-Item $outObj -Force }
if (Test-Path $outLib) { Remove-Item $outLib -Force }

Write-Host "Using nvcc: $nvcc"
Write-Host "Building $Source -> $outObj"


正在加载...
取消
保存