Skip to content

Commit

Permalink
use [[maybe_unused]] for fullyMatchConfiguration and createOptimalDes…
Browse files Browse the repository at this point in the history
…criptors to avoid CI compilation issues
  • Loading branch information
alvoron committed Dec 3, 2024
1 parent 6a1af50 commit da56c5e
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ static const MappingNotation aclMatMulMappingNotation {
};

// clang-format on

#ifndef _WIN32
[[maybe_unused]]
#endif
static bool fullyMatchConfiguration(const MemoryDescArgs& currentDescriptors,
const InOutTypes& typeConfig,
const LayoutConfig& layoutConfig,
Expand All @@ -84,6 +86,9 @@ static bool fullyMatchConfiguration(const MemoryDescArgs& currentDescriptors,
return true;
}

#ifndef _WIN32
[[maybe_unused]]
#endif
static MemoryDescArgs createOptimalDescriptors(const MemoryDescArgs& currentDescriptors,
const InOutTypes& typeConfig,
const LayoutConfig& layoutConfig,
Expand Down

0 comments on commit da56c5e

Please sign in to comment.