Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
sleepyhead111
/
vllm_fairseq
like
0
ONNX
Safetensors
Model card
Files
Files and versions
xet
Community
main
vllm_fairseq
/
mosesdecoder
/
jam-files
/
engine
/
boehm_gc
/
include
/
leak_detector.h
sleepyhead111
Add files using upload-large-folder tool
0a7c040
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
254 Bytes
#
define
GC_DEBUG
#
include
"gc.h"
#
define
malloc(n) GC_MALLOC(n)
#
define
calloc(m,n) GC_MALLOC((m)*(n))
#
define
free(p) GC_FREE(p)
#
define
realloc(p,n) GC_REALLOC((p),(n))
#
undef
strdup
#
define
strdup(s) GC_STRDUP((s))
#
define
CHECK_LEAKS() GC_gcollect()