mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-05-09 16:52:32 +08:00
Compare commits
3 Commits
4d7b8119ad
...
cae16c91a9
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cae16c91a9 | ||
|
|
b4d7389cc2 | ||
|
|
66669b2ded |
@ -1390,7 +1390,7 @@ def convert_old_quants(state_dict, model_prefix="", metadata={}):
|
||||
k_out = "{}.weight_scale".format(layer)
|
||||
|
||||
if layer is not None:
|
||||
layer_conf = {"format": "float8_e4m3fn"} # TODO: check if anyone did some non e4m3fn scaled checkpoints
|
||||
layer_conf = {"format": "float8_e4m3fn"}
|
||||
if full_precision_matrix_mult:
|
||||
layer_conf["full_precision_matrix_mult"] = full_precision_matrix_mult
|
||||
layers[layer] = layer_conf
|
||||
|
||||
13
openapi.yaml
13
openapi.yaml
@ -2580,6 +2580,13 @@ paths:
|
||||
summary: Get pre-rendered node info schema
|
||||
description: "[cloud-only] Returns the static ComfyUI object_info schema, identical for every caller, rendered once at startup with empty model/user-file context. Served by a raw HTTP handler that writes pre-rendered bytes with ETag + Cache-Control validators for RFC 7232 conditional GETs."
|
||||
x-runtime: [cloud]
|
||||
parameters:
|
||||
- name: If-None-Match
|
||||
in: header
|
||||
required: false
|
||||
schema:
|
||||
type: string
|
||||
description: Entity tag previously returned by this endpoint. When present and matching, the server returns 304 Not Modified.
|
||||
responses:
|
||||
"200":
|
||||
description: Node info schema
|
||||
@ -2661,6 +2668,12 @@ paths:
|
||||
schema:
|
||||
type: string
|
||||
description: Node class identifier
|
||||
- name: If-None-Match
|
||||
in: header
|
||||
required: false
|
||||
schema:
|
||||
type: string
|
||||
description: Entity tag previously returned by this endpoint. When present and matching, the server returns 304 Not Modified.
|
||||
responses:
|
||||
"200":
|
||||
description: Single node definition
|
||||
|
||||
Loading…
Reference in New Issue
Block a user