Shortcuts

Program Listing for File noop_environment.h

Return to documentation for file (multipy/multipy/runtime/noop_environment.h)

// Copyright (c) Meta Platforms, Inc. and affiliates.
// All rights reserved.
//
// This source code is licensed under the BSD-style license found in the
// LICENSE file in the root directory of this source tree.

#pragma once

#include <multipy/runtime/environment.h>

namespace torch {
namespace deploy {

class NoopEnvironment : public Environment {
 public:
  void configureInterpreter(Interpreter* /* interp */) override {}
};

} // namespace deploy
} // namespace torch

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources