Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gpusched_parser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GPUSched
gpusched_parser
Commits
313287ac
Commit
313287ac
authored
1 year ago
by
Nordine Feddal
Browse files
Options
Downloads
Patches
Plain Diff
added required for input files
parent
4a570fb0
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main.py
+4
-4
4 additions, 4 deletions
src/main.py
with
4 additions
and
4 deletions
src/main.py
+
4
−
4
View file @
313287ac
...
...
@@ -28,10 +28,10 @@ def write_main(args):
)
def
main
():
parser
=
argparse
.
ArgumentParser
(
description
=
"
Generate a cu file that impelement the schedule graph generated by GPUSCHED
"
)
parser
.
add_argument
(
'
-t
'
,
'
--gpu_tasks
'
,
type
=
str
,
help
=
'
Input file containing GPU Tasks information
'
)
parser
.
add_argument
(
'
-j
'
,
'
--gpu_jobs
'
,
type
=
str
,
help
=
'
Input file containing GPU Jobs information
'
)
parser
.
add_argument
(
'
-s
'
,
'
--schedule
'
,
type
=
str
,
help
=
'
Input file containing the GPUSCHED schedule output
'
)
parser
.
add_argument
(
'
-k
'
,
'
--kernel_declaration
'
,
type
=
str
,
help
=
'
Input file containing cuda kernel declaration
'
)
parser
.
add_argument
(
'
-t
'
,
'
--gpu_tasks
'
,
type
=
str
,
help
=
'
Input file containing GPU Tasks information
'
,
required
=
True
)
parser
.
add_argument
(
'
-j
'
,
'
--gpu_jobs
'
,
type
=
str
,
help
=
'
Input file containing GPU Jobs information
'
,
required
=
True
)
parser
.
add_argument
(
'
-s
'
,
'
--schedule
'
,
type
=
str
,
help
=
'
Input file containing the GPUSCHED schedule output
'
,
required
=
True
)
parser
.
add_argument
(
'
-k
'
,
'
--kernel_declaration
'
,
type
=
str
,
help
=
'
Input file containing cuda kernel declaration
'
,
required
=
True
)
parser
.
add_argument
(
'
-o
'
,
'
--output_file
'
,
type
=
str
,
default
=
'
gpusched_impl.cu
'
,
help
=
'
Output file containing the implementation of GPUSCHED
'
)
parser
.
add_argument
(
'
-v
'
,
'
--version
'
,
action
=
'
version
'
,
version
=
'
%(prog)s 0.1
'
)
...
...
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