Login to the Intel Cloud Console:
Go to [ Ссылка ] and log in to your Intel account.
Explore Available Hardware Resources:
Browse the available hardware resources to select the desired configuration.
Launch an Instance:
Click "Launch instance."
Choose "4th Generation Intel® Xeon® Scalable processors."
Select Instance Type:
Select "4th Generation Intel® Xeon® Scalable processors" with 112 cores, 2 sockets, 256 GB memory, and 2 TB disk.
Upload SSH Key:
Under "Public Keys," click "Upload Key."
Give your SSH key a suitable name.
Generate SSH Key (Local Machine):
Open PowerShell as an administrator.
Generate an SSH key with the command: ssh-keygen
Open the generated public key file with Notepad and copy its contents (e.g., Notepad C:\Users\username\.ssh\id_rsa.pub).
Paste SSH Key Contents:
Back in the Intel Cloud Console, paste the copied SSH key contents under the "Key Contents" section and save the key.
Launch the Instance:
Select the key you uploaded and click "Launch."
Wait for Provisioning:
Wait for the instance to finish provisioning.
Connect to the Instance:
Click on the launched instance in the Intel Cloud Console.
Click on "How to connect" to get the SSH command.
Copy the SSH command to connect to the instance and paste it in a CMD window.
Update System and Install oneAPI Base Toolkit:
On the connected instance, run the following commands:
sudo apt update
wget [ Ссылка ]
sudo sh ./l_BaseKit_p_2023.2.0.49397_offline.sh
Install Necessary Packages:
sudo apt install python3-pip
sudo snap install jupyter
jupyter notebook
Port Forwarding (Local Machine):
On a new CMD window on your local machine, set up port forwarding to access Jupyter Notebook:
ssh -L 8888:localhost:8888 user@vm-ip-address
Access Jupyter Notebook (Local Machine):
Open a web browser on your local machine and enter the following URL in the address bar: [ Ссылка ]
You'll be prompted for a token, which can be found in the first PowerShell instance on the VM.
Get Sample Code Snippets (Optional):
Type the below command to download all necessary oneAPI samples:
git clone [ Ссылка ]
Ещё видео!