Issue spot by Cineca team
Following code is not correct
KERNEL_p => DEV_VAR(KERNEL%blc)(:,:,:)
Xo_p => DEV_VAR(Xo%blc)(:,:,:)
From my understanding, it should be one of this options
KERNEL_p => DEV_VAR(KERNEL%blc)(1,1,1)
Xo_p => DEV_VAR(Xo%blc)(1,1,1)
KERNEL_p => DEV_VAR(KERNEL%blc)
Xo_p => DEV_VAR(Xo%blc)
KERNEL_p(:,:,:) => DEV_VAR(KERNEL%blc)(:,:,:)
Xo_p(:,:,:) => DEV_VAR(Xo%blc)(:,:,:)
Is this true ? Any documentation where the original code is reported as not correct?
Issue spot by Cineca team
Following code is not correct
From my understanding, it should be one of this options
Is this true ? Any documentation where the original code is reported as not correct?