Skip to content

Commit

Permalink
Fixed clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
AsyaPronina committed Jan 6, 2025
1 parent b6dc8ff commit 86b154d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
20 changes: 13 additions & 7 deletions src/plugins/intel_npu/src/al/include/intel_npu/config/npuw.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,19 @@ namespace intel_npu {
void registerNPUWOptions(OptionsDesc& desc);
void registerNPUWLLMOptions(OptionsDesc& desc);

#define DEFINE_OPT(Name, Type, DefaultValue, PropertyKey, Mode) \
struct Name final : OptionBase<Name, Type> { \
static std::string_view key() { return ov::intel_npu::PropertyKey.name(); } \
\
static Type defaultValue() { return DefaultValue; } \
\
static OptionMode mode() { return OptionMode::Mode; } \
#define DEFINE_OPT(Name, Type, DefaultValue, PropertyKey, Mode) \
struct Name final : OptionBase<Name, Type> { \
static std::string_view key() { \
return ov::intel_npu::PropertyKey.name(); \
} \
\
static Type defaultValue() { \
return DefaultValue; \
} \
\
static OptionMode mode() { \
return OptionMode::Mode; \
} \
};

DEFINE_OPT(NPU_USE_NPUW, bool, false, use_npuw, CompileTime);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,6 @@ namespace llm {
*/
static constexpr ov::Property<bool> enabled{"NPUW_LLM"};


/**
* @brief
* Type: uint32_t.
Expand Down

0 comments on commit 86b154d

Please sign in to comment.