2020-03-24 07:32:52 -05:00
|
|
|
{% set default_cable = '5m' %}
|
2020-07-30 06:22:08 -05:00
|
|
|
{% set ingress_lossless_pool_size = '26451968' %}
|
|
|
|
{% set ingress_lossy_pool_size = '26451968' %}
|
2020-03-24 07:32:52 -05:00
|
|
|
{% set egress_lossless_pool_size = '60817392' %}
|
2020-07-30 06:22:08 -05:00
|
|
|
{% set egress_lossy_pool_size = '26451968' %}
|
2020-03-24 07:32:52 -05:00
|
|
|
|
2021-12-09 09:34:56 -06:00
|
|
|
{% import 'buffers_defaults_objects.j2' as defs with context %}
|
2020-03-24 07:32:52 -05:00
|
|
|
|
2021-12-09 09:34:56 -06:00
|
|
|
{%- macro generate_buffer_pool_and_profiles_with_inactive_ports(port_names_inactive) %}
|
|
|
|
{{ defs.generate_buffer_pool_and_profiles_with_inactive_ports(port_names_inactive) }}
|
2020-03-24 07:32:52 -05:00
|
|
|
{%- endmacro %}
|
|
|
|
|
2021-12-09 09:34:56 -06:00
|
|
|
{%- macro generate_profile_lists_with_inactive_ports(port_names_active, port_names_inactive) %}
|
|
|
|
{{ defs.generate_profile_lists(port_names_active, port_names_inactive) }}
|
2020-03-24 07:32:52 -05:00
|
|
|
{%- endmacro %}
|
|
|
|
|
2021-12-09 09:34:56 -06:00
|
|
|
{%- macro generate_queue_buffers_with_inactive_ports(port_names_active, port_names_inactive) %}
|
|
|
|
{{ defs.generate_queue_buffers(port_names_active, port_names_inactive) }}
|
2020-03-24 07:32:52 -05:00
|
|
|
{%- endmacro %}
|
|
|
|
|
2021-12-09 09:34:56 -06:00
|
|
|
{%- macro generate_pg_profiles_with_inactive_ports(port_names_active, port_names_inactive) %}
|
|
|
|
{{ defs.generate_pg_profiles(port_names_active, port_names_inactive) }}
|
|
|
|
{%- endmacro %}
|