Closed wkcn closed 5 years ago
@hcho3 Thank you!
I have a question whether it is necessary to declare other types, such as char
, short
?
@wkcn I have no idea. I'm assuming this PR is sufficient for your use case though?
@hcho3 Yes, this PR is sufficient for my use case.
In MXNet,
dim_t
is the type of some parameters, likemx.nd.eye
.However,
dim_t
couldn't be parsed into a string, sincedim_t
is the alias ofint64_t
, which is not registed by dmlc-core type-traits.In this PR, I declare the type name of
int64_t
.