Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Easy access to GPU pricing data for major cloud providers: AWS, Azure, GCP, etc. The catalog includes details about prices, locations, CPUs, RAM, GPUs, and spots (interruptible instances).
import gpuhunt
items = gpuhunt.query(
min_memory=16,
min_cpu=8,
min_gpu_count=1,
max_price=1.0,
)
print(*items, sep="\n")
List of all available filters:
provider
: name of the provider to filter by. If not specified, all providers will be used. One or manymin_cpu
: minimum number of CPUsmax_cpu
: maximum number of CPUsmin_memory
: minimum amount of RAM in GBmax_memory
: maximum amount of RAM in GBmin_gpu_count
: minimum number of GPUsmax_gpu_count
: maximum number of GPUsgpu_name
: name of the GPU to filter by. If not specified, all GPUs will be used. One or manymin_gpu_memory
: minimum amount of GPU VRAM in GB for each GPUmax_gpu_memory
: maximum amount of GPU VRAM in GB for each GPUmin_total_gpu_memory
: minimum amount of GPU VRAM in GB for all GPUs combinedmax_total_gpu_memory
: maximum amount of GPU VRAM in GB for all GPUs combinedmin_disk_size
: minimum disk size in GB (not fully supported)max_disk_size
: maximum disk size in GB (not fully supported)min_price
: minimum price per hour in USDmax_price
: maximum price per hour in USDmin_compute_capability
: minimum compute capability of the GPUmax_compute_capability
: maximum compute capability of the GPUspot
: if False
, only ondemand offers will be returned. If True
, only spot offers will be returnedfrom gpuhunt import Catalog
catalog = Catalog()
catalog.load(version="20240508")
items = catalog.query()
print(*items, sep="\n")
FAQs
A catalog of GPU pricing for different cloud providers
We found that gpuhunt demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.