19 lines
661 B
Python
19 lines
661 B
Python
# Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License").
|
|
# You may not use this file except in compliance with the License.
|
|
# To view a copy of this license, visit http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# No warranties are given. The work is provided "AS IS", without warranty of any kind, express or implied.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
"""Compatibility exports for LongLive SP training helpers."""
|
|
|
|
from wan_5b.distributed.sp_training import (
|
|
DEFAULT_SP_VAE_HALO_LATENTS,
|
|
SequenceParallelHelper,
|
|
)
|
|
|
|
__all__ = ["DEFAULT_SP_VAE_HALO_LATENTS", "SequenceParallelHelper"]
|