Skip to content

Commit

Permalink
Use "-i auto" by default in test/3 drivers.
Browse files Browse the repository at this point in the history
Details:
- Request default induced method behavior of BLIS via "-i auto" when
  running the standalone performance drivers in test/3 via the runme.sh
  script present in that directory. (Previously, the runme.sh script
  would use "-i native" by default.) This change was originally intended
  for fd1a7e3.
  • Loading branch information
fgvanzee committed Apr 30, 2024
1 parent fd1a7e3 commit cad5149
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/3/runme.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ fi

# Datatypes to test.
test_dts="s d c z"
test_dts="d"
#test_dts="d"

# Operations to test.
test_ops="gemm_nn hemm_ll herk_ln trmm_llnn trsm_runn"
#test_ops="herk"
#test_ops="gemm_nn"

# Implementations to test.
test_impls="blis"
Expand All @@ -115,8 +115,9 @@ fi
# Number of repeats per problem size.
nrepeats=3

# The induced method to use ('native' or '1m').
ind="native"
# The induced method to use ('auto', 'native', or '1m') for executing
# complex-domain level-3 operations.
ind="auto"

# Quiet mode?
#quiet="yes"
Expand Down

0 comments on commit cad5149

Please sign in to comment.