You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

cache_admin.py 1.3 kB

12345678910111213141516171819202122232425262728293031323334
  1. # Copyright 2021 Huawei Technologies Co., Ltd
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. # ==============================================================================
  15. """
  16. This is the entrance to start the cache service
  17. """
  18. import os
  19. import stat
  20. import subprocess
  21. import sys
  22. import mindspore
  23. def main():
  24. """Entry point for cache service"""
  25. cache_admin_dir = os.path.join(os.path.dirname(mindspore.__file__), "bin")
  26. os.chdir(cache_admin_dir)
  27. cache_admin = os.path.join(cache_admin_dir, "cache_admin")
  28. cache_server = os.path.join(cache_admin_dir, "cache_server")
  29. os.chmod(cache_admin, stat.S_IRWXU)
  30. os.chmod(cache_server, stat.S_IRWXU)
  31. cmd = cache_admin + " " + " ".join(sys.argv[1:])
  32. sys.exit(subprocess.call(cmd, shell=True))