Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
c6640c0
Reference audio (WAV/MP3), CI build + test-generation
Feb 28, 2026
04d9ced
Merge pull request #1 from audiohacking/audio-reference
lmangani Feb 28, 2026
0d22a86
Add cover examples, harden test-generation cache, document examples
Feb 28, 2026
a637e59
VAE encoder fix, local test script, full-pipeline output path
Feb 28, 2026
9f23438
CI: run example scripts with short fixtures
Feb 28, 2026
14b108c
CI: upload generated WAVs as artifact for inspection
Feb 28, 2026
e6d1263
Merge upstream: refactor src/ + tools/, split dit.h
Feb 28, 2026
6e49bbd
LoRA: adapter loading + example + README
Feb 28, 2026
658ca30
Fix VAE encoder double free and enc_out buffer size in reference_audi…
Feb 28, 2026
907a068
LoRA: apply on fused layers, add custom_tag/genre, update example
Feb 28, 2026
acd8402
Fix formatting and clarify LoRA adapter instructions
lmangani Feb 28, 2026
9b087b2
Remove download instructions for LoRA adapter
lmangani Feb 28, 2026
fc2408a
Update comments for custom_tag and genre fields
lmangani Feb 28, 2026
5a1e7a3
Merge pull request #3 from audiohacking/lora-support
lmangani Feb 28, 2026
e860c79
Cover from file (src_audio), docs, README strength clarification
Feb 28, 2026
0899b63
Merge pull request #4 from ServeurpersoCom/master
lmangani Mar 1, 2026
d4d3e3b
Initial plan
Copilot Mar 1, 2026
f5ce6a8
Merge upstream: add use_flash_attn/--no-fa, ggml_get_rows embed, keep…
Copilot Mar 1, 2026
b237e8e
Resolve all 16 merge conflicts: add upstream features, preserve fork …
Copilot Mar 1, 2026
40d75d1
Merge pull request #6 from audiohacking/copilot/resolve-merge-conflicts
lmangani Mar 1, 2026
8ddc5d2
Delete _codeql_detected_source_root
lmangani Mar 1, 2026
85b1e29
Merge pull request #7 from ServeurpersoCom/master
lmangani Mar 2, 2026
03560af
Merge branch 'ServeurpersoCom:master' into master
lmangani Mar 2, 2026
71695c5
Initial plan
Copilot Mar 7, 2026
bbe369f
Reset master to upstream (ServeurpersoCom/acestep.cpp@aeff0b8)
Copilot Mar 7, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ add_compile_definitions(GGML_MAX_NAME=128)
# CUDA architectures: cover Turing to Blackwell for distributed binaries.
# Users can override with -DCMAKE_CUDA_ARCHITECTURES=native for local builds.
if(NOT DEFINED CMAKE_CUDA_ARCHITECTURES)
set(CMAKE_CUDA_ARCHITECTURES "75-virtual;80-virtual;86-real;89-real;120a-real;121a-real")
find_package(CUDAToolkit QUIET)
if(CUDAToolkit_FOUND AND CUDAToolkit_VERSION VERSION_GREATER_EQUAL "12.8")
set(CMAKE_CUDA_ARCHITECTURES "75-virtual;80-virtual;86-real;89-real;120a-real;121a-real")
else()
set(CMAKE_CUDA_ARCHITECTURES "75-virtual;80-virtual;86-real;89-real")
endif()
endif()

# ggml as subdirectory, inherits GGML_CUDA, GGML_METAL, etc. from cmake flags
Expand Down Expand Up @@ -70,3 +75,7 @@ link_ggml_backends(ace-qwen3)
# quantize: GGUF requantizer (BF16 -> K-quants)
add_executable(quantize tools/quantize.cpp)
link_ggml_backends(quantize)

# neural-codec: Oobleck VAE neural audio codec (encode/decode WAV <-> latent)
add_executable(neural-codec tools/neural-codec.cpp)
link_ggml_backends(neural-codec)
Loading