Home / Class/ StreamTimerNoSync Class — pytorch Architecture

StreamTimerNoSync Class — pytorch Architecture

Architecture documentation for the StreamTimerNoSync class in StreamTimer.h from the pytorch codebase.

Entity Profile

Source Code

aten/src/ATen/cuda/tunable/StreamTimer.h lines 34–48

class StreamTimerNoSync : public ITimer {
  public:
    StreamTimerNoSync();
    ~StreamTimerNoSync() override;

    void Start() override;

    void End() override;

    float Duration() override;

  private:
    cudaEvent_t start_{};
    cudaEvent_t end_{};
};

Analyze Your Own Codebase

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

Try Supermodel Free