mirror of
https://github.com/amd/blis.git
synced 2026-05-12 10:05:38 +00:00
Some text files were missing a newline at the end of the file.
One has been added.
Also correct file format of windows/tests/inputs.yaml, which
was missed in commit 0f0277e104
AMD-Internal: [CPUPL-2870]
Change-Id: Icb83a4a27033dc0ff325cb84a1cf399e953ec549
13 lines
296 B
Bash
Executable File
13 lines
296 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Code Coverage for BLIS"
|
|
echo "obj_dir_path : $1"
|
|
echo "out_dir_name : $2"
|
|
|
|
#$1 : obj_dir_path
|
|
#$2 : out_dir_name
|
|
|
|
lcov --capture --directory $1 --output-file $2.info
|
|
lcov --remove $2.info -o $2_filtered.info '/usr/*' '/*/_deps/*'
|
|
genhtml $2_filtered.info --output-directory $2
|