Skip to content

Commit

Permalink
Merge branch 'ar/audio_support_2_to_decibels' into sn/to_decibels
Browse files Browse the repository at this point in the history
  • Loading branch information
r-abishek committed Nov 14, 2023
2 parents 527ed18 + 6b2add5 commit 7753fda
Show file tree
Hide file tree
Showing 187 changed files with 9,958 additions and 2,114 deletions.
25 changes: 18 additions & 7 deletions .Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = "RPP"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "V1.3.0"
PROJECT_NUMBER = "V1.5.0"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down Expand Up @@ -945,11 +945,21 @@ WARN_LOGFILE =

INPUT = README.md \
include/rpp.h \
include/rppcore.h \
include/rppi.h \
include/rppt.h \
include/rppversion.h \
include/rppdefs.h \
include/rppi_advanced_augmentations.h \
include/rppi_arithmetic_operations.h \
include/rppi_color_model_conversions.h \
include/rppi_computer_vision.h \
include/rppi_filter_operations.h \
include/rppi_fused_functions.h \
include/rppi_geometry_transforms.h \
include/rppi_image_augmentations.h \
include/rppi_logical_operations.h \
include/rppi_morphological_transforms.h \
include/rppi_statistical_operations.h \
include/rppt_tensor_color_augmentations.h \
include/rppt_tensor_data_exchange_operations.h \
include/rppt_tensor_effects_augmentations.h \
Expand Down Expand Up @@ -1108,7 +1118,8 @@ EXAMPLE_RECURSIVE = NO
# that contain images that are to be included in the documentation (see the
# \image command).

IMAGE_PATH =
IMAGE_PATH = docs/data/doxygenInputs \
docs/data/doxygenOutputs

# The INPUT_FILTER tag can be used to specify a program that doxygen should
# invoke to filter for each input file. Doxygen will invoke the filter program
Expand Down Expand Up @@ -1714,7 +1725,7 @@ FULL_SIDEBAR = NO
# Minimum value: 0, maximum value: 20, default value: 4.
# This tag requires that the tag GENERATE_HTML is set to YES.

ENUM_VALUES_PER_LINE = 4
ENUM_VALUES_PER_LINE = 1

# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
# to set the initial width (in pixels) of the frame in which the tree is shown.
Expand Down Expand Up @@ -2327,15 +2338,15 @@ ENABLE_PREPROCESSING = YES
# The default value is: NO.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.

MACRO_EXPANSION = NO
MACRO_EXPANSION = YES

# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
# the macro expansion is limited to the macros specified with the PREDEFINED and
# EXPAND_AS_DEFINED tags.
# The default value is: NO.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.

EXPAND_ONLY_PREDEF = NO
EXPAND_ONLY_PREDEF = YES

# If the SEARCH_INCLUDES tag is set to YES, the include files in the
# INCLUDE_PATH will be searched if a #include is found.
Expand Down Expand Up @@ -2368,7 +2379,7 @@ INCLUDE_FILE_PATTERNS =
# recursively expanded use the := operator instead of the = operator.
# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.

PREDEFINED =
PREDEFINED = GPU_SUPPORT RPP_BACKEND_HIP HIP_COMPILE

# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
# tag can be used to specify a list of macro names that should be expanded. The
Expand Down
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
version: 2
updates:
- package-ecosystem: "pip" # See documentation for possible values
directory: "/docs/.sphinx" # Location of package manifests
directory: "/docs/sphinx" # Location of package manifests
open-pull-requests-limit: 10
schedule:
interval: "daily"
target-branch: "develop"
labels:
- "documentation"
- "dependencies"
- "noCI"
- "ci:docs-only"
reviewers:
- "samjwu"
5 changes: 3 additions & 2 deletions .jenkins/common.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@ def runPackageCommand(platform, project) {
cd ${project.paths.project_build_prefix}/build/release
sudo make package
mkdir -p package
mv *.${packageType} package/
${packageInfo} package/*.${packageType}
mv rpp*.${packageType} package/
${packageInfo} package/rpp-dev*.${packageType}
${packageInfo} package/rpp_*.${packageType}
"""

platform.runCommand(this, command)
Expand Down
6 changes: 2 additions & 4 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,9 @@ formats: [htmlzip, pdf, epub]

python:
install:
- requirements: docs/.sphinx/requirements.txt
- requirements: docs/sphinx/requirements.txt

build:
os: ubuntu-20.04
os: ubuntu-22.04
tools:
python: "3.8"
apt_packages:
- "doxygen"
Loading

0 comments on commit 7753fda

Please sign in to comment.