Skip to content

Commit f42155f

Browse files
author
Vasileios Karakasis
authored
Properly define variables in numpy_check
1 parent 6ab6f6e commit f42155f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cscs-checks/apps/python/numpy_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class cscs_numpy_test(numpy_ops_check):
3838
def set_num_cpus_per_task(self):
3939
self.num_cpus_per_task = self.current_partition.processor.num_cores
4040
self.variables = {
41-
'OMP_NUM_THREADS': self.num_cpus_per_task
41+
'OMP_NUM_THREADS': str(self.num_cpus_per_task)
4242
}
4343

4444
@run_before('performance')

0 commit comments

Comments
 (0)