From cef1a7eeb7a2f3cfa628cec4894a33405da3526f Mon Sep 17 00:00:00 2001 From: Amanda Richardson Date: Wed, 17 Jul 2024 11:57:49 -0500 Subject: [PATCH] entrypoint updates --- smartsim/_core/generation/generator.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/smartsim/_core/generation/generator.py b/smartsim/_core/generation/generator.py index 5ff5aa4ace..7ae645b965 100644 --- a/smartsim/_core/generation/generator.py +++ b/smartsim/_core/generation/generator.py @@ -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: ... @@ -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