File tree 1 file changed +46
-0
lines changed
device/arista/x86_64-arista_7050cx3_32s/Arista-7050CX3-32S-C32
1 file changed +46
-0
lines changed Original file line number Diff line number Diff line change
1
+ {% - set default_cable = '300m' %}
2
+
3
+ {% - macro generate_port_lists (PORT_ALL ) %}
4
+ {# Generate list of ports #}
5
+ {% - for port_idx in range (0,32) %}
6
+ {% - if PORT_ALL .append ("Ethernet%d" % (port_idx * 4)) %}{% - endif %}
7
+ {% - endfor %}
8
+ {% - endmacro %}
9
+
10
+ {% - macro generate_buffer_pool_and_profiles () %}
11
+ "BUFFER_POOL": {
12
+ "ingress_lossless_pool": {
13
+ "size": "32712448",
14
+ "type": "ingress",
15
+ "mode": "dynamic",
16
+ "xoff": "1622016"
17
+ },
18
+ "egress_lossy_pool": {
19
+ "size": "24709632",
20
+ "type": "egress",
21
+ "mode": "dynamic"
22
+ },
23
+ "egress_lossless_pool": {
24
+ "size": "32599040",
25
+ "type": "egress",
26
+ "mode": "static"
27
+ }
28
+ },
29
+ "BUFFER_PROFILE": {
30
+ "ingress_lossy_profile": {
31
+ "pool":"[BUFFER_POOL|ingress_lossless_pool]",
32
+ "size":"0",
33
+ "dynamic_th":"3"
34
+ },
35
+ "egress_lossless_profile": {
36
+ "pool":"[BUFFER_POOL|egress_lossless_pool]",
37
+ "size":"0",
38
+ "static_th":"32599040"
39
+ },
40
+ "egress_lossy_profile": {
41
+ "pool":"[BUFFER_POOL|egress_lossy_pool]",
42
+ "size":"1792",
43
+ "dynamic_th":"-1"
44
+ }
45
+ },
46
+ {% - endmacro %}
You can’t perform that action at this time.
0 commit comments