-
Notifications
You must be signed in to change notification settings - Fork 260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RVV 1.0 integration testing on real hardware #1184
Open
alitariq4589
wants to merge
32
commits into
simd-everywhere:master
Choose a base branch
from
alitariq4589:rvv1.0-integration
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
7ad946b
Added Makefile and cross file for build
alitariq4589 486353c
Modified Makefile
alitariq4589 e46ed6a
Added cloud-v-pipeline file
alitariq4589 26177ae
Changed the cloning process
alitariq4589 d8e7efe
Changed cloning command
alitariq4589 330d9d4
Changed cloning command
alitariq4589 729f211
Added cleanup stage
alitariq4589 d6c3781
Removed clean stage
alitariq4589 870f91c
modified clone stage
alitariq4589 a21ffaa
Corrected pipeline file
alitariq4589 24c7d77
Added clean up step on k230
alitariq4589 e67062a
changed compress command
alitariq4589 71f2fdd
Added source file
alitariq4589 fd5e46e
Changed the stashed file content
alitariq4589 675add8
Changed the command for source
alitariq4589 6aec4f6
Corrected Makefile syntax
alitariq4589 855e858
Changed the clone branch to master
alitariq4589 be84a57
Added -march for vector
alitariq4589 0bf4816
Changed the clone stage
alitariq4589 3ead31b
Added error handling for meson command
alitariq4589 72f0b56
Reordered the files
alitariq4589 fb3cb9c
Added -mrvv-vector-bits=128 in cross file
alitariq4589 4c86e29
Added gcc version string
alitariq4589 2fd0a18
Added gcc version string
alitariq4589 49d5ac2
Changed the RV GNU toolchain version
alitariq4589 753d212
Removed the mrvv flag
alitariq4589 fa792a1
Added zvl flags
alitariq4589 351be2f
Added zvl flags
alitariq4589 08cff65
Changed -Ofast to -O3
alitariq4589 64a11fd
Removed the optimization flag
alitariq4589 9e68a0d
Corrected the scp command
alitariq4589 fa1e66e
Added Archive artifact stage
alitariq4589 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Makefile | ||
|
||
# Define the directory to search for executables | ||
DIR := ../build/test | ||
|
||
# Define a shell command to find all executable files, excluding C/C++ files and directories | ||
EXEC_FILES := $(shell find $(DIR) -type f -executable ! -name '*.c' ! -name '*.cpp' ! -name '*.h') | ||
|
||
# Log file | ||
LOG_FILE := test.mak.log | ||
|
||
# Default target | ||
all: run | ||
|
||
# Target to run all executable files and log the output | ||
run: | ||
@echo "Running executables in $(DIR)..." > $(LOG_FILE)aaaa | ||
count=0; \ | ||
pass_count=0; \ | ||
fail_count=0; \ | ||
for file in $(EXEC_FILES); do \ | ||
echo "Executing $$file" | tee -a $(LOG_FILE); \ | ||
$$file >> $(LOG_FILE) 2>&1; \ | ||
case "$$?" in \ | ||
0) echo "PASSED" | tee -a $(LOG_FILE); \ | ||
pass_count=$$((pass_count + 1)) ;; \ | ||
*) echo "FAILED" | tee -a $(LOG_FILE); \ | ||
fail_count=$$((fail_count + 1)) ;; \ | ||
esac; \ | ||
echo ""; \ | ||
echo "" >> $(LOG_FILE); \ | ||
count=$$((count + 1)); \ | ||
done; \ | ||
echo "Total executables run: $$count" | tee -a $(LOG_FILE); \ | ||
echo "Total passed: $$pass_count" | tee -a $(LOG_FILE); \ | ||
echo "Total failed: $$fail_count" | tee -a $(LOG_FILE) | ||
echo "Complete log is saved in test.mak.log" | ||
|
||
# Clean target (example, not strictly necessary for this task) | ||
clean: | ||
@echo "Nothing to clean" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// All CI build results of this pipeline are available at: https://dash.cloud-v.co/blue/organizations/jenkins/simde/activity | ||
node('J-TESTVM-1') { | ||
stage('Clean Workspace') { | ||
cleanWs() | ||
} | ||
stage('Clone') { | ||
checkout scm | ||
} | ||
stage('Run system_info') { | ||
sh '''#!/bin/bash | ||
cat /proc/cpuinfo | ||
''' | ||
} | ||
stage('Run configure') { | ||
sh '''#!/bin/bash -l | ||
module load riscv64-gnu-glibc/14.1.1 | ||
riscv64-unknown-linux-gnu-gcc --version | ||
meson setup build --cross-file=./docker/cross-files/riscv64-gcc-13-unknown.cross -Db_lundef=false | ||
''' | ||
} | ||
stage('Run cross compile') { | ||
sh '''#!/bin/bash -l | ||
set -e | ||
module load riscv64-gnu-glibc/14.1.1 | ||
meson compile -C build -v | ||
if [ $? -ne 0 ]; then | ||
echo "Meson compile failed" | ||
exit 1 | ||
fi | ||
echo "export SIMDE_PATH=$(pwd)" > testvm_pwd.sh | ||
''' | ||
stash includes: 'testvm_pwd.sh', name: 'testvm_pwd.sh' | ||
} | ||
} | ||
node('J-K230-1') { | ||
stage('Clean Workspace') { | ||
cleanWs() | ||
} | ||
stage('Get Cross-compiled binaries') { | ||
unstash 'testvm_pwd.sh' | ||
withCredentials([sshUserPrivateKey(credentialsId: 'TESTVM_SSH_CREDENTIALS', keyFileVariable: 'SSH_KEY')]) { | ||
sh '''#!/bin/bash -v | ||
source testvm_pwd.sh | ||
echo "$SIMDE_PATH" | ||
ssh -i $SSH_KEY [email protected] -p 30013 "cd $SIMDE_PATH && tar cvf - ." | tar xvf - -C ./ | ||
''' | ||
} | ||
} | ||
stage('Run test') { | ||
sh'''#!/bin/bash | ||
cd .cloud-v | ||
make | ||
''' | ||
} | ||
stage('Archive Artifacts'){ | ||
archiveArtifacts artifacts: '.cloud-v/test.mak.log', fingerprint: true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[binaries] | ||
c = ['riscv64-unknown-linux-gnu-gcc', '-march=rv64gcv_zvl256b', '-mrvv-vector-bits=zvl', '-mabi=lp64d'] | ||
cpp = ['riscv64-unknown-linux-gnu-g++', '-march=rv64gcv_zvl256b', '-mrvv-vector-bits=zvl', '-mabi=lp64d'] | ||
ar = 'riscv64-unknown-linux-gnu-ar' | ||
strip = 'riscv64-unknown-linux-gnu-strip' | ||
|
||
[host_machine] | ||
system = 'linux' | ||
cpu_family = 'riscv64' | ||
cpu = 'riscv64' | ||
endian = 'little' |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it need to be modified here? 13->14 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The file could be renamed, but its contents don't mention the GCC version
https://github.com/simd-everywhere/simde/pull/1184/files#diff-8e5bdcf98aed37c1bff927573747ea9badeb2ae4ae8f5158aeae9abffd5baff6