From 05b2113af47b9ad1d7cb03fc92fc97961ebd5ff0 Mon Sep 17 00:00:00 2001 From: "Karl W. Schulz" Date: Wed, 24 Jan 2024 17:11:39 -0600 Subject: [PATCH] update headers for 2024 calendar year Signed-off-by: Karl W. Schulz [ROCm/rocprofiler-compute commit: d7b6cf81e61537e8023b5c5c39f0c53b1a98a726] --- projects/rocprofiler-compute/LICENSE | 2 +- projects/rocprofiler-compute/cmake/Dockerfile | 2 +- projects/rocprofiler-compute/cmake/rocm_install.sh | 2 +- projects/rocprofiler-compute/docker/docker-entrypoint.sh | 2 +- projects/rocprofiler-compute/src/argparser.py | 2 +- projects/rocprofiler-compute/src/config.py | 2 +- projects/rocprofiler-compute/src/omniperf | 2 +- .../rocprofiler-compute/src/omniperf_analyze/analysis_base.py | 2 +- .../rocprofiler-compute/src/omniperf_analyze/analysis_cli.py | 2 +- .../rocprofiler-compute/src/omniperf_analyze/analysis_webui.py | 2 +- projects/rocprofiler-compute/src/omniperf_base.py | 2 +- .../rocprofiler-compute/src/omniperf_profile/profiler_base.py | 2 +- .../src/omniperf_profile/profiler_rocprof_v1.py | 2 +- .../src/omniperf_profile/profiler_rocprof_v2.py | 2 +- .../src/omniperf_profile/profiler_rocscope.py | 2 +- projects/rocprofiler-compute/src/omniperf_soc/soc_base.py | 2 +- projects/rocprofiler-compute/src/omniperf_soc/soc_gfx906.py | 2 +- projects/rocprofiler-compute/src/omniperf_soc/soc_gfx908.py | 2 +- projects/rocprofiler-compute/src/omniperf_soc/soc_gfx90a.py | 2 +- projects/rocprofiler-compute/src/omniperf_soc/soc_gfx940.py | 2 +- projects/rocprofiler-compute/src/omniperf_soc/soc_gfx941.py | 2 +- projects/rocprofiler-compute/src/omniperf_soc/soc_gfx942.py | 2 +- projects/rocprofiler-compute/src/roofline.py | 2 +- projects/rocprofiler-compute/src/utils/csv_processor.py | 2 +- projects/rocprofiler-compute/src/utils/file_io.py | 2 +- projects/rocprofiler-compute/src/utils/gfx_perfmon_builder.py | 2 +- projects/rocprofiler-compute/src/utils/gui.py | 2 +- projects/rocprofiler-compute/src/utils/gui_components/header.py | 2 +- .../rocprofiler-compute/src/utils/gui_components/memchart.py | 2 +- projects/rocprofiler-compute/src/utils/mem_chart.py | 2 +- projects/rocprofiler-compute/src/utils/parser.py | 2 +- projects/rocprofiler-compute/src/utils/remove_workload.py | 2 +- projects/rocprofiler-compute/src/utils/resources.py | 2 +- projects/rocprofiler-compute/src/utils/roofline_calc.py | 2 +- projects/rocprofiler-compute/src/utils/schema.py | 2 +- projects/rocprofiler-compute/src/utils/specs.py | 2 +- projects/rocprofiler-compute/src/utils/tty.py | 2 +- projects/rocprofiler-compute/src/utils/utils.py | 2 +- projects/rocprofiler-compute/tests/test_utils.py | 2 +- 39 files changed, 39 insertions(+), 39 deletions(-) diff --git a/projects/rocprofiler-compute/LICENSE b/projects/rocprofiler-compute/LICENSE index 057656b358..35783a288e 100644 --- a/projects/rocprofiler-compute/LICENSE +++ b/projects/rocprofiler-compute/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/cmake/Dockerfile b/projects/rocprofiler-compute/cmake/Dockerfile index 766be0894f..346e64aa72 100644 --- a/projects/rocprofiler-compute/cmake/Dockerfile +++ b/projects/rocprofiler-compute/cmake/Dockerfile @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/cmake/rocm_install.sh b/projects/rocprofiler-compute/cmake/rocm_install.sh index 57d2331779..ed86c94127 100755 --- a/projects/rocprofiler-compute/cmake/rocm_install.sh +++ b/projects/rocprofiler-compute/cmake/rocm_install.sh @@ -3,7 +3,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/docker/docker-entrypoint.sh b/projects/rocprofiler-compute/docker/docker-entrypoint.sh index 6a2923f6f3..9cf59ace69 100755 --- a/projects/rocprofiler-compute/docker/docker-entrypoint.sh +++ b/projects/rocprofiler-compute/docker/docker-entrypoint.sh @@ -3,7 +3,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/argparser.py b/projects/rocprofiler-compute/src/argparser.py index 8432b8fbbc..3484c65306 100644 --- a/projects/rocprofiler-compute/src/argparser.py +++ b/projects/rocprofiler-compute/src/argparser.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/config.py b/projects/rocprofiler-compute/src/config.py index ce2cd8596a..fcb017aae9 100644 --- a/projects/rocprofiler-compute/src/config.py +++ b/projects/rocprofiler-compute/src/config.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf b/projects/rocprofiler-compute/src/omniperf index d63ccf2a66..131173f964 100755 --- a/projects/rocprofiler-compute/src/omniperf +++ b/projects/rocprofiler-compute/src/omniperf @@ -3,7 +3,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_analyze/analysis_base.py b/projects/rocprofiler-compute/src/omniperf_analyze/analysis_base.py index 4a7bf659b2..826e297aa4 100644 --- a/projects/rocprofiler-compute/src/omniperf_analyze/analysis_base.py +++ b/projects/rocprofiler-compute/src/omniperf_analyze/analysis_base.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_analyze/analysis_cli.py b/projects/rocprofiler-compute/src/omniperf_analyze/analysis_cli.py index c40c1a9381..b397cda6cd 100644 --- a/projects/rocprofiler-compute/src/omniperf_analyze/analysis_cli.py +++ b/projects/rocprofiler-compute/src/omniperf_analyze/analysis_cli.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_analyze/analysis_webui.py b/projects/rocprofiler-compute/src/omniperf_analyze/analysis_webui.py index 015974cea6..723bf415eb 100644 --- a/projects/rocprofiler-compute/src/omniperf_analyze/analysis_webui.py +++ b/projects/rocprofiler-compute/src/omniperf_analyze/analysis_webui.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_base.py b/projects/rocprofiler-compute/src/omniperf_base.py index 5f67f6003d..8ba29d4533 100644 --- a/projects/rocprofiler-compute/src/omniperf_base.py +++ b/projects/rocprofiler-compute/src/omniperf_base.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_profile/profiler_base.py b/projects/rocprofiler-compute/src/omniperf_profile/profiler_base.py index 9fe3d1264e..428f3ddb0b 100644 --- a/projects/rocprofiler-compute/src/omniperf_profile/profiler_base.py +++ b/projects/rocprofiler-compute/src/omniperf_profile/profiler_base.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_profile/profiler_rocprof_v1.py b/projects/rocprofiler-compute/src/omniperf_profile/profiler_rocprof_v1.py index 4586f0d2ee..350b1363f7 100644 --- a/projects/rocprofiler-compute/src/omniperf_profile/profiler_rocprof_v1.py +++ b/projects/rocprofiler-compute/src/omniperf_profile/profiler_rocprof_v1.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_profile/profiler_rocprof_v2.py b/projects/rocprofiler-compute/src/omniperf_profile/profiler_rocprof_v2.py index eb3d11fcd5..12a7791d0f 100644 --- a/projects/rocprofiler-compute/src/omniperf_profile/profiler_rocprof_v2.py +++ b/projects/rocprofiler-compute/src/omniperf_profile/profiler_rocprof_v2.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_profile/profiler_rocscope.py b/projects/rocprofiler-compute/src/omniperf_profile/profiler_rocscope.py index 69e2b9c336..cc5a90a241 100644 --- a/projects/rocprofiler-compute/src/omniperf_profile/profiler_rocscope.py +++ b/projects/rocprofiler-compute/src/omniperf_profile/profiler_rocscope.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_soc/soc_base.py b/projects/rocprofiler-compute/src/omniperf_soc/soc_base.py index e6b926d482..586068a1a6 100644 --- a/projects/rocprofiler-compute/src/omniperf_soc/soc_base.py +++ b/projects/rocprofiler-compute/src/omniperf_soc/soc_base.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx906.py b/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx906.py index a7fb73090b..e49edf35ef 100644 --- a/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx906.py +++ b/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx906.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx908.py b/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx908.py index 3b194ff429..36ad5678b6 100644 --- a/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx908.py +++ b/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx908.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx90a.py b/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx90a.py index 6d731ecc78..25631513f5 100644 --- a/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx90a.py +++ b/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx90a.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx940.py b/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx940.py index bb15e49015..3e23f630a7 100644 --- a/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx940.py +++ b/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx940.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx941.py b/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx941.py index 6cd3201d69..bea911ac01 100644 --- a/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx941.py +++ b/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx941.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx942.py b/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx942.py index 87f63fe01e..77c21cde5d 100644 --- a/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx942.py +++ b/projects/rocprofiler-compute/src/omniperf_soc/soc_gfx942.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/roofline.py b/projects/rocprofiler-compute/src/roofline.py index 4dd258c599..51ec17f654 100644 --- a/projects/rocprofiler-compute/src/roofline.py +++ b/projects/rocprofiler-compute/src/roofline.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/csv_processor.py b/projects/rocprofiler-compute/src/utils/csv_processor.py index 5795b0b07d..43bb5bb49b 100644 --- a/projects/rocprofiler-compute/src/utils/csv_processor.py +++ b/projects/rocprofiler-compute/src/utils/csv_processor.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/file_io.py b/projects/rocprofiler-compute/src/utils/file_io.py index 0c50911112..47479eab80 100644 --- a/projects/rocprofiler-compute/src/utils/file_io.py +++ b/projects/rocprofiler-compute/src/utils/file_io.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/gfx_perfmon_builder.py b/projects/rocprofiler-compute/src/utils/gfx_perfmon_builder.py index c5a77908ac..381eb36ab3 100755 --- a/projects/rocprofiler-compute/src/utils/gfx_perfmon_builder.py +++ b/projects/rocprofiler-compute/src/utils/gfx_perfmon_builder.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/gui.py b/projects/rocprofiler-compute/src/utils/gui.py index 3b4f64daed..60d98cbf2d 100644 --- a/projects/rocprofiler-compute/src/utils/gui.py +++ b/projects/rocprofiler-compute/src/utils/gui.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/gui_components/header.py b/projects/rocprofiler-compute/src/utils/gui_components/header.py index 8239a75f82..9c800930ac 100644 --- a/projects/rocprofiler-compute/src/utils/gui_components/header.py +++ b/projects/rocprofiler-compute/src/utils/gui_components/header.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/gui_components/memchart.py b/projects/rocprofiler-compute/src/utils/gui_components/memchart.py index d9bd789d88..e8f553169c 100644 --- a/projects/rocprofiler-compute/src/utils/gui_components/memchart.py +++ b/projects/rocprofiler-compute/src/utils/gui_components/memchart.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/mem_chart.py b/projects/rocprofiler-compute/src/utils/mem_chart.py index 243e4d2f6f..686f45e25a 100644 --- a/projects/rocprofiler-compute/src/utils/mem_chart.py +++ b/projects/rocprofiler-compute/src/utils/mem_chart.py @@ -1,7 +1,7 @@ ###############################################################################bl # MIT License # -# Copyright (c) 2022 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/parser.py b/projects/rocprofiler-compute/src/utils/parser.py index 9576a45685..bea814234f 100644 --- a/projects/rocprofiler-compute/src/utils/parser.py +++ b/projects/rocprofiler-compute/src/utils/parser.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/remove_workload.py b/projects/rocprofiler-compute/src/utils/remove_workload.py index 02ba864f59..615a1fc6d1 100755 --- a/projects/rocprofiler-compute/src/utils/remove_workload.py +++ b/projects/rocprofiler-compute/src/utils/remove_workload.py @@ -3,7 +3,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/resources.py b/projects/rocprofiler-compute/src/utils/resources.py index 4986394811..198684261e 100644 --- a/projects/rocprofiler-compute/src/utils/resources.py +++ b/projects/rocprofiler-compute/src/utils/resources.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/roofline_calc.py b/projects/rocprofiler-compute/src/utils/roofline_calc.py index 82ba0a12cc..d32c99cf2b 100644 --- a/projects/rocprofiler-compute/src/utils/roofline_calc.py +++ b/projects/rocprofiler-compute/src/utils/roofline_calc.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/schema.py b/projects/rocprofiler-compute/src/utils/schema.py index a4ce1188f4..5c404304b6 100644 --- a/projects/rocprofiler-compute/src/utils/schema.py +++ b/projects/rocprofiler-compute/src/utils/schema.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/specs.py b/projects/rocprofiler-compute/src/utils/specs.py index 750e9dbf84..99979bd92d 100644 --- a/projects/rocprofiler-compute/src/utils/specs.py +++ b/projects/rocprofiler-compute/src/utils/specs.py @@ -3,7 +3,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/tty.py b/projects/rocprofiler-compute/src/utils/tty.py index b6f9f5c54b..cc673347c4 100644 --- a/projects/rocprofiler-compute/src/utils/tty.py +++ b/projects/rocprofiler-compute/src/utils/tty.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/src/utils/utils.py b/projects/rocprofiler-compute/src/utils/utils.py index 64004b46dc..d3e077cec3 100644 --- a/projects/rocprofiler-compute/src/utils/utils.py +++ b/projects/rocprofiler-compute/src/utils/utils.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/projects/rocprofiler-compute/tests/test_utils.py b/projects/rocprofiler-compute/tests/test_utils.py index e34fba7146..4962055045 100644 --- a/projects/rocprofiler-compute/tests/test_utils.py +++ b/projects/rocprofiler-compute/tests/test_utils.py @@ -1,7 +1,7 @@ ##############################################################################bl # MIT License # -# Copyright (c) 2021 - 2023 Advanced Micro Devices, Inc. All Rights Reserved. +# Copyright (c) 2021 - 2024 Advanced Micro Devices, Inc. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal