* Fix CPU hist init for sparse dataset. * Implement sparse histogram cut. * Allow empty features. * Fix windows build, don't use sparse in distributed environment. * Comments. * Smaller threshold. * Fix windows omp. * Fix msvc lambda capture. * Fix MSVC macro. * Fix MSVC initialization list. * Fix MSVC initialization list x2. * Preserve categorical feature behavior. * Rename matrix to sparse cuts. * Reuse UseGroup. * Check for categorical data when adding cut. Co-Authored-By: Philip Hyunsu Cho <chohyu01@cs.washington.edu> * Sanity check. * Fix comments. * Fix comment.
22 lines
1.8 KiB
YAML
22 lines
1.8 KiB
YAML
Checks: 'modernize-*,-modernize-make-*,-modernize-use-auto,-modernize-raw-string-literal,-modernize-avoid-c-arrays,google-*,-google-default-arguments,-clang-diagnostic-#pragma-messages,readability-identifier-naming'
|
|
CheckOptions:
|
|
- { key: readability-identifier-naming.ClassCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.StructCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.TypeAliasCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.TypedefCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.TypeTemplateParameterCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.MemberCase, value: lower_case }
|
|
- { key: readability-identifier-naming.PrivateMemberSuffix, value: '_' }
|
|
- { key: readability-identifier-naming.ProtectedMemberSuffix, value: '_' }
|
|
- { key: readability-identifier-naming.EnumCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.EnumConstant, value: CamelCase }
|
|
- { key: readability-identifier-naming.EnumConstantPrefix, value: k }
|
|
- { key: readability-identifier-naming.GlobalConstantCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.GlobalConstantPrefix, value: k }
|
|
- { key: readability-identifier-naming.StaticConstantCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.StaticConstantPrefix, value: k }
|
|
- { key: readability-identifier-naming.ConstexprVariableCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.ConstexprVariablePrefix, value: k }
|
|
- { key: readability-identifier-naming.FunctionCase, value: CamelCase }
|
|
- { key: readability-identifier-naming.NamespaceCase, value: lower_case }
|