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