Skip to content

Commit

Permalink
fitx_path
Browse files Browse the repository at this point in the history
  • Loading branch information
ahomoudi committed Mar 12, 2024
1 parent 8340770 commit 6cb7a14
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
any::xml2
any::microbenchmark
any::ggplot2
any::remotes
any::devtools
any::dotCall64

Expand All @@ -53,9 +52,9 @@ jobs:

- name: Debug
run: |
ls -R
find . -type f -name "*QuartoBook.pdf*" -exec dirname "{}" \; |sort -u
pwd
#ls -R
#find . -type f -name "*QuartoBook.pdf*" -exec dirname "{}" \; |sort -u
#pwd
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
Expand Down
2 changes: 1 addition & 1 deletion QuartoBook/AquaFortR_Codes/cape_f.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cape_f0 <- function(t_parcel, dwpt_parcel, mr_parcel,
p_profile, t_profile, mr_profile,
vtc = TRUE) {
dyn.load("fortran/cape_f.so")
dyn.load("AquaFortR_Codes/cape_f.so")

nlevel <- length(p_profile)
nresult <- 4
Expand Down
2 changes: 1 addition & 1 deletion QuartoBook/AquaFortR_Codes/conv2D_f.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
conv2D_f0 <- function(a, b) {
dyn.load("fortran/conv2D.so")
dyn.load("AquaFortR_Codes/conv2D.so")

# the full convolution matrix
conv_row <- nrow(a) + nrow(b) - 1
Expand Down
2 changes: 1 addition & 1 deletion QuartoBook/AquaFortR_Codes/xcorr2D_f.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
xcorr2D_f0 <- function(a, b) {
# Please adjust the path to your setup. In my machine,
# I have a folder called "fortran" containing all f90 files
dyn.load("fortran/xcorr2D.so")
dyn.load("AquaFortR_Codes/xcorr2D.so")

# the full CC matrix
cc_row <- nrow(a) + nrow(b) - 1
Expand Down

0 comments on commit 6cb7a14

Please sign in to comment.