Jacob Williams
Jacob Williams
I need to look and see what I did... my idea was you could have different step size selection logic depending on the options you set.
To have the test run in the CI, the `read` statement would need to be removed, and all the `stop` statements in the individual tests also. Replace with a loop...
yeah I'm using my fork as an experiment to learn about `f2py` and how to wrap modern fortran. work in progress.
Feel free to use it or get whatever inspiration you need from it. Sure, I'll probably release it as an FPM package at some point.
Interesting, I wonder what the significance of this "magic number" 3333 is. That a large array to put on the stack. when I make the change in my version I...
Were either of the last two posts generated by an AI chat bot?
Thanks! I know next to nothing about these gnu tools. That got me further. I'll tinker with it some more. I guess now it's complaining about not having MKL (which...
Looks like it's trying to link with the x86 MKL: ``` ... ld: warning: directory not found for option '-L/opt/intel/oneapi/mkl/2022.0.0/lib/intel64' ld: warning: ignoring file /opt/intel/oneapi/mkl/2022.0.0/lib/libmkl_intel_lp64.dylib, building for macOS-arm64 but attempting...
I just can't quite get this working. Here's my script. I gave up on conda and now just trying to use homebrew: ```bash #!/bin/bash # now: before running this, install...
update: I've gotten it to compile. The main problem was the presence of the `icc` 32 bit C compiler in my path. Somehow that was messing things up. Once I...