Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SparseTransform
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Paul Nitzke
SparseTransform
Commits
21ccdde2
Commit
21ccdde2
authored
2 years ago
by
Paul Nitzke
Browse files
Options
Downloads
Patches
Plain Diff
Additional documentation
parent
6d7e4215
Branches
Branches containing commit
No related tags found
1 merge request
!19
Various fixes and improvements to the CLI
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/SparseTransform.CLI/CLIOptions/PartitionOptions.cs
+4
-1
4 additions, 1 deletion
src/SparseTransform.CLI/CLIOptions/PartitionOptions.cs
src/SparseTransform.CLI/Formats.cs
+3
-0
3 additions, 0 deletions
src/SparseTransform.CLI/Formats.cs
with
7 additions
and
1 deletion
src/SparseTransform.CLI/CLIOptions/PartitionOptions.cs
+
4
−
1
View file @
21ccdde2
...
...
@@ -2,7 +2,10 @@ using System;
using
CommandLine
;
namespace
CLIOptions
;
[
Verb
(
"Partition"
,
HelpText
=
"Partitions MatrixMarket String"
)]
/// <summary>
/// CLI options for the `partition` command.
/// </summary>
[
Verb
(
"partition"
,
HelpText
=
"Partitions MatrixMarket String"
)]
public
class
PartitionOptions
{
[
Option
(
"input"
,
Required
=
true
,
HelpText
=
"Path to the file containing the MatrixMarket string to read."
)]
...
...
This diff is collapsed.
Click to expand it.
src/SparseTransform.CLI/Formats.cs
+
3
−
0
View file @
21ccdde2
using
System
;
/// <summary>
/// Permitted values for Format CLI option. Checked in Program.
/// </summary>
public
static
class
Formats
{
public
static
readonly
String
ColoredDot
=
"dot"
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment