Cloud servers with Tesla H200

First GPU surpass 100GB of VRAM on a single chip

Graphics servers with Tesla H200

All graphics servers with Tesla H200 are equipped with two Intel Xeon Gold 4th Generation 6448Y CPUs, each featuring a base clock frequency of 3.0 GHz and a maximum clock frequency of 4.1 GHz with Turbo Boost technology.

Each processor contains two Intel® AVX-512 units and supports Intel® AVX-512 Deep Learning Boost functions. This set of instructions accelerates multiplication and addition operations with reduced accuracy, commonly used in many internal cycles of deep learning algorithms.

Each server is equipped with up to 8192 GB of DDR5 ECC Reg 4800 MHz RAM. Local storage, with a total capacity of 3200 GB, is organized on Intel® solid-state drives designed specifically for data centers.

GPU Tesla H200

Accelerate your transition to the new era of Artificial Intelligence with the latest H200 chips, featuring fourth-generation tensor cores.

The H200 GPUs are equipped with fourth-generation tensor cores and the Transformer Engine, which offers FP8 accuracy. This combination accelerates inference and training up to twice as fast compared to the H100.

The fourth-generation tensor cores accelerate all types of precision, including FP64, TF32, FP32, FP16, and INT8. The Transformer Engine utilizes both FP8 and FP16 to reduce memory usage and improve performance while maintaining accuracy for large language models.

Video memory capacity 141 GB
Type of video memory HBM3e
Memory bandwidth 4.8 TB/s
Decoders 7 NVDEC, 7 JPEG

GPU performance benchmarks

Performance benchmarks results in a virtual environment for 1 Tesla H200 graphics card.
  • OctaneBench 2020

    up to
    TBD
    pts
  • Matrix multiply example

    TBD
    GFlop/s
  • Hashcat bcrypt

    TBD
    H/s

Basic configurations with Tesla H200 141 GB

100% Performance

Each physical core or GPU adapter is dedicated to a single client.
This means:

  • 100% vCPU time is available;
  • Physical pass-through of GPUs inside virtual servers;
  • Reduced storage and network load on hypervisors, delivering more storage and network performance to clients.

Up to 75,000 IOPS1 for RANDOM READ and up to 20,000 IOPS for RANDOM WRITE on Virtual Servers with local SSDs

Up to 70 000 IOPS1 for RANDOM READ and up to 60 000 IOPS for RANDOM WRITE on Virtual Servers with block storage volumes

You can be confident that Virtual Servers do not share vCPU or GPU resources with one another.

  1. IOPS — Input/Output Operations Per Second.

Answers to frequently asked questions

You can host a virtual server for any duration. Simply make a payment starting from 1.1 $ and work within the prepaid balance. When you're finished, delete the server to stop incurring charges.

Yes, you can create GPU-servers through the control panel by choosing the hardware configuration and operating system. The ordered resources will be available for use within a few minutes.

If something goes wrong, contact our tech support. We are available 24/7: https://t.me/immerscloudsupport.

You can choose from the following basic images: Windows Server 2019, Windows Server 2022, Ubuntu, Debian, CentOS, Fedora, and OpenSUSE, or use a pre-configured image from the Marketplace.

All operating systems are installed automatically when the GPU-server is created.

By default, we provide RDP access for Windows-based servers and SSH access for Linux-based servers.

You can configure any connection method that is convenient for you.

Yes, it is possible. Contact our 24/7 support service (at https://t.me/immerscloudsupport} and tell us your desired configuration.

A Bit More About Us

  • Pay-as-you-go billing

    and free VM pause (shelve). You only pay for the actual use of your VMs
  • 24/7/365 Tech Support

    Tech support is always available via chat and responds within minutes

  • Free traffic

    Speeds up to 20 Gb/s with no extra charge for incoming or outgoing traffic

  • Our Data Centers

    Built to TIER III standards
  • 100% of power is yours

    We do not share resources you purchased with other users
  • 20 000+

    Users trust us with their data and tasks
Sign up

Ready-made OS images with the required software

Create virtual servers by utilizing our pre-configured OS images with either Windows or Linux, along with specialized pre-installed software.
  • Ubuntu
     
  • Debian
     
  • CentOS
     
  • Fedora
     
  • OpenSUSE
     
  • MS Windows Server
     
  • 3ds Max
     
  • Cinema 4D
     
  • Corona
     
  • Deadline
     
  • Blender
     
  • Archicad
     
  • Ubuntu
    Graphics drivers, CUDA, cuDNN
  • MS Windows Server
    Graphics drivers, CUDA, cuDNN
  • Nginx
     
  • Apache
     
  • Git
     
  • Jupyter
     
  • Django
     
  • MySQL
     
View all the pre-installed images in the Marketplace.

Pure OpenStack API

Developers and system administrators can manage the cloud using the full OpenStack API.
Authenticate ninja_user example: $ curl -g -i -X POST https://api.immers.cloud:5000/v3/auth/tokens \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-d '{"auth": {"identity": {"methods": ["password"], "password": {"user": { "name": "ninja_user", "password": "ninja_password", "domain": {"id": "default"}}}}, "scope": {"project": {"name": "ninja_user", "domain": {"id": "default"}}}}}'
Create ninja_vm example: $ curl -g -i -X POST https://api.immers.cloud:8774/v2.1/servers \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN" \
-d '{"server": {"name": "ninja_vm", "imageRef": "8b85e210-d2c8-490a-a0ba-dc17183c0223", "key_name": "mykey01", "flavorRef": "8f9a148d-b258-42f7-bcc2-32581d86e1f1", "max_count": 1, "min_count": 1, "networks": [{"uuid": "cc5f6f4a-2c44-44a4-af9a-f8534e34d2b7"}]}}'
STOP ninja_vm example: $ curl -g -i -X POST https://api.immers.cloud:8774/v2.1/servers/{server_id}/action \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN" \
-d '{"os-stop" : null}'
START ninja_vm example: $ curl -g -i -X POST https://api.immers.cloud:8774/v2.1/servers/{server_id}/action \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN" \
-d '{"os-start" : null}'
SHELVE ninja_vm example: $ curl -g -i -X POST https://api.immers.cloud:8774/v2.1/servers/{server_id}/action \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN" \
-d '{"shelve" : null}'
DELETE ninja_vm example: $ curl -g -i -X DELETE https://api.immers.cloud:8774/v2.1/servers/{server_id} \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN"
Documentation
Signup

Any questions?

Write to us via live chat, email, or call by phone:
@immerscloudsupport
support@immers.cloud
+7 499 110-44-94

Any questions?

Write to us via live chat, email, or call by phone:
@immerscloudsupport support@immers.cloud +7 499 110-44-94
Sign up

Subscribe to our newsletter

Get notifications about new promotions and special offers by email.

 I agree to the processing of personal data