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

plaintext-backend: export log for other uses #1567

Merged

Conversation

ZenithalHourlyRate
Copy link
Collaborator

Following #1550 (comment), I was able to persist the log file as a target and the openfhe test can see it. However there are some path problems. The file structure heir-opt would see is

./tests/Examples/openfhe/ckks/dot_product_8f_debug/dot_product_8f.mlir
...
./bazel-out/k8-dbg/bin/tools/heir-opt.runfiles/tk_tcl/library/word.tcl
...
./bazel-out/k8-dbg/bin/tests/Examples/openfhe/ckks/dot_product_8f_debug/dot_product_8f_debug.log

Note the bazel-out/k8-dbg. It means that if we want to import some generated file into heir-opt through the data label, its path is ugly.

The argument for the test is

    data = [
        ":dot_product_8f_debug.log",
    ],
    heir_opt_flags = [
        "--mlir-to-ckks=ciphertext-degree=8 encryption-technique-extended=true plaintext-execution-result-file-name=./bazel-out/k8-dbg/bin/tests/Examples/openfhe/ckks/dot_product_8f_debug/dot_product_8f_debug.log",
        "--scheme-to-openfhe=insert-debug-handler-calls=true",
    ],
...


plaintext_test(
    name = "dot_product_8f_debug_plaintext",
    log_file_name = "dot_product_8f_debug.log",

I have not find a way to turn a local label into path.

@ZenithalHourlyRate
Copy link
Collaborator Author

Get it working with manual expansion of location in rule impl

-    args.add_all(ctx.attr.pass_flags)
+    pass_flags_location_expanded = [ctx.expand_location(flag, ctx.attr.data) for flag in ctx.attr.pass_flags]
+    args.add_all(pass_flags_location_expanded)

@ZenithalHourlyRate ZenithalHourlyRate marked this pull request as ready for review March 17, 2025 02:15
@ZenithalHourlyRate ZenithalHourlyRate force-pushed the plaintext-test-macro branch 2 times, most recently from 41b7ba1 to 6e4bff7 Compare March 18, 2025 05:28
@ZenithalHourlyRate
Copy link
Collaborator Author

Rebased after #1550 is in.

@ZenithalHourlyRate ZenithalHourlyRate force-pushed the plaintext-test-macro branch 2 times, most recently from a0e207f to 8580ec9 Compare March 18, 2025 16:28
@j2kun j2kun added the pull_ready Indicates whether a PR is ready to pull. The copybara worker will import for internal testing label Mar 21, 2025
@ZenithalHourlyRate
Copy link
Collaborator Author

Rebased to resolve merge conflict

@asraa asraa added pull_ready Indicates whether a PR is ready to pull. The copybara worker will import for internal testing and removed pull_ready Indicates whether a PR is ready to pull. The copybara worker will import for internal testing labels Mar 25, 2025
@j2kun
Copy link
Collaborator

j2kun commented Mar 27, 2025

I believe this PR is failing to integrate due to the use of symlinks. Though I know we had used symlinks before, for whatever reason this time it's raising an exception in copybara. I have filed a bug internally, but when I am done with the conference craziness (Monday) I can look into how to migrate this to use bazel filegroup to bring this in line with bazel best practices.

@j2kun
Copy link
Collaborator

j2kun commented Mar 28, 2025

The bug was fixed internally so we will probably be able to merge this as-is in a day or two.

@asraa
Copy link
Collaborator

asraa commented Mar 28, 2025

I can pull it in!

@copybara-service copybara-service bot merged commit 0ca927e into google:main Apr 1, 2025
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pull_ready Indicates whether a PR is ready to pull. The copybara worker will import for internal testing
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants