-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
【Sparse】add some kernels(csr*dense->csr, dense*dense->csr) of SparseTensor matmul #42935
Merged
Merged
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
f50e4bd
add some kernel(csr*dense->csr, dense*dense->csr) of SparseTensor matmul
zhwesky2010 7cb2600
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
zhwesky2010 499dac5
fix CI
zhwesky2010 abe4db0
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
zhwesky2010 f61234d
fix CI
zhwesky2010 60857b0
fix comment
zhwesky2010 bcf3bfb
fix comment
zhwesky2010 e964b42
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
zhwesky2010 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
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
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
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,96 @@ | ||
// Copyright (c) 2018 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. | ||
|
||
#pragma once | ||
|
||
#include "paddle/phi/core/dense_tensor.h" | ||
#include "paddle/phi/core/device_context.h" | ||
#include "paddle/phi/core/sparse_coo_tensor.h" | ||
#include "paddle/phi/core/sparse_csr_tensor.h" | ||
|
||
namespace phi { | ||
namespace funcs { | ||
namespace sparse { | ||
|
||
template <typename DeviceContext> | ||
class SparseBlas { | ||
public: | ||
explicit SparseBlas(const DeviceContext& dev_ctx) : dev_ctx_(dev_ctx) {} | ||
|
||
// TODO(zhouwei25): implement "COO @ DENSE -> DENSE" of DSDMM | ||
template <typename T> | ||
void DSDMM(bool transa, | ||
bool transb, | ||
T alpha, | ||
const phi::SparseCooTensor& mat_a, | ||
const phi::DenseTensor& mat_b, | ||
T beta, | ||
phi::DenseTensor* mat_c) const; | ||
|
||
template <typename T> | ||
void DSDMM(bool transa, | ||
bool transb, | ||
T alpha, | ||
const phi::SparseCsrTensor& mat_a, | ||
const phi::DenseTensor& mat_b, | ||
T beta, | ||
phi::DenseTensor* mat_c) const; | ||
|
||
template <typename T> | ||
void SDDMM(bool transa, | ||
bool transb, | ||
T alpha, | ||
const phi::DenseTensor& mat_a, | ||
const phi::DenseTensor& mat_b, | ||
T beta, | ||
phi::SparseCsrTensor* mat_c) const; | ||
|
||
private: | ||
const DeviceContext& dev_ctx_; | ||
}; | ||
|
||
template <typename DeviceContext, typename T> | ||
class SparseBlasT : private SparseBlas<DeviceContext> { | ||
public: | ||
using SparseBlas<DeviceContext>::SparseBlas; | ||
|
||
template <typename... ARGS> | ||
void DSDMM(ARGS... args) const { | ||
Base()->template DSDMM<T>(args...); | ||
} | ||
|
||
template <typename... ARGS> | ||
void SDDMM(ARGS... args) const { | ||
Base()->template SDDMM<T>(args...); | ||
} | ||
|
||
private: | ||
const SparseBlas<DeviceContext>* Base() const { | ||
return static_cast<const SparseBlas<DeviceContext>*>(this); | ||
} | ||
}; | ||
|
||
template <typename DeviceContext, typename T> | ||
inline SparseBlasT<DeviceContext, T> GetSparseBlas( | ||
const DeviceContext& dev_ctx) { | ||
return SparseBlasT<DeviceContext, T>(dev_ctx); | ||
} | ||
|
||
} // namespace sparse | ||
} // namespace funcs | ||
} // namespace phi | ||
|
||
#if defined(PADDLE_WITH_CUDA) && CUDA_VERSION >= 11000 | ||
#include "paddle/phi/kernels/funcs/sparse/sparse_blas_impl.cu.h" | ||
#endif |
Oops, something went wrong.
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.
2018->2022
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, thx