CoolFace
Datasetpublic

echodict/llama.cpp

version https://git-lfs.github.com/spec/v1 oid sha256:cfc44b7ba25614df70e6b65e3341cae0310163bd32fd31a6b928a542df433faf size 30786

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes773downloads
.clang-format172 linesDownload Raw Back to root
1---2Language:        Cpp3AlignAfterOpenBracket: Align4AlignArrayOfStructures: Left5AlignConsecutiveAssignments: AcrossComments6AlignConsecutiveBitFields: AcrossComments7AlignConsecutiveDeclarations: AcrossComments8AlignConsecutiveMacros: AcrossComments9# AlignConsecutiveShortCaseStatements: AcrossComments10AlignEscapedNewlines: Left # LeftWithLastLine11AlignOperands:   Align12AlignTrailingComments:13  Kind: Always14  OverEmptyLines: 115AllowAllArgumentsOnNextLine: true16AllowAllParametersOfDeclarationOnNextLine: false17# AllowBreakBeforeNoexceptSpecifier: OnlyWithParen18AllowShortBlocksOnASingleLine: Never19AllowShortCaseLabelsOnASingleLine: false20AllowShortFunctionsOnASingleLine: Inline21AllowShortIfStatementsOnASingleLine: Never22AllowShortLambdasOnASingleLine: Inline23AllowShortLoopsOnASingleLine: false24AlwaysBreakBeforeMultilineStrings: true25# Treat CUDA keywords/attributes as "attribute macros" and avoid breaking lines inside them26AttributeMacros:27  - __host__28  - __device__29  - __global__30  - __forceinline__31  - __launch_bounds__32BinPackArguments: true33BinPackParameters: false # OnePerLine34BitFieldColonSpacing: Both35BreakBeforeBraces: Custom # Attach36BraceWrapping:37  AfterCaseLabel:  true38  AfterClass:      false39  AfterControlStatement: false40  AfterEnum:       false41  AfterFunction:   false42  AfterNamespace:  false43  AfterObjCDeclaration: false44  AfterStruct:     false45  AfterUnion:      false46  AfterExternBlock: false47  BeforeCatch:     false48  BeforeElse:      false49  BeforeLambdaBody: false50  BeforeWhile: false51  IndentBraces:    false52  SplitEmptyFunction: false53  SplitEmptyRecord: false54  SplitEmptyNamespace: false55# BreakAdjacentStringLiterals: true56BreakAfterAttributes: Never57BreakBeforeBinaryOperators: None58BreakBeforeInlineASMColon: OnlyMultiline59BreakBeforeTernaryOperators: false60# BreakBinaryOperations: Never61BreakConstructorInitializers: AfterColon62# BreakFunctionDefinitionParameters: false63BreakInheritanceList: AfterComma64BreakStringLiterals: true65# BreakTemplateDeclarations: Yes66ColumnLimit:     12067CommentPragmas:  '^ IWYU pragma:'68CompactNamespaces: false69ConstructorInitializerIndentWidth: 470ContinuationIndentWidth: 471Cpp11BracedListStyle: false72DerivePointerAlignment: false73DisableFormat:   false74EmptyLineBeforeAccessModifier: Leave75EmptyLineAfterAccessModifier: Never76ExperimentalAutoDetectBinPacking: false77FixNamespaceComments: true78IncludeBlocks:   Regroup79IncludeCategories:80  - Regex:           '".*"'81    Priority:        182    SortPriority:    083  - Regex:           '^<.*\.h>'84    Priority:        285    SortPriority:    086  - Regex:           '^<.*'87    Priority:        388    SortPriority:    089  - Regex:           '.*'90    Priority:        491    SortPriority:    092IncludeIsMainRegex: '([-_](test|unittest))?$'93IncludeIsMainSourceRegex: ''94IndentAccessModifiers: false95IndentCaseBlocks: true96IndentCaseLabels: true97IndentExternBlock: NoIndent98IndentGotoLabels: false99IndentPPDirectives: AfterHash100IndentWidth:     4101IndentWrappedFunctionNames: false102InsertBraces:    true # NOTE: may lead to incorrect formatting103InsertNewlineAtEOF: true104JavaScriptQuotes: Leave105JavaScriptWrapImports: true106KeepEmptyLinesAtTheStartOfBlocks: false107LambdaBodyIndentation: Signature108LineEnding: LF109MacroBlockBegin: ''110MacroBlockEnd:   ''111MaxEmptyLinesToKeep: 1112NamespaceIndentation: None113ObjCBinPackProtocolList: Auto114ObjCBlockIndentWidth: 4115ObjCSpaceAfterProperty: true116ObjCSpaceBeforeProtocolList: true117PPIndentWidth: -1118PackConstructorInitializers: CurrentLine119PenaltyBreakAssignment: 2120PenaltyBreakBeforeFirstCallParameter: 1121PenaltyBreakComment: 300122PenaltyBreakFirstLessLess: 120123PenaltyBreakString: 1000124PenaltyBreakTemplateDeclaration: 10125PenaltyExcessCharacter: 1000000126PenaltyReturnTypeOnItsOwnLine: 200127PointerAlignment: Middle128QualifierAlignment: Left129#QualifierOrder: ['static', 'inline', 'friend', 'constexpr', 'const', 'volatile', 'type', 'restrict']130RawStringFormats:131  - Language:        Cpp132    Delimiters:133      - cc134      - CC135      - cpp136      - Cpp137      - CPP138      - 'c++'139      - 'C++'140    CanonicalDelimiter: ''141ReferenceAlignment: Middle142ReflowComments:  false # IndentOnly143SeparateDefinitionBlocks: Always144SortIncludes:    CaseInsensitive145SortUsingDeclarations: LexicographicNumeric146SpaceAfterCStyleCast: true147SpaceAfterLogicalNot: false148SpaceAfterTemplateKeyword: true149SpaceBeforeAssignmentOperators: true150SpaceBeforeCpp11BracedList: false151SpaceBeforeCtorInitializerColon: true152SpaceBeforeInheritanceColon: true153SpaceBeforeParens: ControlStatements154SpaceBeforeRangeBasedForLoopColon: true155SpaceInEmptyBlock: false156SpaceInEmptyParentheses: false157SpacesBeforeTrailingComments: 2158SpacesInAngles:  Never159SpacesInContainerLiterals: true160SpacesInLineCommentPrefix:161  Minimum: 1162  Maximum: -1163SpacesInParentheses: false164SpacesInSquareBrackets: false165SpaceBeforeSquareBrackets: false166Standard:        c++17167TabWidth:        4168UseTab:          Never169WhitespaceSensitiveMacros: ['STRINGIZE']170...171 172