Skip to content

Commit 06fa342

Browse files
FindHaofacebook-github-bot
authored andcommitted
Update .gitignore and add new test output files (#39)
Summary: - Updated .gitignore to include patterns for `.ndjson`, `.ndjson.gz`, and `.json` files, while ensuring specific test output directories are excluded from being ignored. - Added a new NDJSON log file for complex kernel tests and a corresponding gzipped version for parsed output. - Created a JSON file to list the log files for the complex kernel tests, enhancing the organization of test outputs. These changes improve the management of test output files and enhance the testing framework for Triton kernels. Pull Request resolved: #39 Reviewed By: davidberard98 Differential Revision: D78667099 Pulled By: FindHao fbshipit-source-id: 3d078540adea024706172d8ca561916774a0c71c
1 parent a87f472 commit 06fa342

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed

.gitignore

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,13 @@ MANIFEST
5050
.coverage
5151
htmlcov/
5252
parsed_output/
53+
*.ndjson
54+
*.ndjson.gz
55+
*.json
5356
!tests/example_output/
54-
!tests/example_output/parsed_output/
55-
!tests/example_output/logs/
57+
!tests/example_output/logs/**
58+
!tests/example_output/parsed_output/**
59+
!tests/example_output/parsed_output_complex/**
5660
.tox/
5761
.nox/
5862
.hypothesis/
@@ -63,4 +67,5 @@ ENV/
6367
env.bak/
6468
venv.bak/
6569

70+
6671
# end

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "tritonparse"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
dependencies = [
99
"triton",
1010
]
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"tritonparse_url_prefix": "",
3+
"rank_default": {
4+
"regular_files": [],
5+
"mapped_file": "dedicated_log_triton_trace_findhao__mapped.ndjson.gz",
6+
"rank_suffix": ""
7+
}
8+
}

website/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tritonparse-website",
33
"private": true,
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

0 commit comments

Comments
 (0)