Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion comfy/ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ def to_dequant(tensor, dtype):


def cast_bias_weight(s, input=None, dtype=None, device=None, bias_dtype=None, offloadable=False, compute_dtype=None, want_requant=False):
# NOTE: offloadable=False is a a legacy and if you are a custom node author reading this please pass
# NOTE: offloadable=False is a legacy mode and if you are a custom node author reading this please pass
# offloadable=True and call uncast_bias_weight() after your last usage of the weight/bias. This
# will add async-offload support to your cast and improve performance.
if input is not None:
Expand Down
19 changes: 11 additions & 8 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4160,6 +4160,9 @@ paths:
name:
type: string
description: Display name for the API key
description:
type: string
description: User-provided description for the key
responses:
"201":
description: API key created
Expand Down Expand Up @@ -6351,14 +6354,6 @@ components:
type: integer
format: int64
description: Size of the asset in bytes
width:
type: integer
nullable: true
description: "Original image width in pixels. Null for non-image assets or assets ingested before dimension extraction."
height:
type: integer
nullable: true
description: "Original image height in pixels. Null for non-image assets or assets ingested before dimension extraction."
mime_type:
type: string
description: MIME type of the asset
Expand Down Expand Up @@ -7690,6 +7685,10 @@ components:
type: string
name:
type: string
description:
type: string
nullable: true
description: User-provided description
prefix:
type: string
description: First few characters of the key for identification
Expand All @@ -7716,6 +7715,10 @@ components:
type: string
name:
type: string
description:
type: string
nullable: true
description: User-provided description
key:
type: string
description: Full API key value (only returned on creation)
Expand Down
Loading