Skip to main content

watchmen for GPU scheduling

Project description

Watchmen

A simple and easy-to-use toolkit for GPU scheduling.

Dependencies

  • Python >= 3.6
    • requests >= 2.24.0
    • pydantic >= 1.7.1
    • gpustat >= 0.6.0
    • flask >= 1.1.2
    • apscheduler >= 3.6.3

Installation

  1. Install dependencies.
$ pip install -r requirements.txt
  1. Install watchmen.

Install from source code:

$ pip install -e .

Or you can install the stable version package from pypi.

$ pip install gpu-watchmen -i https://pypi.org/simple

Quick Start

  1. Start the server

The default port of the server is 62333

$ python -m watchmen.server

If you want the server to be running backend, try:

$ nohup python -m watchmen.server 1>watchmen.log 2>&1 &

There are some configurations for the server

usage: server.py [-h] [--host HOST] [--port PORT]
                 [--queue_timeout QUEUE_TIMEOUT]
                 [--request_interval REQUEST_INTERVAL]
                 [--status_queue_keep_time STATUS_QUEUE_KEEP_TIME]

optional arguments:
  -h, --help            show this help message and exit
  --host HOST           host address for api server
  --port PORT           port for api server
  --queue_timeout QUEUE_TIMEOUT
                        timeout for queue waiting (seconds)
  --request_interval REQUEST_INTERVAL
                        interval for gpu status requesting (seconds)
  --status_queue_keep_time STATUS_QUEUE_KEEP_TIME
                        hours for keeping the client status. set `-1` to keep
                        all clients' status
  1. Modify the source code in your project:
from watchmen import WatchClient

client = WatchClient(id="short description of this running", gpus=[1],
                     server_host="127.0.0.1", server_port=62333)
client.wait()

When the program goes on after client.wait(), you are in the working queue. Watchmen supports two requesting mode:

  • queue mode means you are waiting for the gpus in gpus arguments.
  • schedule mode means you are waiting for the server to spare req_gpu_num of available GPUs in gpus. You can check examples in example/ for further reading.
# single card queue mode
$ cd example && python single_card_mnist.py --id="single" --cuda=0 --wait
# single card schedule mode
$ cd example && python single_card_mnist.py --id="single schedule" --cuda=0,2,3 --req_gpu_num=1 --wait_mode="schedule" --wait
# queue mode
$ cd example && python multi_card_mnist.py --id="multi" --cuda=2,3 --wait
# schedule mode
$ cd example && python multi_card_mnist.py --id='multi card scheduling wait' --cuda=1,0,3 --req_gpu_num=2 --wait="schedule"
  1. Check the queue in browser.

Open the following link to your browser: http://<server ip address>:<server port>, for example: http://192.168.126.143:62333.

And you can get a result like the demo below. Please be aware that the page is not going to change dynamically, so you can refresh the page manually to check the latest status.

Home page: GPU status

HomePage

Working queue: WorkingQueue

Finished queue: FinishedQueue

  1. Reminder when program is finished.

watchmen also support email and other kinds of reminders for message informing. For example, you can send yourself an email when the program is finished.

from watchmen.reminder import send_email

... # your code here

send_email(
    host="smtp.163.com", # email host to login, like `smtp.163.com`
    port=25, # email port to login, like `25`
    user="***@163.com", # user email address for login, like `***@163.com`
    password="***", # password or auth code for login
    receiver="***@outlook.com", # receiver email address
    html_message="<h1>Your program is finished!</h1>", # content, html format supported
    subject="Proram Finished Notice" # email subject
)

To get more reminders, please check watchmen/reminder.py.

UPDATE

  • v0.3.8: change OK status to be shown only in the finished queue, and show ready in the working queue. Fix severe bug when scheduling
  • v0.3.7: much faster due to lock free changes! fix timeout and schedule bug
  • v0.3.6: fix front-end api hostname bug
  • v0.3.5: fix front-end api port bug
  • v0.3.4: refreshed interface, add register_time field, fix check_finished bug
  • v0.3.3: fix check_finished bug in server end, quit the main thread if the sub-thread is quit, and remove the backend cmd in the main thread
  • v0.3.2: fix WatchClient bug
  • v0.3.1: change Client into WatchClient, fix ClientCollection and send_email bug
  • v0.3.0: support gpu scheduling, fix blank input output, fix check_gpus_existence
  • v0.2.2: fix html package data, add multi-card example

TODO

  • import user authentication modules to help the working queue delete operations
  • read programs' pids to help reading program working status and kill tasks remotely
  • test and support distributed model parallel configurations (with python -m torch.distributed.launch)
  • prettify the web page and divide functions into different tabs
  • gpu using stats for each user and process
  • quit the main thread if the sub-thread is quit
  • change Client into WatchClient, in case of any ambiguity
  • ClientCollection/__contains__ function should not include finished_queue, to help the id releases
  • subject bug in reminder/send_email()
  • add schedule feature, so clients only have to request for a number and range of gpus, and the server will assign the gpu num to clients
  • add reminders
  • add webui html support
  • add examples

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gpu-watchmen-0.3.8.tar.gz (9.8 kB view details)

Uploaded Source

Built Distribution

gpu_watchmen-0.3.8-py3-none-any.whl (15.3 kB view details)

Uploaded Python 3

File details

Details for the file gpu-watchmen-0.3.8.tar.gz.

File metadata

  • Download URL: gpu-watchmen-0.3.8.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.7.7

File hashes

Hashes for gpu-watchmen-0.3.8.tar.gz
Algorithm Hash digest
SHA256 6435ffabf73f239a0e513f67d6b1346ec354a68021ab3178a55d819da5225c5d
MD5 67795fd44eb07cb31f884d353fad671f
BLAKE2b-256 14fa31564657a272e477b4ba095e967d807c4280bf704ccd978be67260d83efb

See more details on using hashes here.

File details

Details for the file gpu_watchmen-0.3.8-py3-none-any.whl.

File metadata

  • Download URL: gpu_watchmen-0.3.8-py3-none-any.whl
  • Upload date:
  • Size: 15.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.53.0 CPython/3.7.7

File hashes

Hashes for gpu_watchmen-0.3.8-py3-none-any.whl
Algorithm Hash digest
SHA256 087cb1f119132e0e8dc3e507a9686c579a6265e34e775dbab457c6d79396ccd3
MD5 161b71d2a6f53b0de6e10a9de468bd8f
BLAKE2b-256 2553ad369e7c755942cb39320b6b17eb8e2bbff39a0fa82488afd7e5280545ba

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page