-
Notifications
You must be signed in to change notification settings - Fork 43
✨ MQT QDMI Driver #1010
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
base: qdmi-na-device
Are you sure you want to change the base?
✨ MQT QDMI Driver #1010
Conversation
Codecov ReportAttention: Patch coverage is
📢 Thoughts on this report? Let us know! |
Cpp-Linter Report
|
INSTANTIATE_TEST_SUITE_P( | ||
// Custom instantiation name | ||
DefaultDevices, | ||
// Test suite name | ||
DriverTest, | ||
// Parameters to test with | ||
::testing::Values("MQT NA QDMI Default Device"), | ||
[](const testing::TestParamInfo<std::string>& info) { | ||
std::string name = info.param; | ||
std::replace(name.begin(), name.end(), ' ', '_'); | ||
return name; | ||
}); |
Check notice
Code scanning / CodeQL
Unused static variable Note test
Copilot Autofix
AI 2 days ago
Copilot could not generate an autofix suggestion
Copilot could not generate an autofix suggestion for this alert. Try pushing a new commit or if the problem persists contact support.
INSTANTIATE_TEST_SUITE_P( | ||
// Custom instantiation name | ||
DefaultDevices, | ||
// Test suite name | ||
DriverTest, | ||
// Parameters to test with | ||
::testing::Values("MQT NA QDMI Default Device"), | ||
[](const testing::TestParamInfo<std::string>& info) { | ||
std::string name = info.param; | ||
std::replace(name.begin(), name.end(), ' ', '_'); | ||
return name; | ||
}); |
Check notice
Code scanning / CodeQL
Unused static function Note test
gtest_DefaultDevicesDriverTest_dummy_
Static function gtest_DefaultDevicesDriverTest_EvalGenerator_ is unreachable (
gtest_DefaultDevicesDriverTest_dummy_
Copilot Autofix
AI 2 days ago
Copilot could not generate an autofix suggestion
Copilot could not generate an autofix suggestion for this alert. Try pushing a new commit or if the problem persists contact support.
Description
This is the second PR in a series of PRs adding QDMI implementations to MQT. #996 has already implemented a QDMI device. Still missing are QDMI clients and FoMaC making use of the device and the driver that is contained in this PR.
qdmi-na-device
as the base branch. This must be changed before merging and it should be merged tomain
after #996 was merged.Checklist: