aredden commited on
Commit
efb953a
Β·
1 Parent(s): 6bd57ab

Add speed comparison

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md CHANGED
@@ -2,6 +2,29 @@
2
 
3
  This repository contains an implementation of the Flux model, along with an API that allows you to generate images based on text prompts. The API can be run via command-line arguments.
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  ## Table of Contents
6
 
7
  - [Installation](#installation)
 
2
 
3
  This repository contains an implementation of the Flux model, along with an API that allows you to generate images based on text prompts. The API can be run via command-line arguments.
4
 
5
+ ## Speed Comparison
6
+
7
+ | Resolution | Device | Test | Average it/s |
8
+ | ---------- | ---------- | -------------------------- | ------------ |
9
+ | 1024x1024 | RTX4090 | bfl codebase fp8 wo quant | 1.7 |
10
+ | 1024x1024 | RTX4090 | ❎ compile blocks & extras | 2.55 |
11
+ | 1024x1024 | RTX4090 | βœ… compile blocks & extras | 3.51 |
12
+ | 1024x1024 | RTX6000ADA | bfl codebase | 1.74 |
13
+ | 1024x1024 | RTX6000ADA | ❎ compile blocks & extras | 2.08 |
14
+ | 1024x1024 | RTX6000ADA | βœ… compile blocks & extras | 2.8 |
15
+ | 768x768 | RTX4090 | bfl codebase fp8 wo quant | 2.32 |
16
+ | 768x768 | RTX4090 | ❎ compile blocks & extras | 4.47 |
17
+ | 768x768 | RTX4090 | βœ… compile blocks & extras | 6.2 |
18
+ | 768x768 | RTX6000ADA | bfl codebase | 3.01 |
19
+ | 768x768 | RTX6000ADA | ❎ compile blocks & extras | 3.43 |
20
+ | 768x768 | RTX6000ADA | βœ… compile blocks & extras | 4.46 |
21
+ | 1024x720 | RTX4090 | bfl codebase fp8 wo quant | 3.01 |
22
+ | 1024x720 | RTX4090 | ❎ compile blocks & extras | 3.6 |
23
+ | 1024x720 | RTX4090 | βœ… compile blocks & extras | 4.96 |
24
+ | 1024x720 | RTX6000ADA | bfl codebase | 2.37 |
25
+ | 1024x720 | RTX6000ADA | ❎ compile blocks & extras | 2.87 |
26
+ | 1024x720 | RTX6000ADA | βœ… compile blocks & extras | 3.78 |
27
+
28
  ## Table of Contents
29
 
30
  - [Installation](#installation)