mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00

* clarify cluster setup instructions * update multinode documentation, update cluster script, fix minor bug in worker.py * clarify cluster documentation and fix update_user_code
62 lines
621 B
Text
62 lines
621 B
Text
# The build directory should clearly not be checked in
|
|
/build
|
|
|
|
# Python byte code files
|
|
*.pyc
|
|
|
|
# Emacs temporary files
|
|
*~
|
|
*#
|
|
|
|
# Compiled Object files
|
|
*.slo
|
|
*.lo
|
|
*.o
|
|
*.obj
|
|
|
|
# Precompiled Headers
|
|
*.gch
|
|
*.pch
|
|
|
|
# Compiled Dynamic libraries
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
|
|
# Incremental linking files
|
|
*.ilk
|
|
|
|
# Library export files
|
|
*.exp
|
|
|
|
# Debug symbols
|
|
*.pdb
|
|
|
|
# Fortran module files
|
|
*.mod
|
|
|
|
# Compiled Static libraries
|
|
*.lai
|
|
*.la
|
|
*.a
|
|
*.lib
|
|
|
|
# Executables
|
|
*.exe
|
|
*.out
|
|
*.app
|
|
|
|
# Visual Studio files
|
|
/packages
|
|
*.suo
|
|
*.user
|
|
*.VC.db
|
|
*.VC.opendb
|
|
|
|
# Protobuf-generated files
|
|
*_pb2.py
|
|
*.pb.h
|
|
*.pb.cc
|
|
|
|
# Ray cluster configuration
|
|
scripts/nodes.txt
|