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 contiguous TL buffer from Coco Reader tests #3351

Merged
merged 1 commit into from
Sep 20, 2021

Conversation

klecki
Copy link
Contributor

@klecki klecki commented Sep 17, 2021

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

Remove access to contiguous TL buffer from Coco Reader tests.
Introduce sample-by-sample copies.

Additional information

  • Affected modules and functionalities:
    Coco reader 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: N/A

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

klecki commented Sep 17, 2021

!build

@dali-automaton
Copy link
Collaborator

CI MESSAGE: [3004698]: BUILD STARTED

@JanuszL JanuszL self-assigned this Sep 17, 2021
shape[sample_idx].num_elements() * sizeof(int));
out_ptr += shape[sample_idx].num_elements();
}
cudaStreamSynchronize(0);
Copy link
Contributor

Choose a reason for hiding this comment

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

You don't need that. You are using pagable memory in the copy so it syncs by definition.

boxes_shape[sample_idx].num_elements() * sizeof(float));
boxes_ptr += boxes_shape[sample_idx].num_elements();
}
cudaStreamSynchronize(0);
Copy link
Contributor

Choose a reason for hiding this comment

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

As above

labels_shape[sample_idx].num_elements() * sizeof(int));
labels_ptr += labels_shape[sample_idx].num_elements();
}
cudaStreamSynchronize(0);
Copy link
Contributor

Choose a reason for hiding this comment

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

Again

vertices_shape[sample_idx].num_elements() * sizeof(float));
vertices_ptr += vertices_shape[sample_idx].num_elements();
}
cudaStreamSynchronize(0);
Copy link
Contributor

Choose a reason for hiding this comment

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

Same

@dali-automaton
Copy link
Collaborator

CI MESSAGE: [3004698]: BUILD PASSED

@klecki klecki merged commit 5661b20 into NVIDIA:main Sep 20, 2021
cyyever pushed a commit to cyyever/DALI that referenced this pull request Oct 17, 2021
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jan 23, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jan 23, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jan 23, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jan 23, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jan 23, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jan 23, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jan 23, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jan 23, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jan 23, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jan 23, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jan 23, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jan 23, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jan 23, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Feb 21, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
@JanuszL JanuszL mentioned this pull request Mar 30, 2022
cyyever pushed a commit to cyyever/DALI that referenced this pull request May 13, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
cyyever pushed a commit to cyyever/DALI that referenced this pull request Jun 7, 2022
…3351)

Introduce sample-by-sample copies.

Signed-off-by: Krzysztof Lecki <klecki@nvidia.com>
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