-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed distributed communication class
Added missing parameter to test Fixed formatting docs: fix build issues and add sub-sections (#69)
- Loading branch information
Sathwik Yanamaddi
committed
Apr 12, 2024
1 parent
9f3931f
commit 43f159a
Showing
7 changed files
with
72 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Copyright 2024 Parallel Software and Systems Group, University of Maryland. | ||
# See the top-level LICENSE file for details. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
||
# The name of the Pygments (syntax highlighting) style to use. | ||
from pygments.styles.default import DefaultStyle | ||
from pygments.token import Generic | ||
|
||
|
||
# modifications to the default style | ||
class AxonnStyle(DefaultStyle): | ||
styles = DefaultStyle.styles.copy() | ||
background_color = "#f4f4f8" | ||
styles[Generic.Output] = "#355" | ||
styles[Generic.Prompt] = "bold #346ec9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
******** | ||
Examples | ||
******** | ||
|
||
Training | ||
============ | ||
|
||
|
||
|
||
Fine-tuning | ||
=========== | ||
|
||
|
||
|
||
Inference | ||
========= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
********** | ||
User Guide | ||
********** | ||
|
||
Initializing AxoNN | ||
================== | ||
|
||
Tensor with Easy API | ||
==================== | ||
|
||
Tensor using Advanced API | ||
===================================== | ||
|
||
Combining Tensor in AxoNN with PyTorch DDP | ||
========================================== | ||
|
||
Integration with other Parallel APIs | ||
==================================== | ||
|
||
Huggingface | ||
----------- | ||
|
||
Pipelining in AxoNN | ||
=================== | ||
|
||
Combining Pipelining in AxoNN with Data Parallelism | ||
=================================================== | ||
|