1. 18 5月, 2023 1 次提交
    • H
      Fused elementwises kernels and ops (#51427) · fb4a6ecf
      Hulek 提交于
      * Fused elementwises kernels and ops
      
      * change fuse pass name
      
      * adjust .pbtxt files
      
      * adjust quantization attributes
      
      * add missing arguments and fix others, review fixed
      
      * simplify fused kernel registration
      
      * fix elementwise unit tests
      
      * reuse one fused elementwise op
      
      * adjust proto
      
      * Add supported datatypes
      
      * Change 'Scale' to 'scale' in tests, change some tests to onednn
      
      * Revert breaking changes
      
      * Fix unit tests
      
      * Delete obsolete test cases
      
      * Delete commented out code
      
      * Fix codestyle
      
      * delete temporary condition
      
      * fix conflicts and delete duplicate fusing
      
      * Fix code after merge
      
      * Move tests to new directory
      
      * fix tests volatility
      
      * Rename test_elementwise_add_onednn_op.py to test_elementwise_add_mkldnn_op.py
      
      * Update CMakeLists.txt add mkldnn op test
      
      ---------
      Co-authored-by: NSilv3S <slawomir.siwek@intel.com>
      fb4a6ecf
  2. 24 4月, 2023 1 次提交
  3. 14 4月, 2023 2 次提交
  4. 06 4月, 2023 1 次提交
    • S
      Remove oneDNN-specific attributes from matmul (#49444) · 4d97b25d
      Sławomir Siwek 提交于
      * replace matmul with matmul_v2 in fuse passes
      
      * Remove fusion logic from matmul
      
      * removing fusion methods
      
      * add proper name
      
      * adjust namespaces
      
      * clean attrs in python tests
      
      * delete checkpoint and restore matmul version
      
      * remove unused code
      
      * matmul and reshape/transpose fuses migrated
      
      * split MatmulOneDNN headers
      
      * fuse activation and eltwise_add
      
      * add fuse_activation
      
      * matmul_transpose_reshape/reshape_transpose_matmul
      
      * matmul + elementwise_add (fused)
      
      * activation temporary modifciation
      
      * restore matmul(v1) version 0
      
      * merge newest develop
      
      * remove depedency from other PR
      
      * revert pbtxt
      
      * remove placeholders from matmul_v2
      
      * add description in OPMaker
      
      * remove matmul_v2_op.h and all depedencies
      
      * remove dims changing in base op
      
      * add possibility to fuse already fused_matmul
      
      * restart broken CI
      
      * Empty-Commit
      
      * revert matmul_utils.h
      
      * codestyle
      
      * adjust imports
      
      * add pbtxt file
      
      * 100% matmul unit tests coverage
      
      * trigger CI with minimal changes to develop
      
      * adjust changes to develop
      
      * add fused_matmul op
      
      * inherit base ops
      
      * add "v2"
      
      * move OPMaker
      
      * Gradually add fused_matmul files
      
      * second batch of fused_matmul changes
      
      * split infershapes of matmul_v2 and fused_matmul
      
      * merge code from other PR
      
      * 2023
      
      * inherit fused_matmul from matmul_v2
      
      * Update paddle/phi/backends/onednn/onednn_reuse.h
      Co-authored-by: NTomasz Socha <tomasz.socha@intel.com>
      
      * Update paddle/phi/kernels/fusion/onednn/fused_matmul_kernel.cc
      Co-authored-by: NTomasz Socha <tomasz.socha@intel.com>
      
      * resolve conflicts
      
      * codestyle
      
      * simplify isgemmlinear
      
      * 2023
      
      * remove import
      
      * reuse methods
      
      * matmul_v2_mkldnn cleanup
      
      * simplify ExecuteMatMulV1Grad
      
      * matmul refactored
      
      * fc
      
      * SetOutMemDescWithLogicalLayoutFusesSupport
      
      * matmul_v2
      
      * alpha support
      
      * group repetetive funcs
      
      * matmul utils
      
      * execute matmul methods
      
      * restore registered kernel names
      
      * split header and impl files
      
      * remove double negatives
      
      * reduce numer of modified files
      
      * adjust ExecuteMatmul
      
      * add scales for ut
      
      * dates
      
      * limit number of modified files
      
      * fluid imports
      
      * remove alpha
      
      * codestyle
      
      ---------
      Co-authored-by: NTomasz Socha <tomasz.socha@intel.com>
      4d97b25d
  5. 04 4月, 2023 2 次提交
    • R
      Improve new executor static build (#51149) · 5bac67d4
      Ruibiao Chen 提交于
      * Improve new executor static build
      
      * Skip GC for static build
      
      * Skip infershape for static build
      
      * Handle read_op
      
      * Add fused_attention to OpsWithFluidKernelNeedMoveToPhi
      
      * Fix argsort typos
      
      * Add sequence_pool to OpsWithFluidKernelNeedMoveToPhi
      
      * Fix skip share lod errors
      
      * Fix errors for adam
      
      * Fix errors for eigvals, memcpy and fake_quantize
      
      * Add static_build.cc
      
      * Add black list
      
      * Fix CI errors
      
      * Fix CI errors
      
      * Fix CI errors
      
      * Fix TensorArray
      
      * Fix TensorArray
      
      * Add update_loss_scaling to OpsNeedSetOutputDtypeWhenRegisterPhiKernel
      
      * Fix copy
      
      * Fix errors
      
      * Fix momentum
      
      * Skip mkldnn
      
      * Fix CI errors
      
      * Fix c_sync_calc_stream_op
      
      * Fix CINN
      
      * Fix while op
      
      * All CI pass, disable FLAGS to merge code, enable it after more tests in future
      
      * Add UTs
      
      * Fix typos
      
      * Fix typos
      
      * Add mkldnn UT
      
      * Remove mkldnn test
      
      * Fix typos
      
      * Fix dist test
      
      * Fix typos
      
      * Fix CI errors
      
      * Fix CI errors
      
      * Add UTs
      
      * Fix typos
      
      * Fix typos
      
      * Add sparse tests
      
      * ToComplexType -> ToComplex
      
      * Add test_matmul_op_static_build to disable_win_inference_test
      5bac67d4
    • L
      remove op.py in fluid (#52248) · 273783b3
      LoneRanger 提交于
      * remove op.py
      
      * [Zero-Dim] change Tensor.numpy() usage to other equivalent usage, avoid hack (#52197)
      
      * [BugFix] fix compute error in fused_dropout_add (#52261)
      
      * fix bg
      
      * add utest
      
      * add utest
      
      * [CodeStyle][UP034] remove (()) cases (#52060)
      
      * add up34
      
      * modify var name in loop
      
      * revert changes in test_slice
      
      * Revert "modify var name in loop"
      
      This reverts commit 6d748e371afb417054ed0c6b36fd11e87959a90d.
      
      * temporarily ignore test_slice.py
      
      * add comment
      
      * empty commit, re-trigger all ci
      
      * fix inc
      
      ---------
      Co-authored-by: NSigureMo <sigure.qaq@gmail.com>
      
      * [AMP OP&Test] add unittest for log_softmax (#52264)
      
      * Fix_Linux_[-Wterminate]warning (#52186)
      
      * [CustomOP Inplace] Automap inplace dtype and shape, prepare for vector<Tensor> output (#52214)
      
      * [CustomOP Inplace] Automap inplace dtype and shape, prepare for vector<Tensor> output
      
      * delete dtype,shape func of multi_inplace op
      
      * [CustomOP Inplace] Automap inplace dtype and shape, support vector<Tensor> output
      
      * [CustomOP Inplace] Auto-generate python API for inplace vector<Tensor> output
      
      * [AMP OP&Test] add float16 optest for reshape_op (#51678)
      
      * [AMP OP&Test] add float16 optest for reshape_op
      
      * add public_python_api
      
      * [AMP OP&Test] Add fp16/bf16 to clip op (#52158)
      
      * add fp16/bf16 to clip op
      
      * fix as reviewed
      
      * update test_clip_op.py
      
      * update test_clip_op.py
      
      * fix bug
      
      * fix code style
      
      * fix bug
      
      * fix bug
      
      ---------
      Co-authored-by: zhouweiwei2014's avatarZhou Wei <1183042833@qq.com>
      Co-authored-by: NShenLiang <1422485404@qq.com>
      Co-authored-by: N张春乔 <83450930+Liyulingyue@users.noreply.github.com>
      Co-authored-by: NSigureMo <sigure.qaq@gmail.com>
      Co-authored-by: NCcc <52520497+juncaipeng@users.noreply.github.com>
      Co-authored-by: NGalaxy1458 <55453380+Galaxy1458@users.noreply.github.com>
      Co-authored-by: NHongyuJia <jiahongyu@baidu.com>
      Co-authored-by: Nzhaoyingli <86812880+zhaoyinglia@users.noreply.github.com>
      Co-authored-by: Nwuyefeilin <30919197+wuyefeilin@users.noreply.github.com>
      273783b3
  6. 31 3月, 2023 1 次提交
    • iSerendipity's avatar
      [Test Mv] move mkldnn unittests to test dir (#51911) · 63865c74
      iSerendipity 提交于
      * move mkldnn unittests to test dir
      
      * add py_test_modules funcs
      
      * move py_test_modules to test/mkldnn
      
      * fix import error
      
      * Revert "move py_test_modules to test/mkldnn"
      
      This reverts commit 0277e0c29c22e5c29b7a3b843103f3d0b711c442.
      
      * fix import error by conflicts
      
      * fix errors
      
      * fix mistake on solving conflicts
      63865c74