Is there a clean way to define AI workloads that can run across different GPU providers without provider-specific configuration[D]

Reddit r/MachineLearning Tools

Summary

Developer explores how to abstract GPU workloads so they can run across multiple GPU providers without provider-specific configuration, leaning toward separating workload definition from infrastructure binding.

been thinking about this problem for a while and most solutions I’ve found either solve part of it or introduce their own complexity the specific problem: we want to be able to run GPU workloads across multiple providers for availability and cost reasons, but maintaining provider-specific deployment configuration for each workload doesn’t scale. when a provider has availability issues or pricing changes we want to shift workloads without it being an engineering project approaches I’ve looked at: K8s with multi-provider node pools: works but the provider-specific configuration lives in the scheduling logic and GPU driver setup. “portable” means “requires significant modification per provider” in practice. also the failure recovery for GPU-specific failures requires a lot of custom logic that ends up being provider-specific anyway Terraform: solves infrastructure provisioning portability. doesn’t solve workload scheduling portability. you can terraform your way to nodes on multiple providers, you still need to tell each workload where to run custom abstraction layer: we built one. it worked until a provider changed their API. maintenance overhead compounded the pattern that seems to actually work from what I’ve read: separating the workload definition from the infrastructure binding entirely, with a scheduling layer that handles the matching. define what the workload needs, not where it runs. let the scheduler figure out placement across available hardware curious if anyone has implemented this in practice and what that looks like operationally
Original Article

Similar Articles

Will Cloud GPU Providers Become Agent Infrastructure?

Reddit r/AI_Agents

The author speculates on whether cloud GPU providers will become the underlying infrastructure for AI agents, drawing parallels to the telecom industry's evolution and questioning market consolidation.

Running AI with cloud hosted GPUs

Reddit r/openclaw

An article about running AI models using cloud-hosted GPUs, covering options and considerations for deployment.