-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
RoPE fp16 avx #23772
base: main
Are you sure you want to change the base?
RoPE fp16 avx #23772
Conversation
Signed-off-by: liqunfu <[email protected]>
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.
You can commit the suggested changes from lintrunner.
// | ||
class RoPEShortExecuteTest : public MlasTestFixture<MlasRoPETest> { | ||
template<typename T> | ||
class RoPEShortExecuteTest : public MlasTestFixture<MlasRoPETest<T>> { |
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.
// | |
class RoPEShortExecuteTest : public MlasTestFixture<MlasRoPETest> { | |
template<typename T> | |
class RoPEShortExecuteTest : public MlasTestFixture<MlasRoPETest<T>> { | |
// | |
template <typename T> | |
class RoPEShortExecuteTest : public MlasTestFixture<MlasRoPETest<T>> { |
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Signed-off-by: liqunfu <[email protected]>
Signed-off-by: liqunfu <[email protected]>
//const auto* input_impl = reinterpret_cast<const float*>(input); | ||
//const auto* sin_impl = reinterpret_cast<const float*>(sin_data); | ||
//const auto* cos_impl = reinterpret_cast<const float*>(cos_data); | ||
//auto* output_impl = reinterpret_cast<float*>(output); |
Check notice
Code scanning / CodeQL
Commented-out code Note
Description
Motivation and Context