Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion capi_benchmark/benchmark1.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ int benchmark(double beta, double omega_max, double epsilon, int extra_size, int
// Create a pre-computed SVE result
int lmax = -1;
int n_gauss = -1;
int Twork = SPIR_TWORK_FLOAT64X2;
int Twork = SPIR_TWORK_AUTO; // Auto-select: FLOAT64 for epsilon >= 1e-8, FLOAT64X2 for epsilon < 1e-8
benchmark_start(&bench, "SVE computation");
spir_sve_result *sve_logistic = spir_sve_result_new(
kernel, epsilon, lmax, n_gauss, Twork, &status);
Expand Down
Loading