我想使用 Callgrind 来查找一些复杂的 Rcpp 代码中的瓶颈。由于我无法让它工作,我决定改为编写一个简单的 R 文件,以确保它正在做它应该做的事情。
但是,我仍然无法让它工作。
我的简单功能是:
args <- commandArgs(trailingOnly=T)
test_callgrind <- function(args) {
x <- args[1]
a <- 0
for (i in 1:x) {
a <- i
}
return(a)
}
a <- test_callgrind(args)
save(a, file="a.rdata")
然后我输入:
valgrind --tool=callgrind Rscript filename.R 1000
这似乎运行良好,并产生 callgrind.out.XYZ,正如文档所说的那样。
然后我输入:
callgrind_annotate callgrind.out.XYZ
并获得以下信息:
Use of uninitialized value $events in string ne at /usr/bin/callgrind_annotate line 446.
Line 0: missing events line
这与我使用更复杂的代码时遇到的错误完全相同,因此除了函数之外的某些东西有问题。
请问有人知道我做错了什么吗?谢谢。