mirror of https://github.com/hpcaitech/ColossalAI
[misc] remove useless condition
parent
70793ce9ed
commit
7e737df5ad
|
@ -61,7 +61,7 @@ class MixtralPolicy(Policy):
|
||||||
policy[attn_cls] = ModulePolicyDescription(
|
policy[attn_cls] = ModulePolicyDescription(
|
||||||
attribute_replacement=decoder_attribute_replacement,
|
attribute_replacement=decoder_attribute_replacement,
|
||||||
)
|
)
|
||||||
if self.shard_config.enable_flash_attention or self.shard_config.enable_sequence_parallelism:
|
if self.shard_config.enable_sequence_parallelism:
|
||||||
if self.pipeline_stage_manager is not None:
|
if self.pipeline_stage_manager is not None:
|
||||||
# NOTE: we are replacing model forward for both sequence parallelism and pipeline parallelism
|
# NOTE: we are replacing model forward for both sequence parallelism and pipeline parallelism
|
||||||
# if both are enabled, one of them will be ignored
|
# if both are enabled, one of them will be ignored
|
||||||
|
|
Loading…
Reference in New Issue