RegisterDispatchDefinitions.ini 455 B

12345678910111213141516171819202122
  1. ${ns_prologue}
  2. // NB: TORCH_LIBRARY_IMPL must be in an anonymous namespace to avoid
  3. // ambiguity with conflicting identifiers that may have been defined in
  4. // at namespace already.
  5. namespace {
  6. ${dispatch_anonymous_definitions}
  7. ${static_init_dispatch_registrations}
  8. } // anonymous namespace
  9. ${deferred_dispatch_registrations}
  10. namespace ${dispatch_namespace} {
  11. ${dispatch_namespaced_definitions}
  12. } // namespace ${dispatch_namespace}
  13. ${ns_epilogue}