Skip to content

Commit

Permalink
Resolving review comment and changing version number
Browse files Browse the repository at this point in the history
  • Loading branch information
SundarRajan28 committed Jan 7, 2025
1 parent 6718647 commit 936a04e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rocAL/include/pipeline/master_graph.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ THE SOFTWARE.
#define MAX_SSD_ANCHORS 8732 // Num of bbox achors used in SSD training
#define MAX_MASK_BUFFER 10000
#define MAX_RETINANET_ANCHORS 120087 // Num of bbox achors used in Retinanet training
#define MAX_ASCII_BUFFER 10000 // Max Number of ASCII characters that can be present in any particular extension file for webdataset reader
#define MAX_ASCII_BUFFER 200 // Max Number of ASCII characters that can be present in any particular extension file for webdataset reader

#if ENABLE_SIMD
#if _WIN32
Expand Down
2 changes: 1 addition & 1 deletion rocAL/source/meta_data/webdataset_meta_data_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ void WebDataSetMetaDataReader::parse_sample_description(
// Reading consecutive components
ComponentDescription component;
while (components_stream >> component.ext) {
if (index_version == create_version_number(1, 2)) {
if (index_version == create_version_number(1, 0)) {
if (!(components_stream >> component.offset >> component.size >>
component.filename)) {
THROW(
Expand Down
2 changes: 1 addition & 1 deletion rocAL/source/readers/webdataset_source_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ void WebDatasetSourceReader::parse_sample_description(
// Reading consecutive components
ComponentDescription component;
while (components_stream >> component.ext) {
if (index_version == create_version_number(1, 2)) {
if (index_version == create_version_number(1, 0)) {
if (!(components_stream >> component.offset >> component.size >>
component.filename)) {
THROW( "Could not find all necessary component parameters "
Expand Down

0 comments on commit 936a04e

Please sign in to comment.