Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
adaface-neurips
/
adaface-animate
like
33
Running
on
Zero
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
a29cf91
adaface-animate
/
ConsistentID
/
lib
/
BiSeNet
/
modules
/
src
/
utils
/
checks.h
adaface-neurips
Update model to consistentid, arc2face joint model
ad88a0b
4 months ago
raw
Copy download link
history
blame
Safe
549 Bytes
#
pragma
once
#
include
<ATen/ATen.h>
// Define AT_CHECK for old version of ATen where the same function was called AT_ASSERT
#
ifndef
AT_CHECK
#
define
AT_CHECK AT_ASSERT
#
endif
#
define
CHECK_CUDA(x) AT_CHECK((x).type().is_cuda(), #x
" must be a CUDA tensor"
)
#
define
CHECK_CPU(x) AT_CHECK(!(x).type().is_cuda(), #x
" must be a CPU tensor"
)
#
define
CHECK_CONTIGUOUS(x) AT_CHECK((x).is_contiguous(), #x
" must be contiguous"
)
#
define
CHECK_CUDA_INPUT(x) CHECK_CUDA(x); CHECK_CONTIGUOUS(x)
#
define
CHECK_CPU_INPUT(x) CHECK_CPU(x); CHECK_CONTIGUOUS(x)