-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fluxion_with_pfa
- Loading branch information
Showing
215 changed files
with
4,974 additions
and
7,464 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
BasedOnStyle : google | ||
SpaceBeforeParens : Always | ||
IndentWidth : 4 | ||
BreakBeforeBraces : Custom | ||
BraceWrapping : | ||
BeforeElse : false | ||
AfterFunction : true | ||
UseTab: Never | ||
AllowShortIfStatementsOnASingleLine : false | ||
ConstructorInitializerAllOnOneLineOrOnePerLine : true | ||
AllowShortFunctionsOnASingleLine : false | ||
AllowShortLoopsOnASingleLine : false | ||
BinPackParameters : false | ||
BinPackArguments : false | ||
AllowAllParametersOfDeclarationOnNextLine : false | ||
AlignTrailingComments : true | ||
ColumnLimit : 100 | ||
|
||
# do not put all arguments on one line unless it's the same line as the call | ||
PenaltyBreakBeforeFirstCallParameter : 10000000 | ||
PenaltyReturnTypeOnItsOwnLine : 65000 | ||
PenaltyBreakString : 10 | ||
|
||
# preserve formatting of arguments to pack/unpack functions | ||
# found by running: rg --only-matching --no-filename --no-line-number '(flux|json)(_[^ ,()]+)?_(un)?pack' | sort -u | ||
WhitespaceSensitiveMacros : | ||
- flux_conf_unpack | ||
- flux_event_pack | ||
- flux_event_publish_pack | ||
- flux_event_unpack | ||
- flux_job_result_get_unpack | ||
- flux_jobspec1_attr_pack | ||
- flux_jobspec1_attr_unpack | ||
- flux_jobspec_info_unpack | ||
- flux_jobtap_event_post_pack | ||
- flux_kvs_lookup_get_unpack | ||
- flux_kvs_lookup_unpack | ||
- flux_kvs_txn_pack | ||
- flux_lookup_get_unpack | ||
- flux_mrpc_pack | ||
- flux_msg_pack | ||
- flux_msg_unpack | ||
- flux_plugin_arg_pack | ||
- flux_plugin_arg_unpack | ||
- flux_plugin_args_unpack | ||
- flux_plugin_conf_unpack | ||
- flux_request_unpack | ||
- flux_respond_pack | ||
- flux_rpc_get_unpack | ||
- flux_rpc_pack | ||
- flux_shell_getopt_unpack | ||
- flux_shell_info_unpack | ||
- flux_shell_jobspec_info_unpack | ||
- flux_shell_rank_info_unpack | ||
- flux_shell_rpc_pack | ||
- flux_shell_setopt_pack | ||
- flux_shell_setopt_unpack | ||
- flux_shell_task_info_unpack | ||
- json_pack | ||
- json_unpack | ||
|
||
# treat foreach macros as for loops | ||
ForEachMacros : | ||
- json_array_foreach | ||
- json_object_foreach | ||
|
||
SortIncludes : false | ||
BreakBeforeBinaryOperators : NonAssignment | ||
AlignAfterOpenBracket: Align | ||
AlignOperands : true | ||
BreakBeforeTernaryOperators : true | ||
SpaceBeforeSquareBrackets: false | ||
IndentPPDirectives: None | ||
NamespaceIndentation: None | ||
SpaceAfterTemplateKeyword: false | ||
DerivePointerAlignment: false | ||
PointerAlignment: Right | ||
|
||
# | ||
# vi:tabstop=4 shiftwidth=4 expandtab ft=yaml | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{ | ||
"version": 6, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 23, | ||
"patch": 0 | ||
}, | ||
"include": [ | ||
], | ||
"configurePresets": [ | ||
{ | ||
"name": "default", | ||
"displayName": "Default Config", | ||
"description": "Default build using Ninja generator", | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/build/default", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "RelWithDebInfo" | ||
}, | ||
"environment": {}, | ||
"vendor": {} | ||
}, | ||
{ | ||
"name": "asan", | ||
"displayName": "Debug with address sanitizer", | ||
"description": "ASAN build using Ninja generator", | ||
"inherits": "default", | ||
"binaryDir": "${sourceDir}/build/asan", | ||
"cacheVariables": { | ||
"SANITIZE_ADDRESS": "ON" | ||
} | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "default", | ||
"configurePreset": "default" | ||
}, | ||
{ | ||
"name": "asan", | ||
"configurePreset": "asan" | ||
} | ||
], | ||
"testPresets": [ | ||
{ | ||
"name": "default", | ||
"configurePreset": "default", | ||
"output": { | ||
"outputOnFailure": true | ||
}, | ||
"execution": { | ||
"noTestsAction": "error", | ||
"stopOnFailure": true | ||
} | ||
}, | ||
{ | ||
"name": "Asan", | ||
"configurePreset": "asan", | ||
"output": { | ||
"outputOnFailure": true, | ||
"verbosity": "verbose" | ||
}, | ||
"environment": { | ||
"ASAN_OPTIONS": "detect_leaks=0,start_deactivated=true,replace_str=true,verify_asan_link_order=false" | ||
}, | ||
"execution": { | ||
"noTestsAction": "error", | ||
"stopOnFailure": true | ||
} | ||
} | ||
], | ||
"packagePresets": [ | ||
{ | ||
"name": "default", | ||
"configurePreset": "default", | ||
"generators": [] | ||
} | ||
], | ||
"workflowPresets": [], | ||
"vendor": {} | ||
} |
Oops, something went wrong.