aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | support for sdxl-inpaint modelwangqyqq2023-12-214-1/+127
| | |/ / / / / / | |/| | | | | |
* | | | | | | | Merge pull request #14446 from AUTOMATIC1111/base-output-path-off-data_pathAUTOMATIC11112023-12-304-18/+25
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Base output path off data path
| * | | | | | | | webpath use truncate_pathw-e-w2023-12-271-8/+3
| | | | | | | | |
| * | | | | | | | base default image output on data_pathw-e-w2023-12-272-9/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-Authored-By: Alberto Cano <34340962+canoalberto@users.noreply.github.com>
| * | | | | | | | create utility truncate_pathw-e-w2023-12-271-1/+11
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | utli.truncate_path(target_path, base_path) return the target_path relative to base_path if target_path is a sub path of base_path else return the absolute path
* | | | | | | | Merge pull request #14452 from AUTOMATIC1111/save-info-of-init-imageAUTOMATIC11112023-12-301-1/+1
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | save info of init image
| * | | | | | | | save info of init imagew-e-w2023-12-281-1/+1
| |/ / / / / / /
* | | | | | | | Merge pull request #14464 from AUTOMATIC1111/more-lora-not-found-warningAUTOMATIC11112023-12-302-1/+9
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | More lora not found warning
| * | | | | | | | More lora not found warningw-e-w2023-12-302-1/+9
| |/ / / / / / /
* | | | | | | | fix bad values read from infotext for API, add commentAUTOMATIC11112023-12-301-2/+17
| | | | | | | |
* | | | | | | | img2img support for infotext APIAUTOMATIC11112023-12-301-1/+5
| | | | | | | |
* | | | | | | | add support for alwayson scripts for infotext APIAUTOMATIC11112023-12-301-19/+42
| | | | | | | |
* | | | | | | | make it so that if an option from infotext conflicts with an argument from ↵AUTOMATIC11112023-12-301-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | API, the latter overrides the former
* | | | | | | | add override_settings support for infotext APIAUTOMATIC11112023-12-302-22/+54
| | | | | | | |
* | | | | | | | aAUTOMATIC11112023-12-307-33/+83
|/ / / / / / /
* | | | | | | make task ids for API work without force_task_idAUTOMATIC11112023-12-171-6/+3
| | | | | | |
* | | | | | | Merge pull request #14330 from AUTOMATIC1111/fix-extras-caption-BLIPAUTOMATIC11112023-12-161-1/+1
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | fix extras caption BLIP
| * | | | | | | fix extras caption BLIPw-e-w2023-12-161-1/+1
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | #14328
* | | | | | | Merge pull request #14327 from AUTOMATIC1111/fp8-cond-cache-fixAUTOMATIC11112023-12-161-0/+2
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix FP8 non-reproducible problem
| * | | | | | | Let fp8-related settings to invalidate cond_cacheKohaku-Blueleaf2023-12-161-0/+2
|/ / / / / / /
* | | | | | | Merge pull request #14227 from kingljl/kingljl-patch-memory-leakAUTOMATIC11112023-12-161-7/+24
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Long running memory leak problem
| * \ \ \ \ \ \ Merge branch 'dev' into kingljl-patch-memory-leakfuchen.ljl2023-12-06115-1325/+3822
| |\ \ \ \ \ \ \ | | | |_|_|_|/ / | | |/| | | | |
| * | | | | | | Long distance memory overflow issuefuchen.ljl2023-12-061-7/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: The memory will slowly increase with the drawing until restarting. Observation: GC analysis shows that no occupation has occurred, so it is suspected to be a problem with the underlying allocator. Reason: Under Linux, glibc is used to allocate memory. glibc uses brk and mmap to allocate memory, and the memory allocated by brk cannot be released until the high-address memory is released. That is to say, if you apply for two pieces of memory A and B through brk, it is impossible to release A before B is released, and it is still occupied by the process. Check the suspected "memory leak" through TOP. So I replaced TCMalloc, but found that libtcmalloc_minimal could not find ptthread_Key_Create. After analysis, it was found that pthread was not entered during compilation.
| * | | | | | | Merge pull request #1 from kingljl/fix-dependency-address-patch-1fuchen.ljl2023-11-100-0/+0
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Update README.md
* | | | | | | | | rename pending tasks api endpoint to be more in line with othersAUTOMATIC11112023-12-161-1/+2
| | | | | | | | |
* | | | | | | | | Merge pull request #14314 from gayshub/masterAUTOMATIC11112023-12-164-4/+40
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Add allow specify the task id and get the location of task in the queue of pending task
| * | | | | | | | | fix the problem of ruff of githubgayshub2023-12-151-1/+0
| | | | | | | | | |
| * | | | | | | | | fix the problem of ruff of githubgayshub2023-12-151-1/+1
| | | | | | | | | |
| * | | | | | | | | fix the problem of ruff of githubgayshub2023-12-153-4/+4
| | | | | | | | | |
| * | | | | | | | | add allow specify the task id and get the location of task in the queue of ↵gayshub2023-12-154-4/+41
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | pending task
* | | | | | | | | move soft inpainting to a built-in extensionAUTOMATIC11112023-12-161-0/+0
| | | | | | | | |
* | | | | | | | | Use radio for FP8 mode selectionAUTOMATIC11112023-12-161-1/+1
| | | | | | | | |
* | | | | | | | | Merge pull request #14031 from AUTOMATIC1111/test-fp8AUTOMATIC11112023-12-1617-40/+160
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | A big improvement for dtype casting system with fp8 storage type and manual cast
| * \ \ \ \ \ \ \ \ Merge branch 'dev' into test-fp8AUTOMATIC11112023-12-163-5/+5
| |\ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | |
* | | | | | | | | | Merge pull request #14107 from AUTOMATIC1111/torch210AUTOMATIC11112023-12-163-6/+6
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Torch210
| * | | | | | | | | | torch 2.1.2AUTOMATIC11112023-12-162-4/+4
| | | | | | | | | | |
| * | | | | | | | | | Merge branch 'dev' into torch210AUTOMATIC11112023-12-1662-771/+2436
| |\ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | |
* | | | | | | | | | | Merge branch 'master' into devAUTOMATIC11112023-12-160-0/+0
|\ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|/ / / / / | |/| | | | | | | | |
| * | | | | | | | | | Merge branch 'release_candidate'AUTOMATIC11112023-12-16116-1329/+3830
| |\ \ \ \ \ \ \ \ \ \ | | |_|_|/ / / / / / / | |/| | | | | | | | |
| | * | | | | | | | | Merge pull request #14307 from ↵AUTOMATIC11112023-12-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | AUTOMATIC1111/default-Falst-js_live_preview_in_modal_lightbox default False js_live_preview_in_modal_lightbox
| | * | | | | | | | | Merge pull request #14237 from ReneKroon/devAUTOMATIC11112023-12-141-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #13354 : solve lora loading issue
| | * | | | | | | | | Merge pull request #14216 from wfjsw/state-dict-ref-comparisonAUTOMATIC11112023-12-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | change state dict comparison to ref compare
| | * | | | | | | | | Merge pull request #14230 from ↵AUTOMATIC11112023-12-142-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | AUTOMATIC1111/add-option-Live-preview-in-full-page-image-viewer add option: Live preview in full page image viewer
| | * | | | | | | | | Merge pull request #14229 from Nuullll/ipex-embeddingAUTOMATIC11112023-12-141-0/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [IPEX] Fix embedding and ControlNet
| | * | | | | | | | | Merge pull request #14266 from kaalibro/devAUTOMATIC11112023-12-141-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Re-add setting lost as part of e294e46
| | * | | | | | | | | Merge pull request #14276 from AUTOMATIC1111/fix-stylesAUTOMATIC11112023-12-141-24/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix styles
| | * | | | | | | | | Merge pull request #14270 from kaalibro/extra-options-elem-idAUTOMATIC11112023-12-141-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Assign id for "extra_options". Replace numeric field with slider.
| | * | | | | | | | | Merge pull request #14296 from akx/paste-resolutionAUTOMATIC11112023-12-141-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow pasting in WIDTHxHEIGHT strings into the width/height fields
| | * | | | | | | | | Merge pull request #14300 from AUTOMATIC1111/oft_fixesAUTOMATIC11112023-12-141-26/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix wrong implementation in network_oft
* | | | | | | | | | | Merge pull request #14307 from ↵AUTOMATIC11112023-12-161-1/+1
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | AUTOMATIC1111/default-Falst-js_live_preview_in_modal_lightbox default False js_live_preview_in_modal_lightbox