Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stable-diffusion-webui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
stable-diffusion-webui
Commits
01c93a84
Commit
01c93a84
authored
Sep 19, 2022
by
AUTOMATIC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use model's dtype for #707
parent
cf28445f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
prompt_parser.py
modules/prompt_parser.py
+1
-1
No files found.
modules/prompt_parser.py
View file @
01c93a84
...
@@ -114,7 +114,7 @@ def get_learned_conditioning(prompts, steps):
...
@@ -114,7 +114,7 @@ def get_learned_conditioning(prompts, steps):
def
reconstruct_cond_batch
(
c
:
ScheduledPromptBatch
,
current_step
):
def
reconstruct_cond_batch
(
c
:
ScheduledPromptBatch
,
current_step
):
res
=
torch
.
zeros
(
c
.
shape
,
device
=
shared
.
device
,
dtype
=
torch
.
half
)
res
=
torch
.
zeros
(
c
.
shape
,
device
=
shared
.
device
,
dtype
=
next
(
shared
.
sd_model
.
parameters
())
.
dtype
)
for
i
,
cond_schedule
in
enumerate
(
c
.
schedules
):
for
i
,
cond_schedule
in
enumerate
(
c
.
schedules
):
target_index
=
0
target_index
=
0
for
curret_index
,
(
end_at
,
cond
)
in
enumerate
(
cond_schedule
):
for
curret_index
,
(
end_at
,
cond
)
in
enumerate
(
cond_schedule
):
...
...
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