Cloud servers with Tesla B200

A Unified AI Factory with FP4 support

Graphics servers with Tesla B200

All graphics servers with Tesla B200 are based on two Intel Xeon Platinum 5th generation 8570 CPUs with a base clock frequency of 2.1 GHz and a maximum clock frequency with Turbo Boost technology of 4.0 GHz.

Each processor contains two Intel® AVX-512 units and supports Intel® AVX-512 Deep Learning Boost functions. This set of instructions speeds up multiplication and addition operations with reduced accuracy, which are used in many internal cycles of the deep learning algorithm.

Each server has up to 4096 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 B200

The B200 GPUs are equipped with fifth-generation tensor cores and second-generation Transformer Engine with FP4 accuracy. This combination accelerates learning up to 3 times faster and inference up to 15 times compared to the previous generation.

Video memory capacity, server 1440 GB
Video memory capacity, GPU 180 GB
Type of video memory HBM3e
Memory bandwidth 64 TB/s
FP8 performance 72 petaFLOPS
FP4 performance 144 petaFLOPS

GPU performance benchmarks

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

    up to
    TBD
    pts
  • Matrix multiply example

    TBD
    GFlop/s
  • Hashcat bcrypt

    TBD
    H/s

Basic configurations with Tesla B200 80 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
[email protected]
+7 499 110-44-94

Any questions?

Write to us via live chat, email, or call by phone:
@immerscloudsupport [email protected] +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