xref: /aosp_15_r20/external/pytorch/test/distributed/bin/test_script.py (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1#!/usr/bin/env python3
2# Owner(s): ["oncall: distributed"]
3
4# Copyright (c) Facebook, Inc. and its affiliates.
5# All rights reserved.
6#
7# This source code is licensed under the BSD-style license found in the
8# LICENSE file in the root directory of this source tree.
9
10
11def main():
12    print("Success, smoke test")
13
14
15if __name__ == "__main__":
16    main()
17