MCPcopy Create free account
hub / github.com/city96/ComfyUI-GGUF / __init__

Method __init__

ops.py:48–52  ·  view source on GitHub ↗
(self, *args, tensor_type, tensor_shape, patches=[], **kwargs)

Source from the content-addressed store, hash-verified

46 Main tensor-like class for storing quantized weights
47 """
48 def __init__(self, *args, tensor_type, tensor_shape, patches=[], **kwargs):
49 super().__init__()
50 self.tensor_type = tensor_type
51 self.tensor_shape = tensor_shape
52 self.patches = patches
53
54 def __new__(cls, *args, tensor_type, tensor_shape, patches=[], **kwargs):
55 return super().__new__(cls, *args, **kwargs)

Callers 1

__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected