Compare commits
1 Commits
3e14ef9760
...
2b540840b1
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b540840b1 |
@@ -53,11 +53,19 @@ jobs:
|
|||||||
echo "matrix-timing-tests executable not found or not executable"
|
echo "matrix-timing-tests executable not found or not executable"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Commit and push timing results
|
- name: Commit and push timing results
|
||||||
run: |
|
run: |
|
||||||
git config --global user.name "github-actions[bot]"
|
git config --global user.name "github-actions[bot]"
|
||||||
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
|
|
||||||
|
# Save current branch name
|
||||||
|
BRANCH_NAME=$(echo "${GITHUB_REF##refs/heads/}")
|
||||||
|
|
||||||
git add unit-tests/timing-results/matrix-timing-tests.txt
|
git add unit-tests/timing-results/matrix-timing-tests.txt
|
||||||
git diff --quiet --cached || git commit -m "Update matrix-timing-tests timings [skip ci]"
|
if git diff --quiet --cached; then
|
||||||
git push
|
echo "No changes to commit"
|
||||||
|
else
|
||||||
|
git commit -m "Update matrix-timing-tests timings [skip ci]"
|
||||||
|
git push origin HEAD:$BRANCH_NAME
|
||||||
|
fi
|
||||||
|
|
||||||
|
|||||||
@@ -1,56 +0,0 @@
|
|||||||
Randomness seeded to: 505428568
|
|
||||||
0.179 s: Addition
|
|
||||||
0.180 s: Timing Tests
|
|
||||||
0.175 s: Subtraction
|
|
||||||
0.175 s: Timing Tests
|
|
||||||
1.885 s: Multiplication
|
|
||||||
1.885 s: Timing Tests
|
|
||||||
0.126 s: Scalar Multiplication
|
|
||||||
0.126 s: Timing Tests
|
|
||||||
0.172 s: Element Multiply
|
|
||||||
0.172 s: Timing Tests
|
|
||||||
0.182 s: Element Divide
|
|
||||||
0.182 s: Timing Tests
|
|
||||||
0.158 s: Minor Matrix
|
|
||||||
0.158 s: Timing Tests
|
|
||||||
0.103 s: Determinant
|
|
||||||
0.103 s: Timing Tests
|
|
||||||
0.425 s: Matrix of Minors
|
|
||||||
0.425 s: Timing Tests
|
|
||||||
0.110 s: Invert
|
|
||||||
0.110 s: Timing Tests
|
|
||||||
0.126 s: Transpose
|
|
||||||
0.126 s: Timing Tests
|
|
||||||
0.194 s: Normalize
|
|
||||||
0.194 s: Timing Tests
|
|
||||||
0.007 s: GET ROW
|
|
||||||
0.007 s: Timing Tests
|
|
||||||
0.242 s: GET COLUMN
|
|
||||||
0.242 s: Timing Tests
|
|
||||||
===============================================================================
|
|
||||||
test cases: 1 | 1 passed
|
|
||||||
assertions: - none -
|
|
||||||
|
|
||||||
Command being timed: "build/unit-tests/matrix-timing-tests -d yes"
|
|
||||||
User time (seconds): 4.08
|
|
||||||
System time (seconds): 0.00
|
|
||||||
Percent of CPU this job got: 100%
|
|
||||||
Elapsed (wall clock) time (h:mm:ss or m:ss): 0:04.08
|
|
||||||
Average shared text size (kbytes): 0
|
|
||||||
Average unshared data size (kbytes): 0
|
|
||||||
Average stack size (kbytes): 0
|
|
||||||
Average total size (kbytes): 0
|
|
||||||
Maximum resident set size (kbytes): 3072
|
|
||||||
Average resident set size (kbytes): 0
|
|
||||||
Major (requiring I/O) page faults: 184
|
|
||||||
Minor (reclaiming a frame) page faults: 171
|
|
||||||
Voluntary context switches: 1
|
|
||||||
Involuntary context switches: 21
|
|
||||||
Swaps: 0
|
|
||||||
File system inputs: 12
|
|
||||||
File system outputs: 1
|
|
||||||
Socket messages sent: 0
|
|
||||||
Socket messages received: 0
|
|
||||||
Signals delivered: 0
|
|
||||||
Page size (bytes): 4096
|
|
||||||
Exit status: 0
|
|
||||||
|
|||||||
Reference in New Issue
Block a user