passfh commited on
Commit
dd913ba
·
verified ·
1 Parent(s): 5e0e9f1

Initial commit with folder contents

Browse files
Files changed (5) hide show
  1. .gitattributes +1 -1
  2. pyproject.toml +42 -0
  3. src/main.py +55 -0
  4. src/pipeline.py +38 -0
  5. uv.lock +0 -0
.gitattributes CHANGED
@@ -32,4 +32,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
32
  *.xz filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
- *tfevents* filter=lfs diff=lfs merge=lfs -text
 
32
  *.xz filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
+ *tfevents* filter=lfs diff=lfs merge=lfs -text
pyproject.toml ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [build-system]
2
+ requires = ["setuptools >= 75.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "flux-schnell-edge-inference"
7
+ description = "An edge-maxxing model submission for the 4090 Flux contest"
8
+ requires-python = ">=3.10,<3.13"
9
+ version = "8"
10
+ dependencies = [
11
+ "diffusers==0.31.0",
12
+ "transformers==4.46.2",
13
+ "accelerate==1.1.0",
14
+ "omegaconf==2.3.0",
15
+ "torch==2.5.1",
16
+ "protobuf==5.28.3",
17
+ "sentencepiece==0.2.0",
18
+ "edge-maxxing-pipelines @ git+https://github.com/womboai/edge-maxxing@7c760ac54f6052803dadb3ade8ebfc9679a94589#subdirectory=pipelines",
19
+ "gitpython>=3.1.43",
20
+ "hf_transfer==0.1.8",
21
+ "torchao==0.6.1",
22
+ "setuptools>=75.3.0",
23
+ ]
24
+ [[tool.edge-maxxing.models]]
25
+ repository = "passfh/flux_enc_vae"
26
+ revision = "07c7ccc6fa03bfba9bbd3de12132d68a8acb5bfd"
27
+
28
+ [[tool.edge-maxxing.models]]
29
+ repository = "passfh/new_performance"
30
+ revision = "4a970d0f3b7e9254701b2f3c74895373e6cc0f27"
31
+
32
+ [[tool.edge-maxxing.models]]
33
+ repository = "passfh/tf_flux"
34
+ revision = "183b9075737fe1584f7465abb2d43d0535f48453"
35
+
36
+ [[tool.edge-maxxing.models]]
37
+ repository = "passfh/origin_md"
38
+ revision = "f3f2d540f89a024ecffb4f89a5892fe16533f188"
39
+
40
+ [project.scripts]
41
+ start_inference = "main:main"
42
+
src/main.py ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import atexit
2
+ from io import BytesIO
3
+ from multiprocessing.connection import Listener
4
+ from os import chmod, remove
5
+ from os.path import abspath, exists
6
+ from pathlib import Path
7
+ from git import Repo
8
+ import torch
9
+
10
+ from PIL.JpegImagePlugin import JpegImageFile
11
+ from pipelines.models import TextToImageRequest
12
+ from pipeline import load_pipeline, infer
13
+ SOCKET = abspath(Path(__file__).parent.parent / "inferences.sock")
14
+
15
+
16
+ def at_exit():
17
+ torch.cuda.empty_cache()
18
+
19
+
20
+ def main():
21
+ atexit.register(at_exit)
22
+
23
+ print(f"Loading pipeline")
24
+ pipeline = load_pipeline()
25
+
26
+ print(f"Pipeline loaded! , creating socket at '{SOCKET}'")
27
+
28
+ if exists(SOCKET):
29
+ remove(SOCKET)
30
+
31
+ with Listener(SOCKET) as listener:
32
+ chmod(SOCKET, 0o777)
33
+
34
+ print(f"Awaiting connections")
35
+ with listener.accept() as connection:
36
+ print(f"Connected")
37
+ generator = torch.Generator("cuda")
38
+ while True:
39
+ try:
40
+ request = TextToImageRequest.model_validate_json(connection.recv_bytes().decode("utf-8"))
41
+ except EOFError:
42
+ print(f"Inference socket exiting")
43
+
44
+ return
45
+ image = infer(request, pipeline, generator.manual_seed(request.seed))
46
+ data = BytesIO()
47
+ image.save(data, format=JpegImageFile.format)
48
+
49
+ packet = data.getvalue()
50
+
51
+ connection.send_bytes(packet )
52
+
53
+
54
+ if __name__ == '__main__':
55
+ main()
src/pipeline.py ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from diffusers import AutoencoderKL, FluxPipeline, FluxTransformer2DModel
2
+ from huggingface_hub.constants import HF_HUB_CACHE
3
+ from transformers import T5EncoderModel
4
+ from PIL import Image
5
+ from pipelines.models import TextToImageRequest
6
+ from torch import Generator
7
+ from typing import Type
8
+ from torchao.quantization import quantize_, int8_weight_only, fpx_weight_only
9
+ import torch
10
+ import torch._dynamo
11
+ import os
12
+
13
+ os.environ['PYTORCH_CUDA_ALLOC_CONF']="expandable_segments:True"
14
+ os.environ["TOKENIZERS_PARALLELISM"] = "True"
15
+ torch._dynamo.config.suppress_errors = True
16
+ torch.backends.cuda.matmul.allow_tf32 = True
17
+ torch.backends.cudnn.enabled = True
18
+
19
+ Pipeline = None
20
+
21
+ def load_pipeline() -> Pipeline:
22
+ ckpt_id = "passfh/flux_enc_vae"
23
+ ckpt_revision = "07c7ccc6fa03bfba9bbd3de12132d68a8acb5bfd"
24
+ vae = AutoencoderKL.from_pretrained(ckpt_id,revision=ckpt_revision, subfolder="vae", local_files_only=True, torch_dtype=torch.bfloat16,)
25
+ quantize_(vae, int8_weight_only())
26
+ text_encoder_2 = T5EncoderModel.from_pretrained("passfh/tf_flux", revision = "183b9075737fe1584f7465abb2d43d0535f48453", subfolder="text_encoder_2",torch_dtype=torch.bfloat16)
27
+ path = os.path.join(HF_HUB_CACHE, "models--passfh--tf_flux/snapshots/183b9075737fe1584f7465abb2d43d0535f48453/transformer")
28
+ transformer = FluxTransformer2DModel.from_pretrained(path, torch_dtype=torch.bfloat16, use_safetensors=False)
29
+ pipeline = FluxPipeline.from_pretrained(ckpt_id, revision=ckpt_revision, transformer=transformer, text_encoder_2=text_encoder_2, torch_dtype=torch.bfloat16,)
30
+ pipeline.to("cuda")
31
+ pipeline.to(memory_format=torch.channels_last)
32
+ for _ in range(1):
33
+ pipeline(prompt="insensible, timbale, pothery, electrovital, actinogram, taxis, intracerebellar, centrodesmus", width=1024, height=1024, guidance_scale=0.0, num_inference_steps=4, max_sequence_length=256)
34
+ return pipeline
35
+
36
+ @torch.no_grad()
37
+ def infer(request: TextToImageRequest, pipeline: Pipeline, generator: Generator) -> Image:
38
+ return pipeline(request.prompt, generator=generator, guidance_scale=0.0, num_inference_steps=4, max_sequence_length=256, height=request.height, width=request.width, output_type="pil").images[0]
uv.lock ADDED
The diff for this file is too large to render. See raw diff