Skip to content

Commit

Permalink
remove ifndefs
Browse files Browse the repository at this point in the history
  • Loading branch information
marenz2569 committed Nov 21, 2024
1 parent eb8eed7 commit 92897b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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

0 comments on commit 92897b2

Please sign in to comment.