Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow Kernels for Full FT and Non-Quantized PEFT #79

Merged
merged 19 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixes and updates to benchmark
Signed-off-by: 1000850000 user <aaron.chew1@ibm.com>
  • Loading branch information
achew010 committed Sep 16, 2024
commit 9991375b6deba5b36c8acdfa9b8b766c28b9fab5
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def _update_config_contents(_cfg: Dict, content: Dict, key: str):
for key in _or_keys:
content = _trace_key_path(configuration, key)
if content is not None:
if reject == True:
if reject is True:
# it is an OR key, and if at least one of them specified
# then do not reject
reject = False
Expand Down
2 changes: 1 addition & 1 deletion plugins/fused-ops-and-kernels/tests/test_foak_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
DIRNAME, "../configs/fast_quantized_peft.yaml"
)


@pytest.mark.skip(reason="Installation logic has changed - test to be fixed in future.")
def test_configure_gptq_foak_plugin():
"test foak plugin loads correctly"

Expand Down
Loading
Loading