Allow plugins to disable the multiplication of the kernel-accel value with the multiprocessor count of the compute device. Will be used later.

This commit is contained in:
Jens Steube
2021-04-13 11:26:17 +02:00
parent ee26805138
commit 9033975efd
2 changed files with 4 additions and 2 deletions

View File

@@ -434,6 +434,7 @@ typedef enum opts_type
OPTS_TYPE_POTFILE_NOPASS = (1ULL << 47), // sometimes the password should not be printed to potfile
OPTS_TYPE_DYNAMIC_SHARED = (1ULL << 48), // use dynamic shared memory (note: needs special kernel changes)
OPTS_TYPE_SELF_TEST_DISABLE = (1ULL << 49), // some algos use JiT in combinations with a salt or create too much startup time
OPTS_TYPE_MP_MULTI_DISABLE = (1ULL << 50), // do not multiply the kernel-accel with the multiprocessor count per device to allow more fine-tuned workload settings
} opts_type_t;