Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TF-ARQUITETURA
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Wagner José Kramer Vieira
TF-ARQUITETURA
Commits
7d8ac99c
Commit
7d8ac99c
authored
5 years ago
by
Wagner José Kramer Vieira
Browse files
Options
Downloads
Patches
Plain Diff
Script para teste de CPU
parent
787572a1
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
perfscript.sh
+37
-0
37 additions, 0 deletions
perfscript.sh
with
37 additions
and
0 deletions
perfscript.sh
0 → 100644
+
37
−
0
View file @
7d8ac99c
#!/bin/sh
echo
"
\n
*************************
*************************
TESTE COM 0
*************************
*************************
\n
"
>
resultadoPerf.txt
for
i
in
1 2 3 4 5 6 7 8 9 10
do
echo
"Teste nº
$i
\n
"
>>
resultadoPerf.txt
sudo
perf
stat
-e
cycles,instructions,cache-references,cache-misses,branches,branch-misses hashcat
--opencl-device-types
1
-b
-m
0 2>>resultadoPerf.txt 1>>resultadoPerf.txt
done
echo
"
\n
*************************
*************************
TESTE COM 100
*************************
*************************
\n
"
>>
resultadoPerf.txt
for
i
in
1 2 3 4 5 6 7 8 9 10
do
echo
"Teste nº
$i
\n
"
>>
resultadoPerf.txt
sudo
perf
stat
-e
cycles,instructions,cache-references,cache-misses,branches,branch-misses hashcat
--opencl-device-types
1
-b
-m
100 2>>resultadoPerf.txt 1>>resultadoPerf.txt
done
echo
"
\n
*************************
*************************
TESTE COM 2500
*************************
*************************
\n
"
>>
resultadoPerf.txt
for
i
in
1 2 3 4 5 6 7 8 9 10
do
echo
"Teste nº
$i
\n
"
>>
resultadoPerf.txt
sudo
perf
stat
-e
cycles,instructions,cache-references,cache-misses,branches,branch-misses hashcat
--opencl-device-types
1
-b
-m
2500 2>>resultadoPerf.txt 1>>resultadoPerf.txt
done
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment