mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/11939 Reviewed By: orionr, dzhulgakov Differential Revision: D10004629 Pulled By: Yangqing fbshipit-source-id: ba50a96820d35c7922d81c78c4cbe849c85c251c
17 lines
376 B
C++
17 lines
376 B
C++
#pragma once
|
|
|
|
#include "observers/macros.h"
|
|
#include "observers/net_observer_reporter.h"
|
|
|
|
#include "caffe2/core/common.h"
|
|
|
|
namespace caffe2 {
|
|
|
|
class CAFFE2_OBSERVER_API NetObserverReporterPrint : public NetObserverReporter {
|
|
public:
|
|
static const std::string IDENTIFIER;
|
|
void report(NetBase* net, std::map<std::string, PerformanceInformation>&);
|
|
};
|
|
|
|
} // namespace caffe2
|