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/17090 clangr codemod Reviewed By: ezyang Differential Revision: D14078550 fbshipit-source-id: 68e6de4298e55ce83039b7806c1a275c4d6593c8
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
#include "caffe2/core/context.h"
|
|
#include "caffe2/core/operator.h"
|
|
|
|
namespace caffe2 {
|
|
namespace {
|
|
|
|
class GetAllBlobNamesOp final : public Operator<CPUContext> {
|
|
public:
|
|
explicit GetAllBlobNamesOp(const OperatorDef& operator_def, Workspace* ws)
|
|
: Operator<CPUContext>(operator_def, ws),
|
|
include_shared_(GetSingleArgument<int>("include_shared", true)),
|
|
ws_(ws) {}
|
|
|
|
bool RunOnDevice() override {
|
|
const auto& blobs = include_shared_ ? ws_->Blobs() : ws_->LocalBlobs();
|
|
auto* out = Output(0, {static_cast<int64_t>(blobs.size())}, at::dtype<std::string>());
|
|
std::copy(
|
|
blobs.begin(), blobs.end(), out->template mutable_data<std::string>());
|
|
return true;
|
|
}
|
|
|
|
private:
|
|
bool include_shared_;
|
|
Workspace* ws_;
|
|
};
|
|
|
|
REGISTER_CPU_OPERATOR(GetAllBlobNames, GetAllBlobNamesOp);
|
|
OPERATOR_SCHEMA(GetAllBlobNames)
|
|
.NumInputs(0)
|
|
.NumOutputs(1)
|
|
.SetDoc(R"DOC(
|
|
Return a 1D tensor of strings containing the names
|
|
of each blob in the active workspace.
|
|
)DOC")
|
|
.Arg(
|
|
"include_shared",
|
|
"(bool, default true) Whether to include blobs "
|
|
"inherited from parent workspaces.")
|
|
.Output(0, "blob_names", "1D tensor of strings containing blob names.");
|
|
SHOULD_NOT_DO_GRADIENT(GetAllBlobNamesOp);
|
|
}
|
|
}
|