Skip to content

Commit

Permalink
entrypoint updates
Browse files Browse the repository at this point in the history
  • Loading branch information
amandarichardsonn committed Jul 17, 2024
1 parent 724c3bd commit cef1a7e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion smartsim/_core/generation/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,13 @@ def generate_experiment(self) -> str:
dt_string = datetime.now().strftime("%d/%m/%Y %H:%M:%S")
log_file.write(f"Generation start date and time: {dt_string}\n")

# TODO currently will always be true until FeatureStore impl
# TODO update this to execute the file operations when entrypoint is merged in
# if isinstance(Application, type(self.job.entity)):
# file_operation_list = self.build_operations()
# self.execute_file_operations(file_operation_list)
return self.path

# TODO update this to execute the file operations when entrypoint is merged in
def execute_file_operations(
self, file_ops: t.Sequence[t.Sequence[str]]
) -> None: ...
Expand Down Expand Up @@ -189,6 +190,7 @@ def build_operations(self) -> t.Sequence[t.Sequence[str]]:
)
return file_operation_list

# TODO update this to execute the file operations when entrypoint is merged in
def _write_tagged_entity_files(self, configure_file: str) -> t.Sequence[str]:
"""Read, configure and write the tagged input files for
a Application instance within an ensemble. This function
Expand Down

0 comments on commit cef1a7e

Please sign in to comment.