Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update gpu-golem-live.md #297

Merged
merged 1 commit into from
Aug 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/pages/docs/providers/gpu/gpu-golem-live.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,17 +285,17 @@ After the `--account` value, enter the address of your wallet.

**How to change the hourly rate?**

First, log in via SSH to your provider and use the command in the terminal:
First, convert the desired hourly rate into a rate per second, to do this divide the target rate by 3600.
For example, to obtain a rate of approximately 1 GLM /h:

- 1 GLM /h / 3600 = 0.000278

Then log in via SSH to your provider and use the command in the terminal:

```bash
ya-provider preset update --name vm-nvidia --price duration=0.00003
ya-provider preset update --name vm-nvidia --price duration=0.000278 --no-interactive
```

Go through the wizard, where you select `vm-nvidia` and linear and set the appropriate rates. Note that the value here is expressed in seconds. To convert to GLM / h simply multiply the value times 3600. For example:

- 0.000006944444444444444 \* 3600 = 0.025 GLM /h
- 0.00006944444444444444 \* 3600 = 0.25 GLM /h

Finally, activate the changes with the command:

```bash
Expand Down
Loading