Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
e2a8745a
Commit
e2a8745a
authored
Mar 04, 2024
by
AUTOMATIC1111
Committed by
GitHub
Mar 04, 2024
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #15084 from clayne/1709395892-upscale-logging-reduce
upscaler_utils: Reduce logging
parents
45b8a499
3c0177a2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
modules/upscaler_utils.py
modules/upscaler_utils.py
+0
-2
No files found.
modules/upscaler_utils.py
View file @
e2a8745a
...
...
@@ -69,10 +69,8 @@ def upscale_with_model(
for
y
,
h
,
row
in
grid
.
tiles
:
newrow
=
[]
for
x
,
w
,
tile
in
row
:
logger
.
debug
(
"Tile (
%
d,
%
d)
%
s..."
,
x
,
y
,
tile
)
output
=
upscale_pil_patch
(
model
,
tile
)
scale_factor
=
output
.
width
//
tile
.
width
logger
.
debug
(
"=>
%
s (scale factor
%
s)"
,
output
,
scale_factor
)
newrow
.
append
([
x
*
scale_factor
,
w
*
scale_factor
,
output
])
p
.
update
(
1
)
newtiles
.
append
([
y
*
scale_factor
,
h
*
scale_factor
,
newrow
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment