Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Input validation using operations #454

Merged
merged 10 commits into from
Mar 14, 2020
Merged

Conversation

aghinsa
Copy link
Contributor

@aghinsa aghinsa commented Mar 5, 2020

fixes #382

@aghinsa aghinsa changed the title WIP : Input validation using operations Input validation using operations Mar 5, 2020
self.__inputs.remove(x)
break

def remove_unvalidated_inputs(self) -> List[Input]:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We probably want this to return a MemoryInputSet.

parents=parents,
origin=(operation.instance_name, key),
)
new_Input = Input(

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
new_Input = Input(
new_input = Input(

)
new_Input.validated = set_valid

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
new_Input.validated = set_valid
new_input.validated = set_valid

)
new_Input.validated = set_valid
inputs.append(new_Input)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
inputs.append(new_Input)
inputs.append(new_input)

@johnandersen777
Copy link

Can you merge master and make those small changes. Thanks!

@aghinsa
Copy link
Contributor Author

aghinsa commented Mar 14, 2020

Can you merge master and make those small changes. Thanks!

done

Signed-off-by: John Andersen <[email protected]>
@johnandersen777 johnandersen777 merged commit f87b180 into intel:master Mar 14, 2020
@aghinsa aghinsa deleted the op_val branch June 4, 2020 17:15
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

df: types: Input validation option to use operations within DataFlow
3 participants