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

suppress errors in fbpcs #2406

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
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
2 changes: 2 additions & 0 deletions fbpcs/private_computation/service/pcf2_lift_stage_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,9 @@ def get_game_args(
if private_computation_instance.has_feature(
PCSFeature.PRIVATE_LIFT_UNIFIED_DATA_PROCESS
):
# pyre-fixme[61]: `shards_per_file` is undefined, or not always defined.
game_args["file_start_index"] = sum(shards_per_file[0:shard])
# pyre-fixme[61]: `shards_per_file` is undefined, or not always defined.
game_args["num_files"] = shards_per_file[shard]
game_args["input_base_path"] = (
private_computation_instance.pcf2_lift_metadata_compaction_output_base_path
Expand Down