-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eb8eed7
commit 92897b2
Showing
2 changed files
with
4 additions
and
10 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,8 +19,7 @@ | |
* Contact: [email protected] | ||
*****************************************************************************/ | ||
|
||
#ifndef INCLUDE_FIRESTARTER_ENVIRONMENT_X86_PLATFORM_SANDYBRIDGEEPCONFIG_H | ||
#define INCLUDE_FIRESTARTER_ENVIRONMENT_X86_PLATFORM_SANDYBRIDGEEPCONFIG_H | ||
#pragma once | ||
|
||
#include "firestarter/Environment/X86/Payload/AVXPayload.hpp" | ||
#include "firestarter/Environment/X86/Platform/X86PlatformConfig.hpp" | ||
|
@@ -38,6 +37,4 @@ class SandyBridgeEPConfig final : public X86PlatformConfig { | |
/*InstructionGroups=*/{{"RAM_L", 3}, {"L3_LS", 2}, {"L2_LS", 10}, {"L1_LS", 90}, {"REG", 30}}), | ||
/*Payload=*/std::make_shared<const payload::AVXPayload>()) {} | ||
}; | ||
} // namespace firestarter::environment::x86::platform | ||
|
||
#endif | ||
} // namespace firestarter::environment::x86::platform |
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 |
---|---|---|
|
@@ -19,8 +19,7 @@ | |
* Contact: [email protected] | ||
*****************************************************************************/ | ||
|
||
#ifndef INCLUDE_FIRESTARTER_ENVIRONMENT_X86_PLATFORM_SKYLAKECONFIG_H | ||
#define INCLUDE_FIRESTARTER_ENVIRONMENT_X86_PLATFORM_SKYLAKECONFIG_H | ||
#pragma once | ||
|
||
#include "firestarter/Environment/X86/Payload/FMAPayload.hpp" | ||
#include "firestarter/Environment/X86/Platform/X86PlatformConfig.hpp" | ||
|
@@ -38,6 +37,4 @@ class SkylakeConfig final : public X86PlatformConfig { | |
{{"RAM_L", 3}, {"L3_LS_256", 5}, {"L2_LS_256", 18}, {"L1_2LS_256", 78}, {"REG", 40}}), | ||
/*Payload=*/std::make_shared<const payload::FMAPayload>()) {} | ||
}; | ||
} // namespace firestarter::environment::x86::platform | ||
|
||
#endif | ||
} // namespace firestarter::environment::x86::platform |