Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
AXERA-TECH
/
FireRedASR-AED
like
0
Follow
AXERA
140
License:
apache-2.0
Model card
Files
Files and versions
xet
Community
Copy to bucket
new
main
FireRedASR-AED
/
cpp
/
src
/
librosa
/
eigen3
/
failtest
/
ref_3.cpp
inoryQwQ
Shorten kv cache
90f0b29
9 months ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
231 Bytes
#
include
"../Eigen/Core"
using
namespace
Eigen;
#
ifdef
EIGEN_SHOULD_FAIL_TO_BUILD
void
call_ref
(Ref<VectorXf> a)
{ }
#
else
void
call_ref
(
const
Ref<
const
VectorXf> &a)
{ }
#
endif
int
main
()
{
VectorXf
a
(
10
)
;
call_ref
(a+a);
}