xref: /aosp_15_r20/external/executorch/kernels/test/supported_features_definition.ini (revision 523fa7a60841cd1ecfb9cc4201f1ca8b03ed023a)
1// clang-format off
2
3#include <executorch/kernels/test/supported_features.h>
4
5namespace torch::executor::testing {
6SupportedFeatures* SupportedFeatures::get() {
7  static SupportedFeatures instance{
8      $definition_entries
9  };
10  return &instance;
11}
12
13} // namespace torch::executor::testing
14