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

[PHI] Move lu_unpack to phi #44674

Merged
merged 33 commits into from
Aug 1, 2022
Merged
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
14b4ba5
Add kernel declarations
Bobholamovic Jul 23, 2022
ff3309b
Copy kernel implementation code
Bobholamovic Jul 23, 2022
f202242
Transfer implementation code
Bobholamovic Jul 23, 2022
0d4f28f
Register new kernels
Bobholamovic Jul 23, 2022
74ddd81
Remove old kernels
Bobholamovic Jul 23, 2022
80021ee
Fix code style
Jul 25, 2022
bcb9b13
Fix bugs
Jul 25, 2022
9ff5f49
mutable_data->HostAlloc
Jul 25, 2022
c7f2836
Transfer infermeta
Bobholamovic Jul 26, 2022
0c55453
Add yaml and update python api
Bobholamovic Jul 26, 2022
4f443f7
Add PADDLE_WITH_HIP check
Bobholamovic Jul 26, 2022
f828e05
Update unittests
Bobholamovic Jul 26, 2022
cb530ae
Add kernel declarations
Bobholamovic Jul 26, 2022
f550428
Copy kernel implementation code
Bobholamovic Jul 26, 2022
2a864f7
Transfer kernel implementation code
Bobholamovic Jul 26, 2022
b9b79a5
Register new kernels
Bobholamovic Jul 26, 2022
6951174
Remove old kernels
Bobholamovic Jul 26, 2022
e5cf67c
Add lu_unpack_sig
Bobholamovic Jul 26, 2022
0a60de1
Fix bugs
Bobholamovic Jul 26, 2022
02d15ca
Fix bugs
Bobholamovic Jul 26, 2022
ee9fef8
Merge remote-tracking branch 'origin/develop' into phi_migrate_lu
Bobholamovic Jul 26, 2022
e17c4ec
Merge branch 'phi_migrate_lu' into phi_migrate_lu_unpack
Bobholamovic Jul 26, 2022
6e65119
Fix bugs
Bobholamovic Jul 27, 2022
4733106
Optimize directory structure
Bobholamovic Jul 27, 2022
fb9cfa5
Add output checks
Bobholamovic Jul 27, 2022
8bc3bf0
Merge branch 'phi_migrate_lu' into phi_migrate_lu_unpack
Bobholamovic Jul 27, 2022
aded5b7
Update include files
Bobholamovic Jul 27, 2022
c57617f
lu_impl.h->lu_kernel_impl.h
Bobholamovic Jul 27, 2022
86f106f
Merge branch 'phi_migrate_lu' into phi_migrate_lu_unpack
Bobholamovic Jul 27, 2022
f9bbba1
Transfer infermeta
Bobholamovic Jul 27, 2022
e514f3c
Add yaml and update python api
Bobholamovic Jul 27, 2022
c5332ec
Merge branch 'develop' into phi_migrate_lu_unpack
Bobholamovic Jul 29, 2022
4200b93
Add check_eager
Bobholamovic Jul 29, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion paddle/fluid/operators/lu_op.cc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. */

#include "paddle/fluid/operators/lu_op.h"
#include "paddle/fluid/framework/infershape_utils.h"
#include "paddle/fluid/framework/op_registry.h"

Expand Down
Loading