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

Remove access to underlying contiguous TL buffer from tests #3319

Merged
merged 6 commits into from
Sep 13, 2021

Conversation

klecki
Copy link
Contributor

@klecki klecki commented Sep 6, 2021

Signed-off-by: Krzysztof Lecki klecki@nvidia.com

Description

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • Refactoring (Redesign of existing code that doesn't affect functionality)
  • Other (e.g. Documentation, Tests, Configuration)

What happened in this PR

Tests access TL on sample basis instead of using underlying contiguous allocation.
Remove some dead code.

Additional information

  • Affected modules and functionalities:
    Tests

  • Key points relevant for the review:

Checklist

Tests

  • Existing tests apply
  • New tests added
    • Python tests
    • GTests
    • Benchmark
    • Other
  • N/A

Documentation

  • Existing documentation applies
  • Documentation updated
    • Docstring
    • Doxygen
    • RST
    • Jupyter
    • Other
  • N/A

DALI team only

Requirements

  • Implements new requirements
  • Affects existing requirements
  • N/A

REQ IDs: N/A

JIRA TASK: DALI-2234

@klecki
Copy link
Contributor Author

klecki commented Sep 8, 2021

!build

@dali-automaton
Copy link
Collaborator

CI MESSAGE: [2937387]: BUILD STARTED

@dali-automaton
Copy link
Collaborator

CI MESSAGE: [2937387]: BUILD PASSED

@klecki klecki marked this pull request as ready for review September 8, 2021 10:30
@@ -35,7 +35,7 @@ void GenerateShapeTestInputs(TensorList<Backend> &out, RNG &rng, int num_samples
}
out.Reset();
out.Resize(shape);
(void)out.template mutable_data<uint8_t>();
out.set_type(TypeInfo::Create<uint8_t>());
Copy link
Collaborator

Choose a reason for hiding this comment

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

Suggested change
out.set_type(TypeInfo::Create<uint8_t>());
out.set_type(TypeTable::GetTypeInfoFromStatic<uint8_t>());

Copy link
Contributor Author

Choose a reason for hiding this comment

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

done

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
@klecki
Copy link
Contributor Author

klecki commented Sep 10, 2021

!build

@dali-automaton
Copy link
Collaborator

CI MESSAGE: [2955620]: BUILD STARTED

@dali-automaton
Copy link
Collaborator

CI MESSAGE: [2955620]: BUILD PASSED

for (size_t n = 0; n < N; n++) {
tl->Resize(uniform_list_shape(N, {kBbStructSize}));
Copy link
Member

Choose a reason for hiding this comment

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

Does this line need to be inside for loop?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Moved accidentally, fixed.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
@klecki
Copy link
Contributor Author

klecki commented Sep 13, 2021

!build

@dali-automaton
Copy link
Collaborator

CI MESSAGE: [2971157]: BUILD STARTED

@dali-automaton
Copy link
Collaborator

CI MESSAGE: [2971157]: BUILD PASSED

@klecki klecki merged commit cd20e0a into NVIDIA:main Sep 13, 2021
@JanuszL JanuszL mentioned this pull request Mar 30, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants