Woosuk Kwon

Results 65 issues of Woosuk Kwon

This PR adds the `vCPUs` column in the optimizer message (which was requested by Justin a while ago). ``` $ sky gpunode --gpus V100 I 08-14 03:51:35 optimizer.py:605] == Optimizer...

Fixes #995. To prevent potential bugs due to lower-case names, I think we should canonicalize the accelerator names in `Resources`. Because there are only < 20 accelerators (except TPUs) in...

This PR closes #930 For on-demand instances, the optimizer selects the **cloud region** (e.g., AWS us-west-1) to run the task on. And a provisioning request is made for that region....

This PR checks compatibility between GCP host VMs and accelerators. For example, GPUs (except A100) can be only attached to N1 machines, and each GPU has limitations on the number...

The obviously wrong command `sky gpunode --gpus T4:1 --instance-type g4dn.metal` works without any error: ``` $sky gpunode -c my cluster --gpus T4:1 --instance-type g4dn.metal I 07-30 01:00:15 optimizer.py:605] == Optimizer...

bug

I tested the provisioning of the GCP VMs which will be added in the new GCP catalog (see their specs in https://cloud.google.com/compute/docs/machine-types): * M1 * g1-small (0.5 vCPU) * f1-mirco...

Related to #589. Before open sourcing, I think we should at minimum document which cloud regions are currently supported. If I understand correctly, the entire list of the currently supported...

Do we need specific versions for Keras and other frameworks to support callback function? _Originally posted by @infwinston in https://github.com/sky-proj/sky/pull/832#discussion_r917123658_ To quickly merge #832, I will resolve this after the...

My task on a m6i.2xlarge instance ```yaml name: nproc resources: cloud: aws setup: | echo "setup $(nproc)" run: | echo "run $(nproc)" ``` returns ``` setup 1 run 1 ```...