universal_checkpoint.py 4.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. # Copyright (c) Microsoft Corporation.
  2. # SPDX-License-Identifier: Apache-2.0
  3. # DeepSpeed Team
  4. import os
  5. import torch
  6. import types
  7. from .constants import (FP32_WEIGHT_KEY, PARAM, VOCAB_DIVISIBILITY_PADDING_TENSOR, CAT_DIM)
  8. def load_hp_checkpoint_state(self, folder, tp_rank, tp_world_size):
  9. hp_mapping = self._hp_mapping
  10. optim_state_keys = hp_mapping.get_optim_state_keys()
  11. hp_keys = [FP32_WEIGHT_KEY] + optim_state_keys
  12. checkpoint_files = {key: os.path.join(folder, f"{key}.pt") for key in hp_keys}
  13. for file in checkpoint_files.values():
  14. assert os.path.isfile(file), f'{file} is not a valid file'
  15. for key in hp_keys:
  16. ckpt_file = checkpoint_files[key]
  17. ckpt_dict = torch.load(ckpt_file)
  18. full_hp_param = ckpt_dict[PARAM]
  19. # need to deal with slices that were averaged.
  20. # the opposite of averaging here becomes an exact copy of the first slice
  21. # I thought of 2 ways:
  22. # implementation a. find a way for a client to pass a dict with patterns
  23. # if any(re.search(pattern, folder) for pattern in WEIGHTS_TO_AVERAGE_PATTERNS):
  24. # tp_rank = 0
  25. # tp_world_size = 1
  26. # the other approach is to assume that the saved data is correct and if full_hp_param.shape ==
  27. # self.shape that means we automatically copy?
  28. # implementation b.
  29. # this version requires no additional data passed from the client
  30. # if the shapes already match it must be slices that were averaged - so we just hack around those
  31. if full_hp_param.shape == self.shape:
  32. tp_rank = 0
  33. tp_world_size = 1
  34. # special case for word_embeddings weights which get padded differently depending on TP degree.
  35. # the converter to universal currently strips the original padding completely so the saved
  36. # weight is padding-free and we just need to add new padding depending on the target TP
  37. # degree
  38. vocab_divisibility_padding_tensor = ckpt_dict.get(VOCAB_DIVISIBILITY_PADDING_TENSOR, None)
  39. if vocab_divisibility_padding_tensor is not None:
  40. # In the absence of data passed from the user wrt new padded vocab specific to tp degree
  41. # we can again derive that data by reverse engineering the target shapes like so:
  42. padded_target_vocab_size = self.shape[0] * tp_world_size
  43. if padded_target_vocab_size > full_hp_param.shape[0]:
  44. # Need to expand
  45. padding_size = padded_target_vocab_size - full_hp_param.shape[0]
  46. # Implement the following concat in efficient way using pad
  47. #full_hp_param = torch.cat((full_hp_param, padding_tensor), 0)
  48. full_hp_param = torch.nn.functional.pad(full_hp_param, (0, 0, 0, padding_size), "constant", 0)
  49. full_hp_param[:-padding_size, :] = vocab_divisibility_padding_tensor
  50. else:
  51. # Need to shrink or keep the same
  52. full_hp_param = full_hp_param[:padded_target_vocab_size, :]
  53. full_param_numel = full_hp_param.numel()
  54. tp_slice_numel = self.numel()
  55. # if key == FP32_WEIGHT_KEY and 'word_embeddings.weight' in folder:
  56. # print_rank_0(f'{full_hp_param[:10]=}', force=True)
  57. assert full_param_numel == tp_world_size * tp_slice_numel, \
  58. f'Loading {ckpt_file} full param numel {full_param_numel} != tensor slice numel {tp_slice_numel} * tp_world_size {tp_world_size}'
  59. dst_tensor = hp_mapping.hp_fragment if key == FP32_WEIGHT_KEY else hp_mapping.get_optim_state_fragment(key)
  60. # print(f"{full_hp_param.shape=} {full_param_numel=} {folder=}")
  61. # print(f"{dst_tensor.shape=} {dst_tensor.numel()=}{folder=}")
  62. # since when we do many to 1 on tp we cat sometimes on dim=0 and other times on dim=1 we have to do exactly the same in reverse
  63. chunk_dim = ckpt_dict.get(CAT_DIM, 0)
  64. # this performs the opposite of cat when merging TP slices
  65. tp_hp_slice = full_hp_param.chunk(tp_world_size, chunk_dim)[tp_rank]
  66. tp_hp_slice = tp_hp_slice.flatten()
  67. lp_frag_address = hp_mapping.lp_fragment_address
  68. tp_hp_fragment = tp_hp_slice.narrow(0, lp_frag_address.start, lp_frag_address.numel)
  69. assert dst_tensor.numel() == lp_frag_address.numel, \
  70. f'Load checkpoint {key} dst_tensor numel {dst_tensor.numel()} != src numel {lp_frag_address.numel}'
  71. # print(f"{key} SHAPE: {tp_hp_slice.shape=}")
  72. # print(f"{key} SHAPE: {dst_tensor.shape=}")
  73. # print(f"{key} SHAPE: {tp_hp_fragment.shape=}")
  74. dst_tensor.data.copy_(tp_hp_fragment.data)
  75. def enable_universal_checkpoint(param_list):
  76. for param in param_list:
  77. param.load_hp_checkpoint_state = types.MethodType(load_hp_checkpoint_state, param)