-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
add print pten kernel tool #39371
Merged
Merged
add print pten kernel tool #39371
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
03306a6
test=document_fix;add print pten kernel tool
shangzhizhou f0b2908
test=document_fix
shangzhizhou 8aa5f32
test=document_fix
shangzhizhou b0bd8fb
test=document_fix
shangzhizhou dbbb851
test=document_fix
shangzhizhou ad961d0
add print_pten_kernels tool
shangzhizhou acc2cdf
add print_pten_kernels tool
shangzhizhou 371c3e8
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
shangzhizhou 81d137a
fix windows complie
shangzhizhou b419b42
notest,test=rocm_ci
shangzhizhou 8db6008
add merge tool
shangzhizhou 400c94e
add comments
shangzhizhou File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
add_executable(print_pten_kernels print_pten_kernels.cc) | ||
target_link_libraries(print_pten_kernels pten pten_api_utils) | ||
if(WIN32) | ||
target_link_libraries(print_pten_kernels shlwapi.lib) | ||
endif() | ||
if(WITH_ROCM) | ||
target_link_libraries(print_pten_kernels ${ROCM_HIPRTC_LIB}) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// 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 <iostream> | ||
#include <string> | ||
|
||
#include "paddle/pten/core/kernel_factory.h" | ||
#include "paddle/pten/core/kernel_registry.h" | ||
#include "paddle/pten/kernels/declarations.h" | ||
|
||
int main(int argc, char** argv) { | ||
std::cout << pten::KernelFactory::Instance() << std::endl; | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# 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. | ||
|
||
#================================================= | ||
# Utils | ||
#================================================= | ||
|
||
set -e | ||
|
||
EXIT_CODE=0; | ||
tmp_dir=`mktemp -d` | ||
|
||
PADDLE_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}")/../../" && pwd )" | ||
|
||
unset GREP_OPTIONS && find ${PADDLE_ROOT}/paddle/pten/kernels -name "*.c*" | xargs sed -e '/PT_REGISTER_\(GENERAL_\)\?KERNEL(/,/)/!d' | awk 'BEGIN { RS="{" }{ gsub(/\n /,""); print $0 }' | grep PT_REGISTER | awk -F ",|\(" '{gsub(/ /,"");print $2, $3, $4, $5}' | sort -u | awk '{gsub(/pten::/,"");print $0}' | grep -v "_grad" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
#!/bin/python | ||
|
||
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# 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. | ||
|
||
import argparse | ||
import json | ||
import yaml | ||
|
||
|
||
def parse_args(): | ||
parser = argparse.ArgumentParser("gather pten kernel and infermate info") | ||
parser.add_argument( | ||
"--paddle_root_path", | ||
type=str, | ||
required=True, | ||
help="root path of paddle src[WORK_PATH/Paddle] .") | ||
parser.add_argument( | ||
"--kernel_info_file", | ||
type=str, | ||
required=True, | ||
help="kernel info file generated by get_pten_kernel_function.sh .") | ||
args = parser.parse_args() | ||
return args | ||
|
||
|
||
def get_api_yaml_info(file_path): | ||
f = open(file_path + "/python/paddle/utils/code_gen/api.yaml", "r") | ||
cont = f.read() | ||
return yaml.load(cont, Loader=yaml.FullLoader) | ||
|
||
|
||
def get_kernel_info(file_path): | ||
f = open(file_path, "r") | ||
cont = f.readlines() | ||
return [l.strip() for l in cont] | ||
|
||
|
||
def merge(infer_meta_data, kernel_data): | ||
meta_map = {} | ||
for api in infer_meta_data: | ||
if not api.has_key("kernel") or not api.has_key("infer_meta"): | ||
continue | ||
meta_map[api["kernel"]["func"]] = api["infer_meta"]["func"] | ||
full_kernel_data = [] | ||
for l in kernel_data: | ||
key = l.split()[0] | ||
if meta_map.has_key(key): | ||
full_kernel_data.append((l + " " + meta_map[key]).split()) | ||
else: | ||
full_kernel_data.append((l + " unknown").split()) | ||
|
||
return full_kernel_data | ||
|
||
|
||
if __name__ == "__main__": | ||
args = parse_args() | ||
infer_meta_data = get_api_yaml_info(args.paddle_root_path) | ||
kernel_data = get_kernel_info(args.kernel_info_file) | ||
out = merge(infer_meta_data, kernel_data) | ||
print(json.dumps(out)) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
能否在这里注释放一个打印格式示例供参考
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done