Skip to content

Releases: BlackSamorez/tensor_parallel

v1.2.3 Peft LoRA support

14 May 16:53
8457dc3
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.2.2...v1.2.3

v1.2.2: Distributed hotfix

17 Apr 07:48
e7ebc6f
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.2.1...v1.2.2

v1.2.1: LLaMA

10 Apr 16:52
9869234
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.2.0...v1.2.1

v1.2.0: Config refactoring

03 Apr 12:30
574b479
Compare
Choose a tag to compare

Config refactoring

state_actions are now interfaces:

class StateAction(ABC):
    @abstractclassmethod
    def __call__(self, tensor: Tensor, rank: int) -> Tensor:
        pass

    @abstractclassmethod
    def undo(self, tensors: Sequence[Tensor]) -> Tensor:
        pass

Callables and tuples of callables are still allowed but will produce deprecation warning.

Full Changelog: v1.1.4...v1.2.0

v1.1.4: state_dict operations and CodeGen

27 Mar 19:46
24dc1ab
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.3...v1.1.4

v1.1.3: Initial dispatch hotfix

23 Mar 12:05
a53d556
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.1...v1.1.3

Meta device support and new architectures

15 Mar 08:31
9d22bd9
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.0...v1.1.1

New model architectures and saving utilities

06 Mar 11:05
b1dd355
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.25...v1.1.0

transformers latest compatibility fixes

21 Feb 19:42
ba7bcf3
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.24...v1.0.25

Encoder-decoder architecture support

12 Jan 19:56
a7aa61e
Compare
Choose a tag to compare

What's Changed

Full Changelog: https://github.com/BlackSamorez/tensor_parallel/commits/v1.0.24