Skip to content

Commit 74396fb

Browse files
Revise baseline testing documentation for Rust on GCP
Updated the title and sections for clarity and consistency, changing references from 'aarch64' to 'Arm64'. Added a new section summarizing accomplishments and next steps.
1 parent 8549bb3 commit 74396fb

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

  • content/learning-paths/servers-and-cloud-computing/rust-on-gcp

content/learning-paths/servers-and-cloud-computing/rust-on-gcp/baseline.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
2-
title: Test Rust baseline performance on Google Axion C4A Arm virtual machines
2+
title: Perform baseline testing
33
weight: 5
44

55
### FIXED, DO NOT MODIFY
66
layout: learningpathall
77
---
88

9-
## Perform baseline testing
9+
## Overview
1010

11-
You can perform baseline testing of Rust on GCP SUSE aarch64 VMs to verify installation, build functionality, and compilation performance on the Arm-based Axion C4A platform.
11+
Now that Rust is installed, verify the installation, build functionality, and compilation performance on your Arm-based Axion C4A instance.
1212

13-
### Create a sample Rust program
13+
## Create a sample Rust program
1414

1515
Create and build a simple "Hello, World" application to verify that Rust is working correctly:
1616

@@ -33,9 +33,9 @@ The output is similar to:
3333
Hello, world!
3434
```
3535

36-
This confirms that Rust and Cargo are properly configured on your aarch64 VM.
36+
This confirms that Rust and Cargo are properly configured on your Arm64 VM.
3737

38-
### Measure compilation performance
38+
## Measure compilation performance
3939

4040
Use the `time` command to measure compilation performance on the Arm64 processor:
4141

@@ -59,3 +59,7 @@ sys 0m0.071s
5959
```
6060

6161
The timing results show that Rust compilation performs well on the Arm64 architecture, with the "real" time indicating the total elapsed time for the build process.
62+
63+
## What you've accomplished and what's next
64+
65+
You've successfully verified your Rust installation and measured baseline compilation performance on the C4A instance. In the next section, you'll benchmark Rust code execution using Criterion to measure runtime performance and consistency.

0 commit comments

Comments
 (0)