Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
AXERA-TECH
/
FireRedASR-AED
like
0
Follow
AXERA
82
License:
apache-2.0
Model card
Files
Files and versions
xet
Community
main
FireRedASR-AED
/
cpp
/
src
/
librosa
/
eigen3
/
failtest
/
ref_2.cpp
inoryQwQ
Shorten kv cache
90f0b29
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
213 Bytes
#
include
"../Eigen/Core"
using
namespace
Eigen;
void
call_ref
(Ref<VectorXf> a)
{ }
int
main
()
{
MatrixXf
A
(
10
,
10
)
;
#
ifdef
EIGEN_SHOULD_FAIL_TO_BUILD
call_ref
(A.
row
(
3
));
#
else
call_ref
(A.
col
(
3
));
#
endif
}