Skip to content

Conversation

@reyoung
Copy link
Collaborator

@reyoung reyoung commented Sep 9, 2016

  • libpaddle_cuda add wrong -mavx to some cpp files.

* libpaddle_cuda add wrong -mavx to some cpp files.
unittest.list
proto
dist
setup.py
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

also ignore some file generated when compile

@reyoung reyoung mentioned this pull request Sep 9, 2016
@hedaoyuan hedaoyuan merged commit 6a83d37 into PaddlePaddle:master Sep 9, 2016
@reyoung reyoung deleted the fix_lstm_avx_error branch September 12, 2016 06:40
zhhsplendid pushed a commit to zhhsplendid/Paddle that referenced this pull request Sep 25, 2019
qingqing01 pushed a commit to qingqing01/Paddle that referenced this pull request Apr 30, 2020
lijiaqi0612 pushed a commit to lijiaqi0612/Paddle that referenced this pull request Sep 16, 2021
1. fix dynload for cufft on windows;
2. fix unittests.
XiaoguangHu01 pushed a commit that referenced this pull request Sep 18, 2021
* 1. add interface for fft;
2. add data type predicate;
3. fix paddle.roll.

* add fft c2c cufft kernel

* implement argument checking & op calling parts for fft_c2c and fftn_c2c

* add operator and opmaker definitions

* only register float and double for cpu.

* add common code for implementing FFT, add pocketfft as a dependency

* add fft c2c cufft kernel function

* fix bugs in python interface

* add support for c2r, r2c operators, op makers, kernels and kernel functors.

* test and fix bugs

* 1. fft_c2c function: add support for onesided=False;
2. add complex<float>, complex<double> support for concat and flip.

* 1. fft: fix python api bugs;
2. shape_op: add support for complex data types.

* fft c2c cufft kernel done with complie and link

* fix shape_op, add mkl placeholder

* remove mkl

* complete fft c2c in gpu

* 1. implement mkl-based fft, FFTC2CFunctor and common function exec_fft;
2. change the design, add input and output typename as template parameter for all FFTFunctors, update pocketfft-based implementation.

* complete fft c2c on gpu in ND

* complete fft c2c on gpu in ND

* complete fft c2c backward in ND

* fix MKL-based implementation

* Add frame op and CPU/GPU kernels.

* Add frame op forward unittest.

* Add frame op forward unittest.

* Remove axis parameter in FrameFunctor.

* Add frame op grad CPU/GPU kernels and unittest.

* Add frame op grad CPU/GPU kernels and unittest.

* Update doc string.

* Update after review and remove librosa requirement in unittest.

* Update grad kernel.

* add fft_c2r op

* Remove data allocation in TransCompute function.

* add fft r2c onesided with cpu(pocketfft/mkl) and gpu

* last fft c2r functor

* fix C2R and R2C for cufft, becase the direction is not an option in these cases.

* add fft r2c onesided with cpu(pocketfft/mkl) and gpu

* fix bugs in python APIs

* fix fft_c2r grad kernal

* fix bugs in python APIs

* add cuda fft c2r grad kernal functor

* clean code

* fix fft_c2r python API

* fill fft r2c result with conjugate symmetry (#19)

fill fft r2c result with conjugate symmetry

* add placeholder for unittests (#24)

* simple parameterize test function by auto generate test case from parm list (#25)

* miscellaneous fixes for python APIs (#26)

* add placeholder for unittests

* resize fft inputs before computation is n or s is provided.

* add complex kernels for pad and pad_grad

* simplify argument checking.

* add type promotion

* add int to float or complex promotion

* fix output data type for static mode

* fix fft's input dtype dispatch, import fft to paddle

* fix typos in axes checking (#27)

* fix typos in axes checking

* fix argument checking (#28)

* fix argument checking

* Add C2R Python layer normal and abnormal use cases (#29)

* documents and single case

* test c2r case

* New C2R Python layer normal and exception use cases

* complete rfft,rfft2,rfftn,ihfft,ihfft2,ihfftn unittest and doc string (#30)

* Documentation of the common interfaces of c2r and c2c (#31)

* Documentation of the common interfaces of c2r and c2c

* clean c++ code  (#32)

* clean code

* Add numpy-based implementation of spectral ops (#33)

* add numpy reference implementation of spectral ops

* Add fft_c2r numpy based implementation for unittest. (#34)

* add fft_c2r numpy implementation

* Add deframe op and stft/istft api. (#23)

* Add frame api

* Add deframe op and kernels.

* Add stft and istft apis.

* Add deframe api. Update stft and istft apis.

* Fix bug in frame_from_librosa function when input dims >= 3

* Rename deframe to overlap_add.

* Update istft.

* Update after code review.

* Add overlap_add op and stft/istft api unittest (#35)

* Add overlap_add op unittest.

* Register complex kernels of squeeze/unsquuze op.

* Add stft/istft api unittest.

* Add unittest for fft helper functions (#36)

* add unittests for fft helper functions. add complex kernel for roll op.

* complete static graph unittest for all public api (#37)

* Unittest of op with FFT C2C, C2R and r2c added (#38)

* documents and single case

* test c2r case

* New C2R Python layer normal and exception use cases

* Documentation of the common interfaces of c2r and c2c

* Unittest of op with FFT C2C, C2R and r2c added

Co-authored-by: lijiaqi <[email protected]>

* add fft related options to CMakeLists.txt

* fix typos and clean code (#39)

* fix invisible character in mkl branch and fix error in error message

* clean code: remove docstring from unittest for signal.py.

* always convert numpy array to paddle.Tensor to avoid comparing numpy dtype with paddle dtype. (#40)

* always convert numpy array to paddle.Tensor to avoid comparing numpy dtype with paddle dtype.

* fix CI Errors: numpy dtype comparison, thrust when cuda is not available (#41)

1. always convert numpy array to paddle.Tensor to avoid comparing numpy dtype with paddle dtype.
2. promote floating point tensor to complex tensor ior fft_c2c and fft_c2r;
3. fix unittest to catch UnImplementedError and RuntimeError;
4. fix compile error by avoid using thrust when cuda is not available.
5.  fix sample code, use paddle.fft instead of paddle.tensor.fft

* remove inclusion of thrust, add __all__ list for fft (#42)

* Add api doc and update unittest. (#43)

* Add doc strings.
* Update overlap_add op unittest

* fix MKL-based FFT implementation (#44)

* fix MKL-based FFT implementation, MKL CDFT's FORWARD DOMAIN is always REAL for R2C and C2R

* remove code for debug (#45)

* use dynload for cufft (#46)

* use std::ptrdiff_t as datatype of stride (instead of int64_t) to avoid argument mismatch on some platforms.

* add complex support for fill_zeros_like

* use dynload for cufft

* Update doc and unittest. (#47)

* Add doc of frame op and overlap_add op.

* Update unittest.

* use dynload for cufft (#48)

1. use dynload for cufft
2. fix unittest;
3. temporarily disable Rocm.

* fix conflicts and merge upstream (#49)

fix conflicts and merge upstream

* fix compile error: only link dyload_cuda when cuda is available (#50)

* fix compile error: only link dyload_cuda when cuda is available

* fix dynload for cufft on windows (#51)

1. fix dynload for cufft on windows;
2. fix unittests.

* add NOMINMAX to compile on windows (#52)

 add NOMINMAX to compile on windows

* explicitly specify capture mode for lambdas (#55)

 explicitly specify capture mode for lambdas

* fix fft sample (#53)

* fix fft sample

* update scipy and numpy version for unittests of fft (#56)

update scipy and numpy version for unittests of fft

* Add static graph unittests of frame and overlap_add api. (#57)

* Remove cache of cuFFT & Disable ONEMKL (#59)

1. replace numpy.fft with scipy.fft as numpy<1.20 not support ortho norm
2. remove cache of cufft plans;
3. enhance error checking.
4. default WITH_ONEMKL to OFF

Co-authored-by: jeff41404 <[email protected]>
Co-authored-by: root <[email protected]>
Co-authored-by: KP <[email protected]>
Co-authored-by: lijiaqi <[email protected]>
Co-authored-by: Xiaoxu Chen <[email protected]>
Co-authored-by: lijiaqi0612 <[email protected]>
AnnaTrainingG pushed a commit to AnnaTrainingG/Paddle that referenced this pull request Sep 29, 2021
* 1. add interface for fft;
2. add data type predicate;
3. fix paddle.roll.

* add fft c2c cufft kernel

* implement argument checking & op calling parts for fft_c2c and fftn_c2c

* add operator and opmaker definitions

* only register float and double for cpu.

* add common code for implementing FFT, add pocketfft as a dependency

* add fft c2c cufft kernel function

* fix bugs in python interface

* add support for c2r, r2c operators, op makers, kernels and kernel functors.

* test and fix bugs

* 1. fft_c2c function: add support for onesided=False;
2. add complex<float>, complex<double> support for concat and flip.

* 1. fft: fix python api bugs;
2. shape_op: add support for complex data types.

* fft c2c cufft kernel done with complie and link

* fix shape_op, add mkl placeholder

* remove mkl

* complete fft c2c in gpu

* 1. implement mkl-based fft, FFTC2CFunctor and common function exec_fft;
2. change the design, add input and output typename as template parameter for all FFTFunctors, update pocketfft-based implementation.

* complete fft c2c on gpu in ND

* complete fft c2c on gpu in ND

* complete fft c2c backward in ND

* fix MKL-based implementation

* Add frame op and CPU/GPU kernels.

* Add frame op forward unittest.

* Add frame op forward unittest.

* Remove axis parameter in FrameFunctor.

* Add frame op grad CPU/GPU kernels and unittest.

* Add frame op grad CPU/GPU kernels and unittest.

* Update doc string.

* Update after review and remove librosa requirement in unittest.

* Update grad kernel.

* add fft_c2r op

* Remove data allocation in TransCompute function.

* add fft r2c onesided with cpu(pocketfft/mkl) and gpu

* last fft c2r functor

* fix C2R and R2C for cufft, becase the direction is not an option in these cases.

* add fft r2c onesided with cpu(pocketfft/mkl) and gpu

* fix bugs in python APIs

* fix fft_c2r grad kernal

* fix bugs in python APIs

* add cuda fft c2r grad kernal functor

* clean code

* fix fft_c2r python API

* fill fft r2c result with conjugate symmetry (#19)

fill fft r2c result with conjugate symmetry

* add placeholder for unittests (#24)

* simple parameterize test function by auto generate test case from parm list (#25)

* miscellaneous fixes for python APIs (#26)

* add placeholder for unittests

* resize fft inputs before computation is n or s is provided.

* add complex kernels for pad and pad_grad

* simplify argument checking.

* add type promotion

* add int to float or complex promotion

* fix output data type for static mode

* fix fft's input dtype dispatch, import fft to paddle

* fix typos in axes checking (#27)

* fix typos in axes checking

* fix argument checking (#28)

* fix argument checking

* Add C2R Python layer normal and abnormal use cases (#29)

* documents and single case

* test c2r case

* New C2R Python layer normal and exception use cases

* complete rfft,rfft2,rfftn,ihfft,ihfft2,ihfftn unittest and doc string (PaddlePaddle#30)

* Documentation of the common interfaces of c2r and c2c (PaddlePaddle#31)

* Documentation of the common interfaces of c2r and c2c

* clean c++ code  (PaddlePaddle#32)

* clean code

* Add numpy-based implementation of spectral ops (PaddlePaddle#33)

* add numpy reference implementation of spectral ops

* Add fft_c2r numpy based implementation for unittest. (PaddlePaddle#34)

* add fft_c2r numpy implementation

* Add deframe op and stft/istft api. (#23)

* Add frame api

* Add deframe op and kernels.

* Add stft and istft apis.

* Add deframe api. Update stft and istft apis.

* Fix bug in frame_from_librosa function when input dims >= 3

* Rename deframe to overlap_add.

* Update istft.

* Update after code review.

* Add overlap_add op and stft/istft api unittest (PaddlePaddle#35)

* Add overlap_add op unittest.

* Register complex kernels of squeeze/unsquuze op.

* Add stft/istft api unittest.

* Add unittest for fft helper functions (PaddlePaddle#36)

* add unittests for fft helper functions. add complex kernel for roll op.

* complete static graph unittest for all public api (PaddlePaddle#37)

* Unittest of op with FFT C2C, C2R and r2c added (PaddlePaddle#38)

* documents and single case

* test c2r case

* New C2R Python layer normal and exception use cases

* Documentation of the common interfaces of c2r and c2c

* Unittest of op with FFT C2C, C2R and r2c added

Co-authored-by: lijiaqi <[email protected]>

* add fft related options to CMakeLists.txt

* fix typos and clean code (PaddlePaddle#39)

* fix invisible character in mkl branch and fix error in error message

* clean code: remove docstring from unittest for signal.py.

* always convert numpy array to paddle.Tensor to avoid comparing numpy dtype with paddle dtype. (PaddlePaddle#40)

* always convert numpy array to paddle.Tensor to avoid comparing numpy dtype with paddle dtype.

* fix CI Errors: numpy dtype comparison, thrust when cuda is not available (PaddlePaddle#41)

1. always convert numpy array to paddle.Tensor to avoid comparing numpy dtype with paddle dtype.
2. promote floating point tensor to complex tensor ior fft_c2c and fft_c2r;
3. fix unittest to catch UnImplementedError and RuntimeError;
4. fix compile error by avoid using thrust when cuda is not available.
5.  fix sample code, use paddle.fft instead of paddle.tensor.fft

* remove inclusion of thrust, add __all__ list for fft (PaddlePaddle#42)

* Add api doc and update unittest. (PaddlePaddle#43)

* Add doc strings.
* Update overlap_add op unittest

* fix MKL-based FFT implementation (PaddlePaddle#44)

* fix MKL-based FFT implementation, MKL CDFT's FORWARD DOMAIN is always REAL for R2C and C2R

* remove code for debug (PaddlePaddle#45)

* use dynload for cufft (PaddlePaddle#46)

* use std::ptrdiff_t as datatype of stride (instead of int64_t) to avoid argument mismatch on some platforms.

* add complex support for fill_zeros_like

* use dynload for cufft

* Update doc and unittest. (PaddlePaddle#47)

* Add doc of frame op and overlap_add op.

* Update unittest.

* use dynload for cufft (PaddlePaddle#48)

1. use dynload for cufft
2. fix unittest;
3. temporarily disable Rocm.

* fix conflicts and merge upstream (PaddlePaddle#49)

fix conflicts and merge upstream

* fix compile error: only link dyload_cuda when cuda is available (PaddlePaddle#50)

* fix compile error: only link dyload_cuda when cuda is available

* fix dynload for cufft on windows (PaddlePaddle#51)

1. fix dynload for cufft on windows;
2. fix unittests.

* add NOMINMAX to compile on windows (PaddlePaddle#52)

 add NOMINMAX to compile on windows

* explicitly specify capture mode for lambdas (PaddlePaddle#55)

 explicitly specify capture mode for lambdas

* fix fft sample (PaddlePaddle#53)

* fix fft sample

* update scipy and numpy version for unittests of fft (PaddlePaddle#56)

update scipy and numpy version for unittests of fft

* Add static graph unittests of frame and overlap_add api. (PaddlePaddle#57)

* Remove cache of cuFFT & Disable ONEMKL (PaddlePaddle#59)

1. replace numpy.fft with scipy.fft as numpy<1.20 not support ortho norm
2. remove cache of cufft plans;
3. enhance error checking.
4. default WITH_ONEMKL to OFF

Co-authored-by: jeff41404 <[email protected]>
Co-authored-by: root <[email protected]>
Co-authored-by: KP <[email protected]>
Co-authored-by: lijiaqi <[email protected]>
Co-authored-by: Xiaoxu Chen <[email protected]>
Co-authored-by: lijiaqi0612 <[email protected]>
thisjiang pushed a commit to thisjiang/Paddle that referenced this pull request Oct 28, 2021
gglin001 pushed a commit to graphcore/Paddle-fork that referenced this pull request Dec 8, 2021
* support paddle inference with device management

* add GroupNorm Op

* annotation for multiple outputs

* pre-commit
paddle-bot-old bot pushed a commit that referenced this pull request Feb 21, 2022
zhoutianzi666 pushed a commit to zhoutianzi666/Paddle that referenced this pull request May 23, 2022
jack603047588 referenced this pull request in jack603047588/Paddle Nov 9, 2022
jack603047588 referenced this pull request in jack603047588/Paddle Nov 9, 2022
zmxdream pushed a commit to zmxdream/Paddle that referenced this pull request Oct 10, 2023
add set_index_filelist, add float mask
lizexu123 pushed a commit to lizexu123/Paddle that referenced this pull request Feb 23, 2024
zmxdream pushed a commit to zmxdream/Paddle that referenced this pull request Feb 27, 2024
* update XDNN version 20240125: get fc hit rate

* adam op optimization

---------

Co-authored-by: YeelandX <[email protected]>
hanhaowen-mt pushed a commit to hanhaowen-mt/Paddle that referenced this pull request Feb 29, 2024
Fridge003 pushed a commit to Fridge003/Paddle that referenced this pull request Mar 18, 2024
WAYKEN-TSE pushed a commit to WAYKEN-TSE/Paddle that referenced this pull request Dec 6, 2024
[PPDiffusers] Release PPDiffusers v0.16.3
fsylmxx pushed a commit to fsylmxx/Paddle that referenced this pull request Nov 25, 2025
* [fix] fix fail test when backend is mack

* [metax]change_cupti_and_fix_softmax (#7)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* [Metax] fix dgc & mklml compile product path problem (#8)

* [Metax] fix accuracy kernel & add test_accuracy_op_metax.py unit test (#9)

* [Metax] fix dgc & mklml compile product path problem

* [Metax] fix accuracy kernel & add test_accuracy_op_metax.py unit test

* [Metax] add mixed_vector fix & update change patch

* [Metax] update metax_gpu CMakeLists.txt (#10)

* [Metax] fix dgc & mklml compile product path problem

* [Metax] fix accuracy kernel & add test_accuracy_op_metax.py unit test

* [Metax] add mixed_vector fix & update change patch

* [Metax] update metax_gpu CMakeLists.txt

* [metax] updata_qr_kernel (#11)

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

* [metax] updata_qr_kernel

* [metax] updata_qr_kernel

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* [Metax] fix illegal address access error in test_momentum_op (#12)

* [Metax] fix illegal address access error in test_momentum_op

* [Metax] fix cufft and fix some blas kernel apply (#13)

* [Metax] fix cufft and fix some blas kernel apply

* [metax] add warpctc_warprnn (#14)

* [metax] fix bug

* [Metax] update metax CI (#15)

* [Metax] update metax CI

* [Metax] update metax CI CMakeLists (#16)



* [Metax] update metax CI

* [Metax] update metax CI CMakeLists

* [Metax] add github action (#18)

* [Metax] add github action

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* [metax] chang build (#19)



* [metax]chaneg build

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* change_build (#20)


* [metax]chaneg build

---------

* change_build (#21)

* change_build (#22)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

* [metax] updata_qr_kernel

* [metax] updata_qr_kernel

* [Metax] fix cufft and fix some blas kernel apply

* [metax] fix bug

* [Metax] add github action

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* 【metax】modify cmake for warpctc and warprnnt (#17)

* modify cmake for warpctc and warprnnt

* modify conv for tf32 and fp32

* modify conv kernel

* [metax]modify library to static library (#24)

* modify cmake for warpctc and warprnnt

* modify conv for tf32 and fp32

* modify conv kernel

* modify library to static library

* [Metax] organize documents (#25)

* [Metax] fix dgc & mklml compile product path problem

* [Metax] update metax_gpu CMakeLists.txt

* [Metax] organize documents

* [metax]fix_code style and index_elementwise_put_kernel (#27)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

* [metax] updata_qr_kernel

* [metax] updata_qr_kernel

* [Metax] fix cufft and fix some blas kernel apply

* [metax] fix bug

* [Metax] add github action

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]fix_code style and index_elementwise_put_kernel

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* change_build_917 (#29)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

* [metax] updata_qr_kernel

* [metax] updata_qr_kernel

* [Metax] fix cufft and fix some blas kernel apply

* [metax] fix bug

* [Metax] add github action

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]fix_code style and index_elementwise_put_kernel

* [metax]change_build

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* chang_build (#30)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

* [metax] updata_qr_kernel

* [metax] updata_qr_kernel

* [Metax] fix cufft and fix some blas kernel apply

* [metax] fix bug

* [Metax] add github action

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]fix_code style and index_elementwise_put_kernel

* [metax]change_build

* [metax]change_build

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* [metax]modify kernel (#31)

* modify cmake for warpctc and warprnnt

* modify conv for tf32 and fp32

* modify conv kernel

* modify library to static library

* modify kernel

* change_metax_work (#32)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

* [metax] updata_qr_kernel

* [metax] updata_qr_kernel

* [Metax] fix cufft and fix some blas kernel apply

* [metax] fix bug

* [Metax] add github action

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]fix_code style and index_elementwise_put_kernel

* [metax]change_build

* [metax]change_build

* change_metax_work

* change_metax_work

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* change_build (#33)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

* [metax] updata_qr_kernel

* [metax] updata_qr_kernel

* [Metax] fix cufft and fix some blas kernel apply

* [metax] fix bug

* [Metax] add github action

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]fix_code style and index_elementwise_put_kernel

* [metax]change_build

* [metax]change_build

* change_metax_work

* change_metax_work

* change_metax_work

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* [metax] modify fused_bias_dropout_residual_layer_norm (#34)

* modify cmake for warpctc and warprnnt

* modify conv for tf32 and fp32

* modify conv kernel

* modify library to static library

* modify kernel

* modify fused_bias_dropout_residual_layer_norm

* change_build (#35)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

* [metax] updata_qr_kernel

* [metax] updata_qr_kernel

* [Metax] fix cufft and fix some blas kernel apply

* [metax] fix bug

* [Metax] add github action

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]fix_code style and index_elementwise_put_kernel

* [metax]change_build

* [metax]change_build

* change_metax_work

* change_metax_work

* change_metax_work

* change_metax_work

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* change_build (#36)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

* [metax] updata_qr_kernel

* [metax] updata_qr_kernel

* [Metax] fix cufft and fix some blas kernel apply

* [metax] fix bug

* [Metax] add github action

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]fix_code style and index_elementwise_put_kernel

* [metax]change_build

* [metax]change_build

* change_metax_work

* change_metax_work

* change_metax_work

* change_metax_work

* change_metax_work

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* change_warpctc.cmake (#38)

* change_warpctc.cmake

* change_warpctc.cmake (#39)


* change warpctc.cmake

* test (#40)



* test

---------

* test_ut (#41)


* change_run_ut

---------

* tets (#43)


* remove_tets

---------

* test (#44)



* test

---------

* [metax] modify compile (#42)

* modify cmake for warpctc and warprnnt

* modify conv for tf32 and fp32

* modify conv kernel

* modify library to static library

* modify kernel

* modify fused_bias_dropout_residual_layer_norm

* modify compile

* modify blas

* [Metax] add log analysis script (#46)

* [Metax] fix dgc & mklml compile product path problem

* [Metax] update metax_gpu CMakeLists.txt

* [Metax] organize documents

* [Metax] add log analysis script

* add_generate_pb (#47)


* add_generate_pb

---------

* modify blas (#51)

* modify cmake for warpctc and warprnnt

* modify conv for tf32 and fp32

* modify conv kernel

* modify library to static library

* modify kernel

* modify fused_bias_dropout_residual_layer_norm

* modify compile

* modify blas

* modify blas

* modify blas

* modify blas

* [metax] modify tf32 (#52)

* modify cmake for warpctc and warprnnt

* modify conv for tf32 and fp32

* modify conv kernel

* modify library to static library

* modify kernel

* modify fused_bias_dropout_residual_layer_norm

* modify compile

* modify blas

* modify blas

* modify blas

* modify blas

* modify context

* [Metax] update metax backend CI test (#53)

* [Metax] fix dgc & mklml compile product path problem

* [Metax] update metax_gpu CMakeLists.txt

* [Metax] organize documents

* [Metax] add log analysis script

* [Metax] update metax backend CI test

* [Metax] fix log_analysis.py bug (#54)

* [Metax] fix dgc & mklml compile product path problem

* [Metax] update metax_gpu CMakeLists.txt

* [Metax] organize documents

* [Metax] add log analysis script

* [Metax] update metax backend CI test

* [Metax] fix log_analysis.py bug

* [Metax] update metax CI CMakeLists & scripts (#56)

* [Metax] fix dgc & mklml compile product path problem

* [Metax] update metax_gpu CMakeLists.txt

* [Metax] organize documents

* [Metax] add log analysis script

* [Metax] update metax backend CI test

* [Metax] fix log_analysis.py bug

* [Metax] update metax CI CMakeLists & scripts

* [Metax] fix MatmulKernel problem (#57)

* [Metax] fix dgc & mklml compile product path problem

* [Metax] update metax_gpu CMakeLists.txt

* [Metax] organize documents

* [Metax] add log analysis script

* [Metax] update metax backend CI test

* [Metax] fix log_analysis.py bug

* [Metax] update metax CI CMakeLists & scripts

* [Metax] fix MatmulKernel problem

* [Metax] update metax CI program

* [metax]fix paddle bug" (#58)


* [metax]fix paddle bug

* change—ut (#59)

* change_ut

* change_ut (#60)


* change_ut

---------

* change_ut (#63)



* change_ut

* change_ut

---------

* [Metax] add keyword filter in CI CMakeLists.txt (#64)

* [Metax] add keyword filter in CI CMakeLists.txt

* [Metax] add ignore case list

* [metax] modify kernels (#67)

* modify cmake for warpctc and warprnnt

* modify conv for tf32 and fp32

* modify conv kernel

* modify library to static library

* modify kernel

* modify fused_bias_dropout_residual_layer_norm

* modify compile

* modify blas

* modify blas

* modify blas

* modify blas

* modify context

* modify kernels

* Fix part of the missing kernel issues (#66)

Co-authored-by: root <[email protected]>

* [Metax] fix index_elementwise_get kernel (#68)

* [Metax] add keyword filter in CI CMakeLists.txt

* [Metax] add ignore case list

* [Metax] fix phi::backends::gpu::DnnVersion() symbol not found

* Revert "[Metax] fix phi::backends::gpu::DnnVersion() symbol not found"

This reverts commit 087a9c1240f024210d536e543a2fc55db1175529.

* [Metax] fix index_elementwise_get kernel

* [metax]fix patch and fix missing kernel (#72)


* [metax]fix patch and fix missing kernel

* [metax] modify kernels (#73)



* modify kernels

* [metax] modify kernels (#74)



* modify kernels

* [metax] link mccl and fix missing kernel (#76)

* [metax] link mccl and fix missing kernel

* [metax] rename yaml file (#77)



* [metax]fix patch and fix missing kernel

* [metax] link mccl and fix missing kernel

* [metax] rename yaml file

---------

* [metax] rm file (#78)


* [metax]fix patch and fix missing kernel

* [metax] link mccl and fix missing kernel

* [metax] rename yaml file

* [metax] rm file

* [metax] rm file

---------

* metax_fix_ci (#79)


* [metax] add Rules

---------

* [metax] add print tensor (#91)

* modify cmake for warpctc and warprnnt

* modify conv for tf32 and fp32

* modify conv kernel

* modify library to static library

* modify kernel

* modify fused_bias_dropout_residual_layer_norm

* modify compile

* modify blas

* modify blas

* modify blas

* modify blas

* modify context

* modify kernels

* modify kernels

* modify kernels

* add print tensor

* [Metax] change_patch (#94)


* [metax] change_patch

---------

* update paddle (#95)



* update paddle

---------

* [metax] fix dot error (#96)


* [metax] fix dot error

---------

* Update metax_work.yaml

* [metax]rm opt path and fix activation_kernel bug (#98)


* [metax]rm opt path and fix activation_kernel bug

---------

* updata_paddle (#99)


* updata paddle

---------

* [Metax] Fix some tests (#102)



* fix some tests

* [metax] support wint4 in quantize (#103)

* updata_metax (#104)


* test

* test

---------

* updata_metax (#105)



* chang_meatx_yaml

* chang_meatx_yaml

* updata_metax

* test

* test

* test

* test

---------

* add one test to metax (#107)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* fix some tests

* add one test

---------

Co-authored-by: sw <[email protected]>
Co-authored-by: duqimeng <[email protected]>
Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>

* uodata_metax (#106)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

* [metax] updata_qr_kernel

* [metax] updata_qr_kernel

* [Metax] fix cufft and fix some blas kernel apply

* [metax] fix bug

* [Metax] add github action

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]fix_code style and index_elementwise_put_kernel

* [metax]change_build

* [metax]change_build

* change_metax_work

* change_metax_work

* change_metax_work

* change_metax_work

* change_metax_work

* change_warpctc.cmake

* change warpctc.cmake

* test

* change_run_ut

* remove_tets

* test

* add_generate_pb

* [metax]fix paddle bug

* change_ut

* change_ut

* change_ut

* [metax]fix patch and fix missing kernel

* [metax] link mccl and fix missing kernel

* [metax] rename yaml file

* [metax] rm file

* [metax] rm file

* [metax] add Rules

* [metax] change_patch

* update paddle

* [metax] fix dot error

* [metax]rm opt path and fix activation_kernel bug

* updata paddle

* chang_meatx_yaml

* chang_meatx_yaml

* updata_metax

* test

* test

* test

* test

* test

* test

* test

* test

* test

* test

* test

* test

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* updata eigen_and fix_bug (#109)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

* [metax] updata_qr_kernel

* [metax] updata_qr_kernel

* [Metax] fix cufft and fix some blas kernel apply

* [metax] fix bug

* [Metax] add github action

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]fix_code style and index_elementwise_put_kernel

* [metax]change_build

* [metax]change_build

* change_metax_work

* change_metax_work

* change_metax_work

* change_metax_work

* change_metax_work

* change_warpctc.cmake

* change warpctc.cmake

* test

* change_run_ut

* remove_tets

* test

* add_generate_pb

* [metax]fix paddle bug

* change_ut

* change_ut

* change_ut

* [metax]fix patch and fix missing kernel

* [metax] link mccl and fix missing kernel

* [metax] rename yaml file

* [metax] rm file

* [metax] rm file

* [metax] add Rules

* [metax] change_patch

* update paddle

* [metax] fix dot error

* [metax]rm opt path and fix activation_kernel bug

* updata paddle

* chang_meatx_yaml

* chang_meatx_yaml

* updata_metax

* test

* test

* test

* test

* test

* test

* test

* test

* test

* test

* test

* test

* updata_enigen

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* updata paddle (#110)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

* [metax] updata_qr_kernel

* [metax] updata_qr_kernel

* [Metax] fix cufft and fix some blas kernel apply

* [metax] fix bug

* [Metax] add github action

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]fix_code style and index_elementwise_put_kernel

* [metax]change_build

* [metax]change_build

* change_metax_work

* change_metax_work

* change_metax_work

* change_metax_work

* change_metax_work

* change_warpctc.cmake

* change warpctc.cmake

* test

* change_run_ut

* remove_tets

* test

* add_generate_pb

* [metax]fix paddle bug

* change_ut

* change_ut

* change_ut

* [metax]fix patch and fix missing kernel

* [metax] link mccl and fix missing kernel

* [metax] rename yaml file

* [metax] rm file

* [metax] rm file

* [metax] add Rules

* [metax] change_patch

* update paddle

* [metax] fix dot error

* [metax]rm opt path and fix activation_kernel bug

* updata paddle

* chang_meatx_yaml

* chang_meatx_yaml

* updata_metax

* test

* test

* test

* test

* test

* test

* test

* test

* test

* test

* test

* test

* updata_enigen

* updata_paddle

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>

* test

* [metax] modify kernels (#117)

* modify kernels

* modify kernels

* fix activation_grad kernel (#118)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* fix some tests

* add one test

* fix one kernel

---------

Co-authored-by: sw <[email protected]>
Co-authored-by: duqimeng <[email protected]>
Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>

* updata flag_and_fix_activation



* updata flag_and_fix_activation

* updataignore

---------

* updata_patch (#120)

* updata_patch

---------

* Update Paddle submodule to latest develop (#121)

Co-authored-by: tianshuo78520a <[email protected]>

* [metax] modify kernels (#122)


* modify kernels

* [Metax] fix weight_quant & weight_only_linear bug (#125)

* [Metax] fix weight_quant & weight_only_linear bug

* fix and add some kernels (#126)

* fix and add some kernels

* [Metax] fix 'WeightQuantizeKernel' wint4 branch (#133)

* [Metax] fix 'WeightQuantizeKernel' wint4 branch

* [Metax] add quanted weight layout transformation using CPU programming (#135)

* [Metax] adjust quanted weight layout transformation

* [Metax] add quanted weight layout transformation using GPU programming (#136)


* [Metax] add quanted weight layout transformation using GPU programming

* [Metax] updata_softmax (#138)



* updata_softmax

* udata patch (#139)


* updata_patch

---------

* [Metax] optimize wint4 quantization implementation (#140)



* [Metax] optimize wint4 quantization implementation

* change_flag (#141)



* change_flag

* [Metax] register fused_fc_elementwise_layernorm kernel (#143)



* [Metax] register fused_fc_elementwise_layernorm kernel

* updata paddle

* [Metax] add private CI (#144)

* [Metax] add private CI

* [Metax] add Upload (#145)

* [Metax] add Upload

* test (#154)

* ReRun CI (#150)

* [metax]fix collect_fpn_proposals (#157)

* [Metax_change_ut]

* fix sum&collect_fpn_proposals op register

* modify profile

* [Metax] fix paddle bug replace 'MoeGradDispatchKernel' to 'MoeGateDispatchKernel'

* [Metax] register bce_loss_grad & bce_loss & index_add_grad kernels

* [Metax] con2d_grad use gpudnn

* blas handle support

* [Metax] register some kernels & update CMakeLists

* [Metax] fix metax unittest fail

* [Metax] add group_norm & label_smooth kernel and update matmul kernel

* [Metax] fix rmsprop kernel register and add meshgrid & meshgrid_grad kernel register

* add test

* add test

* [test]  chang the logic of workspace_host in cholesky_kernel_register

alloc(cpuplace,size), test pass
alloc(cpuplace, size, stream), crash

* [Metax] fix compile fail

* Revert "[Metax] fix compile fail"

This reverts commit 83bc87f686227962b0262e044225c6ed5507b824.

* [Metax] fix compile fail by 'conv_transpose_grad_kernel_impl.h'

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] con2d_grad use gpudnn

* [Metax]fix bug and add qr lstsq logsoftmax

* [Metax] change_patch

* [Metax] update unit test CMakeLists.txt

* [Metax] update unit test CMakeLists.txt

* [feature] add unique_consecutive kernel

* [metax] add some kernel

* [metax] add some kernel

* [Metax] register baddbmm kernel & update blas api

* [Metax] register baddbmm kernel & update blas api

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [feature]  add add unique_consecutive kernel.cu

* [fix] fix some test case due to missing op register

* [fix]  fix some fail text

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax]fix lu eigvalshsqueeze rnn kernel

* add and fix some kernels

* [Metax] register deformable_conv kernel & fix 'ModulatedDeformableCol2imCoord' symbol undefined

* [Metax] fix conflict

* [Metax] adapt to paddle-cpu-20250901 & resolve the issue of 'test_elementwise_mul_op_metax' failure

* [Metax] update repeat_interleave kernel & ignore max op test

* [metax]fix lu eigvalshsqueeze rnn kernel

* [metax] chang patch fix copy

* [metax] chang patch fix copy

* [Metax] update metax_gpu unit test

* [Metax] fix test CMakeList.txt

* [metax]change_cupti_and_fix_softmax

* [metax]change_patch

* [metax]change_patch

* [metax] updata_qr_kernel

* [metax] updata_qr_kernel

* [Metax] fix cufft and fix some blas kernel apply

* [metax] fix bug

* [Metax] add github action

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]chaneg build

* [metax]fix_code style and index_elementwise_put_kernel

* [metax]change_build

* [metax]change_build

* change_metax_work

* change_metax_work

* change_metax_work

* change_metax_work

* change_metax_work

* change_warpctc.cmake

* change warpctc.cmake

* test

* change_run_ut

* remove_tets

* test

* add_generate_pb

* [metax]fix paddle bug

* change_ut

* change_ut

* change_ut

* [metax]fix patch and fix missing kernel

* [metax] link mccl and fix missing kernel

* [metax] rename yaml file

* [metax] rm file

* [metax] rm file

* [metax] add Rules

* [metax] change_patch

* update paddle

* [metax] fix dot error

* [metax]rm opt path and fix activation_kernel bug

* updata paddle

* chang_meatx_yaml

* chang_meatx_yaml

* updata_metax

* test

* test

* test

* test

* test

* test

* test

* test

* test

* test

* test

* test

* updata_enigen

* updata_paddle

* test

* updata ignore

* updata_ignore

* updata flag_and_fix_activation

* updataignore

* updata_patch

* feat: add gammaln_grad_kernel.cu

* updata_softmax

* updata_patch

* change_flag

* [metax] add private CI

* [metax] add private CI

* [metax] add private CI

* [Metax] add private CI

* [Metax] add private CI

* [Metax] add private CI

* [Metax] add private CI

* [Metax] add private CI

* [Metax] add private CI

* [Metax] add Upload

* chang yaml

* chang ut

* updata_paddle

* [metax] add schedule

* test

* [metax]fix collect_fpn_proposals

---------

Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: metax666 <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: chezhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>
Co-authored-by: root <[email protected]>

* [Metax]Update version information (#158)

* [Metax] update env (#163)

* [metax] Timed trigger (#164)

* 【Metax】update (#165)

* [Metax] fix version (#166)

* [Metax] fix nterpolate_grad_kernel (#167)

* [metax]fix version.txt (#169)

* test (#170)

* update yaml (#171)

* [Metax]add parameterized (#172)

* [Metax] Assign data stream to CUDA (#174)

* [Metax] fix CUDA Kernel No.50 (#175)

* [metax] change yaml (#176)

* [metax] Add some tests for CI (#173)

* Change test script to use 8 jobs instead of 16

* 【Metax】fix patch (#178)

* [METAX] Modify CI logic (#179)

* [Metax] fix patch (#180)

* ignore bilinear_interp_v2_op (#181)

* change yaml-yml (#182)

* test (#183)

* rm metax ci (#184)

* updata paddle (#185)

* updata_paddle (#186)

* tets

---------

Co-authored-by: chezhang <[email protected]>
Co-authored-by: duqimeng <[email protected]>
Co-authored-by: Mingkun.Zhang <[email protected]>
Co-authored-by: jiaxinWang-metax <[email protected]>
Co-authored-by: MingkunZhang <[email protected]>
Co-authored-by: zhang-chenyi <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>
Co-authored-by: Theendlessofhell <[email protected]>
Co-authored-by: root <[email protected]>
Co-authored-by: ZhouDuan <[email protected]>
Co-authored-by: sw <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: tianshuo78520a <[email protected]>
Co-authored-by: Yuqiang Ge <[email protected]>
Co-authored-by: metax666 <[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.

2 participants