Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support size_per_head=112 #660

Merged
merged 3 commits into from
Jun 29, 2023
Merged

Support size_per_head=112 #660

merged 3 commits into from
Jun 29, 2023

Conversation

dskhudia
Copy link
Contributor

@dskhudia dskhudia commented Jun 9, 2023

Support for size_per_head=112 is missing for GPT style models and this PR adds it.

@dwyatte
Copy link
Contributor

dwyatte commented Jun 23, 2023

Looks like this is needed for https://www.mosaicml.com/blog/mpt-30b, would be great to get it supported in FasterTransformer

@dskhudia
Copy link
Contributor Author

@dwyatte : Correct. That's why I added this PR.

@@ -57,7 +57,7 @@ add_library(mpi_utils STATIC mpi_utils.cc)
set_property(TARGET mpi_utils PROPERTY POSITION_INDEPENDENT_CODE ON)
set_property(TARGET mpi_utils PROPERTY CUDA_RESOLVE_DEVICE_SYMBOLS ON)
if (BUILD_MULTI_GPU)
target_link_libraries(mpi_utils PUBLIC -lmpi logger)
target_link_libraries(mpi_utils PUBLIC -lmpi -lmpi_cxx logger)
Copy link
Contributor

@dwyatte dwyatte Jun 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(I'm not reviewing, but am interested in this functionality)

@dskhudia can you say more about this change and whether it's needed? I'm building this via https://github.com/triton-inference-server/fastertransformer_backend and mpi_cxx is not there for linking (so may require some additional changes across the FasterTransformer ecosystem). If this is not actually needed, omitting it may be easier to get this approved/merged (edit: I am able to run this via my fork(s) without mpi_cxx)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was needed when I was building FT as described in the GPT doc. I created a separate PR for this as well. Willing to remove it from this PR. It accidentally got added in this.

#616

@byshiue byshiue merged commit 7777ff1 into NVIDIA:main Jun 29, 2023
@tuttlebr
Copy link

tuttlebr commented Jul 3, 2023

I realize FT/FTB are not well supported anymore but this appears to have broken some dependencies when building in Docker. Anyone else experiencing that?

@dwyatte
Copy link
Contributor

dwyatte commented Jul 5, 2023

@tuttlebr I just opened #705 which I'm hoping should fix the Docker build dependencies. Any idea if that's the source of your issue?

/usr/bin/ld: cannot find -lmpi_cxx
--
  | 2023-07-05 10:43:21 MDT | collect2: error: ld returned 1 exit status
  | 2023-07-05 10:43:21 MDT | make[2]: *** [_deps/repo-ft-build/src/fastertransformer/triton_backend/CMakeFiles/TransformerTritonBackend.dir/build.make:101: lib/libTransformerTritonBackend.so] Error 1
  | 2023-07-05 10:43:21 MDT | make[1]: *** [CMakeFiles/Makefile2:7382: _deps/repo-ft-build/src/fastertransformer/triton_backend/CMakeFiles/TransformerTritonBackend.dir/all] Error 2
  | 2023-07-05 10:43:21 MDT | make[1]: *** Waiting for unfinished jobs....

sfc-gh-ashankar added a commit to neevaco/FasterTransformer that referenced this pull request Jul 11, 2023
* Update beam_search_topk_kernels.cu

fix: fix bug of beam search

* fix: change int of some kernels to int64_t to prevent overflow

* fix: gpt tensor shapes inconsistency (NVIDIA#505)

Signed-off-by: AkiyamaYummy <[email protected]>

* Update gpt_guide.md (NVIDIA#529)

* fix: fix bug of gpt buffer and gpt gemm overflow

* Update T5DecodingWeight.cc

fix: fix loading bug of t5

* [Enhancement]add pytorch backend support for gptneox (NVIDIA#550)

* add pytorch backend support for gptneox

Signed-off-by: AkiyamaYummy <[email protected]>

* fix early stopping invalid

* 1) Some unused parameters and logic have been removed. 2) Revisions that would affect pipeline parallelism have been reverted. 3) The code has been made capable of direct validation on TabbyML/NeoX-1.3B.

Signed-off-by: AkiyamaYummy <[email protected]>

* Change the names of classes, removing 'parallel' from their names

Signed-off-by: AkiyamaYummy <[email protected]>

* Format the code.

Signed-off-by: AkiyamaYummy <[email protected]>

* Only print results when rank is 0.

Signed-off-by: AkiyamaYummy <[email protected]>

* Add dist.init_process_group().

Signed-off-by: AkiyamaYummy <[email protected]>

* update docs

Signed-off-by: AkiyamaYummy <[email protected]>

---------

Signed-off-by: AkiyamaYummy <[email protected]>

* Update cublasMMWrapper.cc

Fix the CUBLAS_VERSION checking of cublasMMWrapper

* Update cublasMMWrapper.cc

* fix overflow in softmax_kernel when process long seqlen and big batch_size (NVIDIA#524)

* Update unfused_attention_kernels.cu

fix bug of softmax kernel

* [Enhancement]create huggingface_gptneox_convert.py (NVIDIA#569)

* create huggingface_gptneox_convert.py

Signed-off-by: AkiyamaYummy <[email protected]>

* adjust HF's multi bin files

Signed-off-by: AkiyamaYummy <[email protected]>

* update gptneox_guide.md

Signed-off-by: AkiyamaYummy <[email protected]>

---------

Signed-off-by: AkiyamaYummy <[email protected]>

* perf(bloom): improve performance of huggingface_bloom_convert.py, decrease the time cost and the mem using (NVIDIA#568)

Co-authored-by: r.yang <[email protected]>

* Fix/gpt early stop (NVIDIA#584)

* fix: fix bug of early stopping of gpt

* [bugfix] Fix 2-shot All Reduce correctness issue (indexing bug). (NVIDIA#672)

FasterTransformer 2-shot all reduce is implemented as a reduce-scatter + all-gather. There is an indexing bug in the all-gather step. Prior to this change, 2-shot all reduce was only producing correct results on device 0. Now, all devices have the correct results.

* fix: swap tensor bug (NVIDIA#683)

* Support size_per_head=112 (NVIDIA#660)

* fix multi-gpu build

* add support for size_per_head=112 for gpt decoder

* remove mpi_cxx from multi-gpu build for now (NVIDIA#705)

---------

Signed-off-by: AkiyamaYummy <[email protected]>
Co-authored-by: byshiue <[email protected]>
Co-authored-by: _yummy_ <[email protected]>
Co-authored-by: Ying Sheng <[email protected]>
Co-authored-by: zhangxin81 <[email protected]>
Co-authored-by: 杨睿 <[email protected]>
Co-authored-by: r.yang <[email protected]>
Co-authored-by: Rahul Kindi <[email protected]>
Co-authored-by: Perkz Zheng <[email protected]>
Co-authored-by: Daya Khudia <[email protected]>
Co-authored-by: Dean Wyatte <[email protected]>
azahed98 pushed a commit to togethercomputer/FasterTransformer that referenced this pull request Jul 20, 2023
* fix multi-gpu build

* add support for size_per_head=112 for gpt decoder
sfc-gh-zhwang added a commit to neevaco/FasterTransformer that referenced this pull request Oct 5, 2023
* Merge with main (#1)

* Update beam_search_topk_kernels.cu

fix: fix bug of beam search

* fix: change int of some kernels to int64_t to prevent overflow

* fix: gpt tensor shapes inconsistency (NVIDIA#505)

Signed-off-by: AkiyamaYummy <[email protected]>

* Update gpt_guide.md (NVIDIA#529)

* fix: fix bug of gpt buffer and gpt gemm overflow

* Update T5DecodingWeight.cc

fix: fix loading bug of t5

* [Enhancement]add pytorch backend support for gptneox (NVIDIA#550)

* add pytorch backend support for gptneox

Signed-off-by: AkiyamaYummy <[email protected]>

* fix early stopping invalid

* 1) Some unused parameters and logic have been removed. 2) Revisions that would affect pipeline parallelism have been reverted. 3) The code has been made capable of direct validation on TabbyML/NeoX-1.3B.

Signed-off-by: AkiyamaYummy <[email protected]>

* Change the names of classes, removing 'parallel' from their names

Signed-off-by: AkiyamaYummy <[email protected]>

* Format the code.

Signed-off-by: AkiyamaYummy <[email protected]>

* Only print results when rank is 0.

Signed-off-by: AkiyamaYummy <[email protected]>

* Add dist.init_process_group().

Signed-off-by: AkiyamaYummy <[email protected]>

* update docs

Signed-off-by: AkiyamaYummy <[email protected]>

---------

Signed-off-by: AkiyamaYummy <[email protected]>

* Update cublasMMWrapper.cc

Fix the CUBLAS_VERSION checking of cublasMMWrapper

* Update cublasMMWrapper.cc

* fix overflow in softmax_kernel when process long seqlen and big batch_size (NVIDIA#524)

* Update unfused_attention_kernels.cu

fix bug of softmax kernel

* [Enhancement]create huggingface_gptneox_convert.py (NVIDIA#569)

* create huggingface_gptneox_convert.py

Signed-off-by: AkiyamaYummy <[email protected]>

* adjust HF's multi bin files

Signed-off-by: AkiyamaYummy <[email protected]>

* update gptneox_guide.md

Signed-off-by: AkiyamaYummy <[email protected]>

---------

Signed-off-by: AkiyamaYummy <[email protected]>

* perf(bloom): improve performance of huggingface_bloom_convert.py, decrease the time cost and the mem using (NVIDIA#568)

Co-authored-by: r.yang <[email protected]>

* Fix/gpt early stop (NVIDIA#584)

* fix: fix bug of early stopping of gpt

* [bugfix] Fix 2-shot All Reduce correctness issue (indexing bug). (NVIDIA#672)

FasterTransformer 2-shot all reduce is implemented as a reduce-scatter + all-gather. There is an indexing bug in the all-gather step. Prior to this change, 2-shot all reduce was only producing correct results on device 0. Now, all devices have the correct results.

* fix: swap tensor bug (NVIDIA#683)

* Support size_per_head=112 (NVIDIA#660)

* fix multi-gpu build

* add support for size_per_head=112 for gpt decoder

* remove mpi_cxx from multi-gpu build for now (NVIDIA#705)

---------

Signed-off-by: AkiyamaYummy <[email protected]>
Co-authored-by: byshiue <[email protected]>
Co-authored-by: _yummy_ <[email protected]>
Co-authored-by: Ying Sheng <[email protected]>
Co-authored-by: zhangxin81 <[email protected]>
Co-authored-by: 杨睿 <[email protected]>
Co-authored-by: r.yang <[email protected]>
Co-authored-by: Rahul Kindi <[email protected]>
Co-authored-by: Perkz Zheng <[email protected]>
Co-authored-by: Daya Khudia <[email protected]>
Co-authored-by: Dean Wyatte <[email protected]>

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

* commit

---------

Signed-off-by: AkiyamaYummy <[email protected]>
Co-authored-by: Asim Shankar <[email protected]>
Co-authored-by: byshiue <[email protected]>
Co-authored-by: _yummy_ <[email protected]>
Co-authored-by: Ying Sheng <[email protected]>
Co-authored-by: zhangxin81 <[email protected]>
Co-authored-by: 杨睿 <[email protected]>
Co-authored-by: r.yang <[email protected]>
Co-authored-by: Rahul Kindi <[email protected]>
Co-authored-by: Perkz Zheng <[email protected]>
Co-authored-by: Daya Khudia <[email protected]>
Co-authored-by: Dean Wyatte <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants