소스 검색

Remove memory limits

Bryan Roessler 7 달 전
부모
커밋
9e8a7e9361
1개의 변경된 파일0개의 추가작업 그리고 6개의 파일을 삭제
  1. 0 6
      qhtcp-workflow/apps/r/calculate_interaction_zscores.R

+ 0 - 6
qhtcp-workflow/apps/r/calculate_interaction_zscores.R

@@ -6,16 +6,10 @@ suppressMessages({
   library("rlang")
   library("ggthemes")
   library("data.table")
-  library("unix")
 })
 
 options(warn = 2)
 
-# Set the memory limit to 30GB (30 * 1024 * 1024 * 1024 bytes)
-soft_limit <- 30 * 1024 * 1024 * 1024
-hard_limit <- 30 * 1024 * 1024 * 1024
-invisible(rlimit_as(soft_limit, hard_limit))
-
 # Constants for configuration
 plot_width <- 14
 plot_height <- 9