Home / Class/ Indices Class — pytorch Architecture

Indices Class — pytorch Architecture

Architecture documentation for the Indices class in Context.h from the pytorch codebase.

Entity Profile

Source Code

aten/src/ATen/native/vulkan/api/Context.h lines 335–344

template <size_t... Indices, typename... Arguments>
inline void bind(
    DescriptorSet& descriptor_set,
    const std::index_sequence<Indices...>&,
    Arguments&&... arguments) {
  VK_UNUSED const int _[]{
      0,
      (descriptor_set.bind(Indices, std::forward<Arguments>(arguments)), 0)...,
  };
}

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free