Epoching commited on
Commit
226ebd8
1 Parent(s): 06a1399

First Push

Browse files
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: ml-agents
3
+ tags:
4
+ - SnowballTarget
5
+ - deep-reinforcement-learning
6
+ - reinforcement-learning
7
+ - ML-Agents-SnowballTarget
8
+ ---
9
+
10
+ # **ppo** Agent playing **SnowballTarget**
11
+ This is a trained model of a **ppo** agent playing **SnowballTarget**
12
+ using the [Unity ML-Agents Library](https://github.com/Unity-Technologies/ml-agents).
13
+
14
+ ## Usage (with ML-Agents)
15
+ The Documentation: https://unity-technologies.github.io/ml-agents/ML-Agents-Toolkit-Documentation/
16
+
17
+ We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
18
+ - A *short tutorial* where you teach Huggy the Dog 🐶 to fetch the stick and then play with him directly in your
19
+ browser: https://huggingface.co/learn/deep-rl-course/unitbonus1/introduction
20
+ - A *longer tutorial* to understand how works ML-Agents:
21
+ https://huggingface.co/learn/deep-rl-course/unit5/introduction
22
+
23
+ ### Resume the training
24
+ ```bash
25
+ mlagents-learn <your_configuration_file_path.yaml> --run-id=<run_id> --resume
26
+ ```
27
+
28
+ ### Watch your Agent play
29
+ You can watch your agent **playing directly in your browser**
30
+
31
+ 1. If the environment is part of ML-Agents official environments, go to https://huggingface.co/unity
32
+ 2. Step 1: Find your model_id: Epoching/ppo-SnowballTarget
33
+ 3. Step 2: Select your *.nn /*.onnx file
34
+ 4. Click on Watch the agent play 👀
35
+
SnowballTarget/SnowballTarget-149984.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:baba817f96b394c286c439e3fb0c10da40823ce38e520b35e59b20ab3685931b
3
+ size 650646
SnowballTarget/SnowballTarget-149984.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e26ce95a402583181f136081e50b42d54e56378219d9b02de0d5e5f9dd60739f
3
+ size 3849115
SnowballTarget/SnowballTarget-49936.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:03e5a9c5978ecb8dd103ae20f60e2b87722d3b8f299352d7d1d657a34fea37cf
3
+ size 650646
SnowballTarget/SnowballTarget-49936.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b52974dc2981d3950ce0c39f813a332ccd156e96e6195566e29a44852ee85aa
3
+ size 3849040
SnowballTarget/SnowballTarget-99960.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40d81c1c35af32e806e8d4fd6a3aacf48a85ab7c7a8dc5c3e119bd59d4194e1a
3
+ size 650646
SnowballTarget/SnowballTarget-99960.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6ff57cf99e512661646dc636707a78cdaa6c70e3e702b2714e486ad2e2201c41
3
+ size 3849040
SnowballTarget/checkpoint.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bebbb71bf108604c6fce139dba43e477c9d0323812b90059e68cd4d115b11b3d
3
+ size 3848290
SnowballTarget/events.out.tfevents.1714272187.bigteddy.9505.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2daeff9be814efd30d45ca2578af0d94af7eb63d41e9cbc55643d2d9544a05e0
3
+ size 30754
config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"behaviors": {"SnowballTarget": {"trainer_type": "ppo", "summary_freq": 10000, "keep_checkpoints": 10, "checkpoint_interval": 50000, "max_steps": 200000, "time_horizon": 64, "threaded": true, "hyperparameters": {"learning_rate": 0.0003, "learning_rate_schedule": "linear", "batch_size": 128, "buffer_size": 2048, "beta": 0.005, "epsilon": 0.2, "lambd": 0.95, "num_epoch": 3}, "network_settings": {"normalize": false, "hidden_units": 256, "num_layers": 2, "vis_encode_type": "simple"}, "reward_signals": {"extrinsic": {"gamma": 0.99, "strength": 1.0}}}}}
configuration.yaml ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ behaviors:
2
+ SnowballTarget:
3
+ trainer_type: ppo
4
+ summary_freq: 10000
5
+ keep_checkpoints: 10
6
+ checkpoint_interval: 50000
7
+ max_steps: 200000
8
+ time_horizon: 64
9
+ threaded: true
10
+ hyperparameters:
11
+ learning_rate: 0.0003
12
+ learning_rate_schedule: linear
13
+ batch_size: 128
14
+ buffer_size: 2048
15
+ beta: 0.005
16
+ epsilon: 0.2
17
+ lambd: 0.95
18
+ num_epoch: 3
19
+ network_settings:
20
+ normalize: false
21
+ hidden_units: 256
22
+ num_layers: 2
23
+ vis_encode_type: simple
24
+ reward_signals:
25
+ extrinsic:
26
+ gamma: 0.99
27
+ strength: 1.0
run_logs/.ipynb_checkpoints/Player-0-checkpoint.log ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Mono path[0] = '/home/saini5/HF_RL_Course/unit5/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/Managed'
2
+ Mono config path = '/home/saini5/HF_RL_Course/unit5/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/MonoBleedingEdge/etc'
3
+ Preloaded 'lib_burst_generated.so'
4
+ Preloaded 'libgrpc_csharp_ext.x64.so'
5
+ Initialize engine version: 2021.3.14f1 (eee1884e7226)
6
+ [Subsystems] Discovering subsystems at path /home/saini5/HF_RL_Course/unit5/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/UnitySubsystems
7
+ Forcing GfxDevice: Null
8
+ GfxDevice: creating device client; threaded=0; jobified=0
9
+ NullGfxDevice:
10
+ Version: NULL 1.0 [1.0]
11
+ Renderer: Null Device
12
+ Vendor: Unity Technologies
13
+ Begin MonoManager ReloadAssembly
14
+ - Completed reload, in 0.113 seconds
15
+ ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
16
+ ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
17
+ ERROR: Shader Legacy Shaders/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
18
+ WARNING: Shader Unsupported: 'Standard' - All subshaders removed
19
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
20
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
21
+ ERROR: Shader Standard shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
22
+ WARNING: Shader Unsupported: 'Standard' - All subshaders removed
23
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
24
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
25
+ UnloadTime: 0.776359 ms
26
+ ERROR: Shader UI/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
27
+ requesting resize 84 x 84
run_logs/Player-0.log ADDED
@@ -0,0 +1,329 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Mono path[0] = '/home/saini5/HF_RL_Course/unit5/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/Managed'
2
+ Mono config path = '/home/saini5/HF_RL_Course/unit5/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/MonoBleedingEdge/etc'
3
+ Preloaded 'lib_burst_generated.so'
4
+ Preloaded 'libgrpc_csharp_ext.x64.so'
5
+ Initialize engine version: 2021.3.14f1 (eee1884e7226)
6
+ [Subsystems] Discovering subsystems at path /home/saini5/HF_RL_Course/unit5/training-envs-executables/linux/SnowballTarget/SnowballTarget_Data/UnitySubsystems
7
+ Forcing GfxDevice: Null
8
+ GfxDevice: creating device client; threaded=0; jobified=0
9
+ NullGfxDevice:
10
+ Version: NULL 1.0 [1.0]
11
+ Renderer: Null Device
12
+ Vendor: Unity Technologies
13
+ Begin MonoManager ReloadAssembly
14
+ - Completed reload, in 0.113 seconds
15
+ ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
16
+ ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
17
+ ERROR: Shader Legacy Shaders/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
18
+ WARNING: Shader Unsupported: 'Standard' - All subshaders removed
19
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
20
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
21
+ ERROR: Shader Standard shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
22
+ WARNING: Shader Unsupported: 'Standard' - All subshaders removed
23
+ WARNING: Shader Did you use #pragma only_renderers and omit this platform?
24
+ WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
25
+ UnloadTime: 0.776359 ms
26
+ ERROR: Shader UI/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
27
+ requesting resize 84 x 84
28
+ Setting up 10 worker threads for Enlighten.
29
+ Memory Statistics:
30
+ [ALLOC_TEMP_TLS] TLS Allocator
31
+ StackAllocators :
32
+ [ALLOC_TEMP_MAIN]
33
+ Peak usage frame count: [8.0 KB-16.0 KB]: 4696 frames, [16.0 KB-32.0 KB]: 79 frames, [2.0 MB-4.0 MB]: 1 frames
34
+ Initial Block Size 4.0 MB
35
+ Current Block Size 4.0 MB
36
+ Peak Allocated Bytes 2.0 MB
37
+ Overflow Count 0
38
+ [ALLOC_TEMP_Job.Worker 18]
39
+ Initial Block Size 256.0 KB
40
+ Current Block Size 256.0 KB
41
+ Peak Allocated Bytes 3.6 KB
42
+ Overflow Count 0
43
+ [ALLOC_TEMP_Loading.PreloadManager]
44
+ Initial Block Size 256.0 KB
45
+ Current Block Size 304.0 KB
46
+ Peak Allocated Bytes 228.9 KB
47
+ Overflow Count 4
48
+ [ALLOC_TEMP_Loading.AsyncRead]
49
+ Initial Block Size 64.0 KB
50
+ Current Block Size 64.0 KB
51
+ Peak Allocated Bytes 224 B
52
+ Overflow Count 0
53
+ [ALLOC_TEMP_Background Job.Worker 8]
54
+ Initial Block Size 32.0 KB
55
+ Current Block Size 32.0 KB
56
+ Peak Allocated Bytes 0 B
57
+ Overflow Count 0
58
+ [ALLOC_TEMP_Job.Worker 6]
59
+ Initial Block Size 256.0 KB
60
+ Current Block Size 256.0 KB
61
+ Peak Allocated Bytes 3.6 KB
62
+ Overflow Count 0
63
+ [ALLOC_TEMP_Job.Worker 0]
64
+ Initial Block Size 256.0 KB
65
+ Current Block Size 256.0 KB
66
+ Peak Allocated Bytes 3.6 KB
67
+ Overflow Count 0
68
+ [ALLOC_TEMP_Background Job.Worker 10]
69
+ Initial Block Size 32.0 KB
70
+ Current Block Size 32.0 KB
71
+ Peak Allocated Bytes 0 B
72
+ Overflow Count 0
73
+ [ALLOC_TEMP_Background Job.Worker 9]
74
+ Initial Block Size 32.0 KB
75
+ Current Block Size 32.0 KB
76
+ Peak Allocated Bytes 0 B
77
+ Overflow Count 0
78
+ [ALLOC_TEMP_Job.Worker 5]
79
+ Initial Block Size 256.0 KB
80
+ Current Block Size 256.0 KB
81
+ Peak Allocated Bytes 3.6 KB
82
+ Overflow Count 0
83
+ [ALLOC_TEMP_Background Job.Worker 14]
84
+ Initial Block Size 32.0 KB
85
+ Current Block Size 32.0 KB
86
+ Peak Allocated Bytes 0 B
87
+ Overflow Count 0
88
+ [ALLOC_TEMP_Job.Worker 16]
89
+ Initial Block Size 256.0 KB
90
+ Current Block Size 256.0 KB
91
+ Peak Allocated Bytes 3.6 KB
92
+ Overflow Count 0
93
+ [ALLOC_TEMP_Background Job.Worker 6]
94
+ Initial Block Size 32.0 KB
95
+ Current Block Size 32.0 KB
96
+ Peak Allocated Bytes 0 B
97
+ Overflow Count 0
98
+ [ALLOC_TEMP_Job.Worker 4]
99
+ Initial Block Size 256.0 KB
100
+ Current Block Size 256.0 KB
101
+ Peak Allocated Bytes 3.6 KB
102
+ Overflow Count 0
103
+ [ALLOC_TEMP_Job.Worker 17]
104
+ Initial Block Size 256.0 KB
105
+ Current Block Size 256.0 KB
106
+ Peak Allocated Bytes 3.6 KB
107
+ Overflow Count 0
108
+ [ALLOC_TEMP_Job.Worker 14]
109
+ Initial Block Size 256.0 KB
110
+ Current Block Size 256.0 KB
111
+ Peak Allocated Bytes 3.6 KB
112
+ Overflow Count 0
113
+ [ALLOC_TEMP_Job.Worker 3]
114
+ Initial Block Size 256.0 KB
115
+ Current Block Size 256.0 KB
116
+ Peak Allocated Bytes 3.6 KB
117
+ Overflow Count 0
118
+ [ALLOC_TEMP_Job.Worker 13]
119
+ Initial Block Size 256.0 KB
120
+ Current Block Size 256.0 KB
121
+ Peak Allocated Bytes 3.6 KB
122
+ Overflow Count 0
123
+ [ALLOC_TEMP_Background Job.Worker 12]
124
+ Initial Block Size 32.0 KB
125
+ Current Block Size 32.0 KB
126
+ Peak Allocated Bytes 0 B
127
+ Overflow Count 0
128
+ [ALLOC_TEMP_EnlightenWorker] x 10
129
+ Initial Block Size 64.0 KB
130
+ Current Block Size 64.0 KB
131
+ Peak Allocated Bytes 0 B
132
+ Overflow Count 0
133
+ [ALLOC_TEMP_Background Job.Worker 15]
134
+ Initial Block Size 32.0 KB
135
+ Current Block Size 32.0 KB
136
+ Peak Allocated Bytes 0 B
137
+ Overflow Count 0
138
+ [ALLOC_TEMP_Background Job.Worker 1]
139
+ Initial Block Size 32.0 KB
140
+ Current Block Size 32.0 KB
141
+ Peak Allocated Bytes 0 B
142
+ Overflow Count 0
143
+ [ALLOC_TEMP_Background Job.Worker 2]
144
+ Initial Block Size 32.0 KB
145
+ Current Block Size 32.0 KB
146
+ Peak Allocated Bytes 0 B
147
+ Overflow Count 0
148
+ [ALLOC_TEMP_Background Job.Worker 7]
149
+ Initial Block Size 32.0 KB
150
+ Current Block Size 32.0 KB
151
+ Peak Allocated Bytes 0 B
152
+ Overflow Count 0
153
+ [ALLOC_TEMP_AssetGarbageCollectorHelper] x 19
154
+ Initial Block Size 64.0 KB
155
+ Current Block Size 64.0 KB
156
+ Peak Allocated Bytes 0 B
157
+ Overflow Count 0
158
+ [ALLOC_TEMP_Background Job.Worker 5]
159
+ Initial Block Size 32.0 KB
160
+ Current Block Size 32.0 KB
161
+ Peak Allocated Bytes 0 B
162
+ Overflow Count 0
163
+ [ALLOC_TEMP_Job.Worker 9]
164
+ Initial Block Size 256.0 KB
165
+ Current Block Size 256.0 KB
166
+ Peak Allocated Bytes 3.6 KB
167
+ Overflow Count 0
168
+ [ALLOC_TEMP_Background Job.Worker 13]
169
+ Initial Block Size 32.0 KB
170
+ Current Block Size 32.0 KB
171
+ Peak Allocated Bytes 0 B
172
+ Overflow Count 0
173
+ [ALLOC_TEMP_Job.Worker 8]
174
+ Initial Block Size 256.0 KB
175
+ Current Block Size 256.0 KB
176
+ Peak Allocated Bytes 3.6 KB
177
+ Overflow Count 0
178
+ [ALLOC_TEMP_Job.Worker 7]
179
+ Initial Block Size 256.0 KB
180
+ Current Block Size 256.0 KB
181
+ Peak Allocated Bytes 3.6 KB
182
+ Overflow Count 0
183
+ [ALLOC_TEMP_Job.Worker 1]
184
+ Initial Block Size 256.0 KB
185
+ Current Block Size 256.0 KB
186
+ Peak Allocated Bytes 3.6 KB
187
+ Overflow Count 0
188
+ [ALLOC_TEMP_Job.Worker 2]
189
+ Initial Block Size 256.0 KB
190
+ Current Block Size 256.0 KB
191
+ Peak Allocated Bytes 3.6 KB
192
+ Overflow Count 0
193
+ [ALLOC_TEMP_Background Job.Worker 3]
194
+ Initial Block Size 32.0 KB
195
+ Current Block Size 32.0 KB
196
+ Peak Allocated Bytes 0 B
197
+ Overflow Count 0
198
+ [ALLOC_TEMP_Background Job.Worker 11]
199
+ Initial Block Size 32.0 KB
200
+ Current Block Size 32.0 KB
201
+ Peak Allocated Bytes 0 B
202
+ Overflow Count 0
203
+ [ALLOC_TEMP_Job.Worker 10]
204
+ Initial Block Size 256.0 KB
205
+ Current Block Size 256.0 KB
206
+ Peak Allocated Bytes 3.6 KB
207
+ Overflow Count 0
208
+ [ALLOC_TEMP_Background Job.Worker 0]
209
+ Initial Block Size 32.0 KB
210
+ Current Block Size 32.0 KB
211
+ Peak Allocated Bytes 0 B
212
+ Overflow Count 0
213
+ [ALLOC_TEMP_Job.Worker 15]
214
+ Initial Block Size 256.0 KB
215
+ Current Block Size 256.0 KB
216
+ Peak Allocated Bytes 3.6 KB
217
+ Overflow Count 0
218
+ [ALLOC_TEMP_Job.Worker 11]
219
+ Initial Block Size 256.0 KB
220
+ Current Block Size 256.0 KB
221
+ Peak Allocated Bytes 3.6 KB
222
+ Overflow Count 0
223
+ [ALLOC_TEMP_Job.Worker 12]
224
+ Initial Block Size 256.0 KB
225
+ Current Block Size 256.0 KB
226
+ Peak Allocated Bytes 3.6 KB
227
+ Overflow Count 0
228
+ [ALLOC_TEMP_Background Job.Worker 4]
229
+ Initial Block Size 32.0 KB
230
+ Current Block Size 32.0 KB
231
+ Peak Allocated Bytes 0 B
232
+ Overflow Count 0
233
+ [ALLOC_TEMP_BatchDeleteObjects]
234
+ Initial Block Size 64.0 KB
235
+ Current Block Size 64.0 KB
236
+ Peak Allocated Bytes 0 B
237
+ Overflow Count 0
238
+ [ALLOC_DEFAULT] Dual Thread Allocator
239
+ Peak main deferred allocation count 40
240
+ [ALLOC_BUCKET]
241
+ Large Block size 4.0 MB
242
+ Used Block count 1
243
+ Peak Allocated bytes 1.0 MB
244
+ [ALLOC_DEFAULT_MAIN]
245
+ Peak usage frame count: [4.0 MB-8.0 MB]: 4776 frames
246
+ Requested Block Size 16.0 MB
247
+ Peak Block count 1
248
+ Peak Allocated memory 6.6 MB
249
+ Peak Large allocation bytes 0 B
250
+ [ALLOC_DEFAULT_THREAD]
251
+ Peak usage frame count: [16.0 MB-32.0 MB]: 4776 frames
252
+ Requested Block Size 16.0 MB
253
+ Peak Block count 1
254
+ Peak Allocated memory 17.6 MB
255
+ Peak Large allocation bytes 16.0 MB
256
+ [ALLOC_TEMP_JOB_1_FRAME]
257
+ Initial Block Size 2.0 MB
258
+ Used Block Count 1
259
+ Overflow Count (too large) 0
260
+ Overflow Count (full) 0
261
+ [ALLOC_TEMP_JOB_2_FRAMES]
262
+ Initial Block Size 2.0 MB
263
+ Used Block Count 1
264
+ Overflow Count (too large) 0
265
+ Overflow Count (full) 0
266
+ [ALLOC_TEMP_JOB_4_FRAMES (JobTemp)]
267
+ Initial Block Size 2.0 MB
268
+ Used Block Count 2
269
+ Overflow Count (too large) 0
270
+ Overflow Count (full) 0
271
+ [ALLOC_TEMP_JOB_ASYNC (Background)]
272
+ Initial Block Size 1.0 MB
273
+ Used Block Count 3
274
+ Overflow Count (too large) 0
275
+ Overflow Count (full) 0
276
+ [ALLOC_GFX] Dual Thread Allocator
277
+ Peak main deferred allocation count 0
278
+ [ALLOC_BUCKET]
279
+ Large Block size 4.0 MB
280
+ Used Block count 1
281
+ Peak Allocated bytes 1.0 MB
282
+ [ALLOC_GFX_MAIN]
283
+ Peak usage frame count: [32.0 KB-64.0 KB]: 4449 frames, [64.0 KB-128.0 KB]: 327 frames
284
+ Requested Block Size 16.0 MB
285
+ Peak Block count 1
286
+ Peak Allocated memory 66.4 KB
287
+ Peak Large allocation bytes 0 B
288
+ [ALLOC_GFX_THREAD]
289
+ Peak usage frame count: [32.0 KB-64.0 KB]: 4776 frames
290
+ Requested Block Size 16.0 MB
291
+ Peak Block count 1
292
+ Peak Allocated memory 39.6 KB
293
+ Peak Large allocation bytes 0 B
294
+ [ALLOC_CACHEOBJECTS] Dual Thread Allocator
295
+ Peak main deferred allocation count 0
296
+ [ALLOC_BUCKET]
297
+ Large Block size 4.0 MB
298
+ Used Block count 1
299
+ Peak Allocated bytes 1.0 MB
300
+ [ALLOC_CACHEOBJECTS_MAIN]
301
+ Peak usage frame count: [0.5 MB-1.0 MB]: 4776 frames
302
+ Requested Block Size 4.0 MB
303
+ Peak Block count 1
304
+ Peak Allocated memory 0.6 MB
305
+ Peak Large allocation bytes 0 B
306
+ [ALLOC_CACHEOBJECTS_THREAD]
307
+ Peak usage frame count: [0.5 MB-1.0 MB]: 4775 frames, [2.0 MB-4.0 MB]: 1 frames
308
+ Requested Block Size 4.0 MB
309
+ Peak Block count 1
310
+ Peak Allocated memory 2.2 MB
311
+ Peak Large allocation bytes 0 B
312
+ [ALLOC_TYPETREE] Dual Thread Allocator
313
+ Peak main deferred allocation count 0
314
+ [ALLOC_BUCKET]
315
+ Large Block size 4.0 MB
316
+ Used Block count 1
317
+ Peak Allocated bytes 1.0 MB
318
+ [ALLOC_TYPETREE_MAIN]
319
+ Peak usage frame count: [0-1.0 KB]: 4776 frames
320
+ Requested Block Size 2.0 MB
321
+ Peak Block count 1
322
+ Peak Allocated memory 1.0 KB
323
+ Peak Large allocation bytes 0 B
324
+ [ALLOC_TYPETREE_THREAD]
325
+ Peak usage frame count: [1.0 KB-2.0 KB]: 4776 frames
326
+ Requested Block Size 2.0 MB
327
+ Peak Block count 1
328
+ Peak Allocated memory 1.7 KB
329
+ Peak Large allocation bytes 0 B