vlawhern
vlawhern
So for the first method, the spatial filters are extracted from the ``DepthwiseConv2D`` layer in EEGNet. More specifically, ```python model = EEGNet(...) # define some EEGNet configuration model.fit(...) # fit...
After searching around a bit I'm guessing this issue is due to static linking not being supported in RHEL 8 (see https://access.redhat.com/articles/rhel8-abi-compatibility)... the relevant text is below: _Static Linking with...
So I know that RedHat 8 has kernel 4.18 and Ubuntu 18.04 (confirmed working) has kernel 4.15, so perhaps there's a change there that makes this not work anymore. I...
OK after a lot of trial and error I'm getting fairly close to compiling, I now just get the following error: ``` amica15.f90:220:23: call random_seed(PUT = c1 * (myrank+1) *...
for reference here's my compile command ``` I_MPI_ROOT=~/intel/oneapi/mpi/latest mpif90 -I/home/vernon/intel/oneapi/mkl/2022.2.0/include/ -cpp -fopenmp -O3 -static -DMKL --free-line-length-0 funmod2.f90 amica15.f90 -o amica15test ```
Have a suggested change for that line? I've tried ``` call random_seed(PUT = 999999 * (c1 * (myrank+1) * (seed+myrank+1))) ``` and that didn't fix it..
same error with this: ``` amica15.f90:220:23: call random_seed(PUT = 999999999 * c1 * (myrank+1) * (seed+myrank+1)) 1 Error: Size of ‘put’ argument of ‘random_seed’ intrinsic at (1) too small (2/33)...
so I know nothing about Fortran, but just skimming through the file it seems it's defined here right before the random_seed line ``` call system_clock(c1) call random_seed(PUT = c1 *...
OK my apologies... this issue is because I wasn't using the Intel Fortran compiler.. it appears I have to manually pass in the path to the Intel Fortran compiler to...
the compiled binary apparently appears to be dynamically linked to files in my home directory ``` linux-vdso.so.1 (0x00007ffd453bd000) libiomp5.so => /home/vernon/intel/oneapi/compiler/2022.2.0/linux/compiler/lib/intel64_lin/libiomp5.so (0x00007f4f90aa2000) libmpichfort.so.0 => /usr/lib/x86_64-linux-gnu/libmpichfort.so.0 (0x00007f4f9086a000) libmpich.so.0 => /usr/lib/x86_64-linux-gnu/libmpich.so.0 (0x00007f4f903b4000)...