Advertisement
fernandomayer

inla-binaries

Jun 21st, 2024
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 4.66 KB | None | 0 0
  1. ##----------------------------------------------------------------------
  2. ## OSs
  3. os <- c(
  4.     "CentOS Linux-6",
  5.     "CentOS Linux-7",
  6.     "CentOS Linux-8",
  7.     "CentOS Stream-8",
  8.     "Rocky Linux-8",
  9.     "Rocky Linux-9",
  10.     "Fedora-33",
  11.     "Fedora-34",
  12.     "Fedora Linux-35",
  13.     "Fedora Linux-36",
  14.     "Fedora Linux-37",
  15.     "Fedora Linux-38",
  16.     "Fedora Linux-39",
  17.     "Fedora Linux-40",
  18.     "Ubuntu-16.04",
  19.     "Ubuntu-18.04",
  20.     "Ubuntu-20.04",
  21.     "Ubuntu-22.04",
  22.     "Ubuntu-24.04"
  23. )
  24.  
  25. options(timeout = 600)
  26. inla.binary.install(os = os[19])
  27.  
  28. ##----------------------------------------------------------------------
  29. ## "Ubuntu-24.04"
  30. ## Pardiso OK
  31.  
  32. ## Optimise using DEFAULT METHOD
  33. ## malloc(): invalid size (unsorted)
  34. ## Error in inla.core.safe(formula = formula, family = family, contrasts = contrasts,  :
  35. ##     The inla-program exited with an error. Unless you interupted it yourself, please rerun with verbose=TRUE and check the output carefully.
  36. ##     If this does not help, please contact the developers at <[email protected]>.
  37. ##     The inla program failed and the maximum number of tries has been reached.
  38.  
  39. ##----------------------------------------------------------------------
  40. ## "Ubuntu-22.04"
  41. ## > inla.pardiso.check()
  42. ## sh: symbol lookup error: sh: undefined symbol: rl_trim_arg_from_keyseq
  43. ## sh: symbol lookup error: sh: undefined symbol: rl_trim_arg_from_keyseq
  44. ## [1] "[Panua] Internal error 0x3c"
  45. ## attr(,"status")
  46. ## [1] 60
  47. ## Warning message:
  48. ##             In system(paste(shQuote(inla.call.no.remote()), "-m pardiso"), intern = TRUE) :
  49. ##                    running command ''/home/mayer/R/library/INLA/bin/linux/64bit/inla.mkl.run' -m pardiso' had status 60
  50.  
  51.  
  52. ##----------------------------------------------------------------------
  53. ## From "Ubuntu-16.04" to "Ubuntu-20.04"
  54.  
  55. ## * Looking for Version_24.06.19 and os=Ubuntu-16.04
  56. ## Error in inla.binary.install(os = os[15]) :
  57. ##              Sorry, os=Ubuntu-16.04 is not available for Version_24.06.19
  58.  
  59. ##----------------------------------------------------------------------
  60. ## "Fedora Linux-40"
  61. ## > inla.pardiso.check()
  62. ## flexiblas  Failed to load the BLAS fallback library.  Abort!
  63.  
  64. ##----------------------------------------------------------------------
  65. ## From "Fedora-33" to "Fedora Linux-39"
  66.  
  67. ## * Looking for Version_24.06.19 and os=Fedora-33
  68. ## Error in inla.binary.install(os = os[7]) :
  69. ##              Sorry, os=Fedora-33 is not available for Version_24.06.19
  70.  
  71. ##----------------------------------------------------------------------
  72. ## "Rocky Linux-9"
  73. ## > inla.pardiso.check()
  74. ## flexiblas  Failed to load the BLAS fallback library.  Abort!
  75.  
  76. ##----------------------------------------------------------------------
  77. ## "Rocky Linux-8"
  78. ## Pardiso OK
  79.  
  80. ## Optimise using DEFAULT METHOD
  81. ## malloc(): invalid size (unsorted)
  82. ## munmap_chunk(): invalid pointer
  83. ## Error in inla.core.safe(formula = formula, family = family, contrasts = contrasts,  :
  84. ##     The inla-program exited with an error. Unless you interupted it yourself, please rerun with verbose=TRUE and check the output carefully.
  85. ##     If this does not help, please contact the developers at <[email protected]>.
  86. ##     The inla program failed and the maximum number of tries has been reached.
  87.  
  88. ##----------------------------------------------------------------------
  89. ## "CentOS Stream-8"
  90. ## * Looking for Version_24.06.19 and os=CentOS Stream-8
  91. ## Error in inla.binary.install(os = os[4]) :
  92. ##  Sorry, os=CentOS Stream-8 is not available for Version_24.06.19
  93.  
  94. ##----------------------------------------------------------------------
  95. ##  "CentOS Linux-8"
  96. ## * Looking for Version_24.06.19 and os=CentOS Linux-8
  97. ## Error in inla.binary.install(os = os[3]) :
  98. ##  Sorry, os=CentOS Linux-8 is not available for Version_24.06.19
  99.  
  100. ##----------------------------------------------------------------------
  101. ## "CentOS Linux-7"
  102. ## Pardiso OK
  103.  
  104. ## Optimise using DEFAULT METHOD
  105. ## malloc(): invalid size (unsorted)
  106. ## munmap_chunk(): invalid pointer
  107. ## Error in inla.core.safe(formula = formula, family = family, contrasts = contrasts,  :
  108. ##  The inla-program exited with an error. Unless you interupted it yourself, please rerun with verbose=TRUE and check the output carefully.
  109. ##     If this does not help, please contact the developers at <[email protected]>.
  110. ##     The inla program failed and the maximum number of tries has been reached.
  111.  
  112. ##----------------------------------------------------------------------
  113. ## "CentOS Linux-6"
  114. ## * Looking for Version_24.06.19 and os=CentOS Linux-6
  115. ## Error in inla.binary.install(os = os[1]) :
  116. ## Sorry, os=CentOS Linux-6 is not available for Version_24.06.19
  117.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement