2021-12-10 00:23:26 -06:00
|
|
|
{#
|
|
|
|
Copyright (c) 2021 NVIDIA CORPORATION & AFFILIATES.
|
|
|
|
Apache-2.0
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
#}
|
|
|
|
|
2021-09-29 16:14:11 -05:00
|
|
|
{% set default_cable = '5m' %}
|
2021-12-08 07:51:33 -06:00
|
|
|
{% set ingress_lossless_pool_size = '44566528' %}
|
2021-12-20 15:31:45 -06:00
|
|
|
{% set ingress_lossless_pool_xoff = '3614720' %}
|
2021-09-29 16:14:11 -05:00
|
|
|
{% set egress_lossless_pool_size = '60817392' %}
|
2021-12-08 07:51:33 -06:00
|
|
|
{% set egress_lossy_pool_size = '44566528' %}
|
2021-09-29 16:14:11 -05:00
|
|
|
|
2021-12-20 15:31:45 -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) }}
|
2021-09-29 16:14:11 -05:00
|
|
|
{%- endmacro %}
|
|
|
|
|
2021-12-20 15:31:45 -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) }}
|
2021-09-29 16:14:11 -05:00
|
|
|
{%- endmacro %}
|
|
|
|
|
2021-12-20 15:31:45 -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) }}
|
2021-09-29 16:14:11 -05:00
|
|
|
{%- endmacro %}
|
|
|
|
|
2021-12-20 15:31:45 -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) }}
|
2021-09-29 16:14:11 -05:00
|
|
|
{%- endmacro %}
|