소스 검색

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"


불러오는 중...
취소
저장