Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101426736
reports2csv.sh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Feb 10, 08:36
Size
327 B
Mime Type
text/x-shellscript
Expires
Wed, Feb 12, 08:36 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24161052
Attached To
R13275 Memory allocation and data transfer on the GH200
reports2csv.sh
View Options
#!/bin/bash
for
file in reports/run?/*.nsys-rep;
do
nsys stats --report cuda_api_sum
$file
-o tmp.csv; cat tmp.csv_cuda_api_sum.csv >> reports/
$(
basename
$file
| rev | cut -d. -f2- | rev
)
.csv; rm tmp.csv_cuda_api_sum.csv;
done
for
file in reports/*.csv;
do
sed -i
'1b;/^Time/d'
$file
python3 convert2mean.py
$file
done
Event Timeline
Log In to Comment