diff --git a/.github/repos-config.json b/.github/repos-config.json index 151310b462b..06e8b207c6f 100644 --- a/.github/repos-config.json +++ b/.github/repos-config.json @@ -1,104 +1,144 @@ { "repositories": [ { - "name": "MIFin", - "url": "ROCm/MIFin", - "branch": "develop" - }, - { - "name": "MIOpen", + "name": "miopen", + "repo-name": "MIOpen", "url": "ROCm/MIOpen", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "Tensile", + "name": "tensile", + "repo-name": "Tensile", "url": "ROCm/Tensile", - "branch": "develop" + "branch": "develop", + "category": "shared" }, { - "name": "composable_kernel", + "name": "composablekernel", + "repo-name": "composable_kernel", "url": "ROCm/composable_kernel", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "hipBLAS", + "name": "hipblas", + "repo-name": "hipBLAS", "url": "ROCm/hipBLAS", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "hipBLAS-common", + "name": "hipblas-common", + "repo-name": "hipBLAS-common", "url": "ROCm/hipBLAS-common", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "hipBLASLt", + "name": "hipblaslt", + "repo-name": "hipBLASLt", "url": "ROCm/hipBLASLt", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "hipCUB", + "name": "hipcub", + "repo-name": "hipCUB", "url": "ROCm/hipCUB", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "hipFFT", + "name": "hipfft", + "repo-name": "hipFFT", "url": "ROCm/hipFFT", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "hipRAND", + "name": "hiprand", + "repo-name": "hipRAND", "url": "ROCm/hipRAND", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "hipSOLVER", + "name": "hipsolver", + "repo-name": "hipSOLVER", "url": "ROCm/hipSOLVER", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "hipSPARSE", + "name": "hipsparse", + "repo-name": "hipSPARSE", "url": "ROCm/hipSPARSE", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "hipSPARSELt", + "name": "hipsparselt", + "repo-name": "hipSPARSELt", "url": "ROCm/hipSPARSELt", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "rocBLAS", + "name": "rocblas", + "repo-name": "rocBLAS", "url": "ROCm/rocBLAS", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "rocFFT", + "name": "rocfft", + "repo-name": "rocFFT", "url": "ROCm/rocFFT", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "rocPRIM", + "name": "rocprim", + "repo-name": "rocPRIM", "url": "ROCm/rocPRIM", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "rocRAND", + "name": "rocrand", + "repo-name": "rocRAND", "url": "ROCm/rocRAND", - "branch": "develop" + "branch": "develop", + "category": "projects" + }, + { + "name": "rocroller", + "repo-name": "rocRoller", + "url": "ROCm/rocRoller", + "branch": "main", + "category": "shared" }, { - "name": "rocSOLVER", + "name": "rocsolver", + "repo-name": "rocSOLVER", "url": "ROCm/rocSOLVER", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "rocSPARSE", + "name": "rocsparse", + "repo-name": "rocSPARSE", "url": "ROCm/rocSPARSE", - "branch": "develop" + "branch": "develop", + "category": "projects" }, { - "name": "rocThrust", + "name": "rocthrust", + "repo-name": "rocThrust", "url": "ROCm/rocThrust", - "branch": "develop" + "branch": "develop", + "category": "projects" } ] } diff --git a/.github/workflows/initial-setup.yml b/.github/workflows/initial-setup.yml index 2bd6da44ee4..ed8addea8cc 100644 --- a/.github/workflows/initial-setup.yml +++ b/.github/workflows/initial-setup.yml @@ -23,10 +23,15 @@ jobs: - name: Add Repositories to the Monorepo run: | - for repo in $(cat .github/repos-config.json | jq -r '.repositories[].name'); do - url=$(cat .github/repos-config.json | jq -r ".repositories[] | select(.name == \"$repo\") | .url") - branch=$(cat .github/repos-config.json | jq -r ".repositories[] | select(.name == \"$repo\") | .branch") - git subtree add --prefix $repo https://github.com/${url}.git $branch + for row in $(jq -c '.repositories[]' .github/repos-config.json); do + name=$(echo "$row" | jq -r '.name') + repo_name=$(echo "$row" | jq -r '.repo-name') + category=$(echo "$row" | jq -r '.category') + url=$(echo "$row" | jq -r '.url') + branch=$(echo "$row" | jq -r '.branch') + pushd "${category}" + git subtree add --prefix "${name}" https://github.com/${url}.git "$branch" + popd done - name: Push changes to Monorepo diff --git a/.github/workflows/pr-auto-label.yml b/.github/workflows/pr-auto-label.yml index 55a1761d0ac..d8f7e0f11e7 100644 --- a/.github/workflows/pr-auto-label.yml +++ b/.github/workflows/pr-auto-label.yml @@ -42,22 +42,25 @@ jobs: - name: Read repo configurations id: repos_config run: | - repos=$(jq -r '.repositories[].name' .github/repos-config.json | tr '\n' ' ') - echo "repos=$repos" >> "$GITHUB_OUTPUT" + repo_paths=$(jq -r '.repositories[] | "\(.category)/\(.name)"' .github/repos-config.json | tr '\n' ' ') + echo "repo_paths=$repo_paths" >> "$GITHUB_OUTPUT" - name: Apply and remove labels run: | changed_files="${{ steps.files.outputs.changed_files }}" current_labels="${{ steps.current_labels.outputs.current_labels }}" - repos="${{ steps.repos_config.outputs.repos }}" + repo_paths="${{ steps.repos_config.outputs.repo_paths }}" labels_to_add=() labels_to_remove=() - for repo in $repos; do - label="project: ${repo}" + for entry in $repo_paths; do + category_repo="${entry}" # e.g., projects/hipsparse + label_name="${category_repo##*/}" # e.g., hipsparse + label="project: ${label_name}" - if echo "$changed_files" | grep -qE "\b${repo}/"; then + # Use full path with leading slash for exact match + if echo "$changed_files" | grep -qE "\b/${category_repo}/"; then labels_to_add+=("$label") else if echo "$current_labels" | grep -q "$label"; then @@ -69,7 +72,6 @@ jobs: if [ ${#labels_to_add[@]} -gt 0 ]; then echo "Applying labels: ${labels_to_add[*]}" for label in "${labels_to_add[@]}"; do - # Apply each label individually, ensuring labels with spaces are properly quoted gh pr edit "${{ github.event.pull_request.number }}" --add-label "$label" done fi @@ -77,7 +79,6 @@ jobs: if [ ${#labels_to_remove[@]} -gt 0 ]; then echo "Removing labels: ${labels_to_remove[*]}" for label in "${labels_to_remove[@]}"; do - # Remove each label individually, ensuring labels with spaces are properly quoted gh pr edit "${{ github.event.pull_request.number }}" --remove-label "$label" done fi diff --git a/.github/workflows/update-subtrees.yml b/.github/workflows/update-subtrees.yml index b0a6015258b..a608ca33070 100644 --- a/.github/workflows/update-subtrees.yml +++ b/.github/workflows/update-subtrees.yml @@ -27,20 +27,29 @@ jobs: - name: Update Repositories in the Monorepo run: | has_errors=false - for repo in $(cat .github/repos-config.json | jq -r '.repositories[].name'); do - url=$(cat .github/repos-config.json | jq -r ".repositories[] | select(.name == \"$repo\") | .url") - branch=$(cat .github/repos-config.json | jq -r ".repositories[] | select(.name == \"$repo\") | .branch") - git subtree pull --prefix $repo https://github.com/${url}.git $branch || { - has_errors=true - } - # git subtree push --prefix $repo https://github.com/${url}.git $branch || { - # has_errors=true - # } + for row in $(jq -c '.repositories[]' .github/repos-config.json); do + name=$(echo "$row" | jq -r '.name') + repo_name=$(echo "$row" | jq -r '.repo-name') + category=$(echo "$row" | jq -r '.category') + url=$(echo "$row" | jq -r '.url') + branch=$(echo "$row" | jq -r '.branch') + + pushd "${category}" + git subtree pull --prefix "$name" https://github.com/${url}.git "$branch" || { + has_errors=true + } + popd + + # pushd "${category}" + # git subtree push --prefix "$name" https://github.com/${url}.git "$branch" || { + # has_errors=true + # } + # popd done if [ "$has_errors" = true ]; then echo "One or more errors occurred during the repository update." - exit 1 # This will mark the job as failed + exit 1 else git push https://${{ env.MONOREPO_URL }} ${{ env.MONOREPO_BRANCH }} echo "All repositories updated successfully!" diff --git a/.gitmodules b/.gitmodules index 07d13f98928..b55843c509f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,9 @@ [submodule "fin"] - path = MIOpen/fin + path = projects/miopen/fin url = https://github.com/ROCm/MIFin.git branch = develop [submodule "HostLibraryTests/googletest"] - path = Tensile/HostLibraryTests/googletest + path = shared/tensile/HostLibraryTests/googletest url = https://github.com/google/googletest.git branch = master diff --git a/composable_kernel/.azuredevops/rocm-ci.yml b/projects/composablekernel/.azuredevops/rocm-ci.yml similarity index 100% rename from composable_kernel/.azuredevops/rocm-ci.yml rename to projects/composablekernel/.azuredevops/rocm-ci.yml diff --git a/MIOpen/src/composable_kernel/.clang-format b/projects/composablekernel/.clang-format similarity index 100% rename from MIOpen/src/composable_kernel/.clang-format rename to projects/composablekernel/.clang-format diff --git a/composable_kernel/.clang-tidy b/projects/composablekernel/.clang-tidy similarity index 100% rename from composable_kernel/.clang-tidy rename to projects/composablekernel/.clang-tidy diff --git a/composable_kernel/.github/CODEOWNERS b/projects/composablekernel/.github/CODEOWNERS similarity index 100% rename from composable_kernel/.github/CODEOWNERS rename to projects/composablekernel/.github/CODEOWNERS diff --git a/composable_kernel/.github/CONTRIBUTING.md b/projects/composablekernel/.github/CONTRIBUTING.md similarity index 100% rename from composable_kernel/.github/CONTRIBUTING.md rename to projects/composablekernel/.github/CONTRIBUTING.md diff --git a/composable_kernel/.github/ISSUE_TEMPLATE.md b/projects/composablekernel/.github/ISSUE_TEMPLATE.md similarity index 100% rename from composable_kernel/.github/ISSUE_TEMPLATE.md rename to projects/composablekernel/.github/ISSUE_TEMPLATE.md diff --git a/MIOpen/.github/ISSUE_TEMPLATE/config.yml b/projects/composablekernel/.github/ISSUE_TEMPLATE/config.yml similarity index 100% rename from MIOpen/.github/ISSUE_TEMPLATE/config.yml rename to projects/composablekernel/.github/ISSUE_TEMPLATE/config.yml diff --git a/composable_kernel/.github/ISSUE_TEMPLATE/issue_report.yml b/projects/composablekernel/.github/ISSUE_TEMPLATE/issue_report.yml similarity index 100% rename from composable_kernel/.github/ISSUE_TEMPLATE/issue_report.yml rename to projects/composablekernel/.github/ISSUE_TEMPLATE/issue_report.yml diff --git a/composable_kernel/.github/PULL_REQUEST_TEMPLATE.md b/projects/composablekernel/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from composable_kernel/.github/PULL_REQUEST_TEMPLATE.md rename to projects/composablekernel/.github/PULL_REQUEST_TEMPLATE.md diff --git a/composable_kernel/.github/dependabot.yml b/projects/composablekernel/.github/dependabot.yml similarity index 100% rename from composable_kernel/.github/dependabot.yml rename to projects/composablekernel/.github/dependabot.yml diff --git a/composable_kernel/.gitignore b/projects/composablekernel/.gitignore similarity index 100% rename from composable_kernel/.gitignore rename to projects/composablekernel/.gitignore diff --git a/composable_kernel/.pre-commit-config.yaml b/projects/composablekernel/.pre-commit-config.yaml similarity index 100% rename from composable_kernel/.pre-commit-config.yaml rename to projects/composablekernel/.pre-commit-config.yaml diff --git a/MIOpen/.readthedocs.yaml b/projects/composablekernel/.readthedocs.yaml similarity index 100% rename from MIOpen/.readthedocs.yaml rename to projects/composablekernel/.readthedocs.yaml diff --git a/composable_kernel/CHANGELOG.md b/projects/composablekernel/CHANGELOG.md similarity index 100% rename from composable_kernel/CHANGELOG.md rename to projects/composablekernel/CHANGELOG.md diff --git a/composable_kernel/CITATION.cff b/projects/composablekernel/CITATION.cff similarity index 100% rename from composable_kernel/CITATION.cff rename to projects/composablekernel/CITATION.cff diff --git a/composable_kernel/CMakeLists.txt b/projects/composablekernel/CMakeLists.txt similarity index 100% rename from composable_kernel/CMakeLists.txt rename to projects/composablekernel/CMakeLists.txt diff --git a/composable_kernel/CONTRIBUTORS.md b/projects/composablekernel/CONTRIBUTORS.md similarity index 100% rename from composable_kernel/CONTRIBUTORS.md rename to projects/composablekernel/CONTRIBUTORS.md diff --git a/composable_kernel/Config.cmake.in b/projects/composablekernel/Config.cmake.in similarity index 100% rename from composable_kernel/Config.cmake.in rename to projects/composablekernel/Config.cmake.in diff --git a/composable_kernel/Dockerfile b/projects/composablekernel/Dockerfile similarity index 100% rename from composable_kernel/Dockerfile rename to projects/composablekernel/Dockerfile diff --git a/composable_kernel/Dockerfile.compiler b/projects/composablekernel/Dockerfile.compiler similarity index 100% rename from composable_kernel/Dockerfile.compiler rename to projects/composablekernel/Dockerfile.compiler diff --git a/composable_kernel/Jenkinsfile b/projects/composablekernel/Jenkinsfile similarity index 100% rename from composable_kernel/Jenkinsfile rename to projects/composablekernel/Jenkinsfile diff --git a/composable_kernel/LICENSE b/projects/composablekernel/LICENSE similarity index 100% rename from composable_kernel/LICENSE rename to projects/composablekernel/LICENSE diff --git a/composable_kernel/README.md b/projects/composablekernel/README.md similarity index 100% rename from composable_kernel/README.md rename to projects/composablekernel/README.md diff --git a/composable_kernel/TERMINOLOGY.md b/projects/composablekernel/TERMINOLOGY.md similarity index 100% rename from composable_kernel/TERMINOLOGY.md rename to projects/composablekernel/TERMINOLOGY.md diff --git a/composable_kernel/client_example/01_gemm/CMakeLists.txt b/projects/composablekernel/client_example/01_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/01_gemm/CMakeLists.txt rename to projects/composablekernel/client_example/01_gemm/CMakeLists.txt diff --git a/composable_kernel/client_example/01_gemm/README.md b/projects/composablekernel/client_example/01_gemm/README.md similarity index 100% rename from composable_kernel/client_example/01_gemm/README.md rename to projects/composablekernel/client_example/01_gemm/README.md diff --git a/composable_kernel/client_example/01_gemm/gemm.cpp b/projects/composablekernel/client_example/01_gemm/gemm.cpp similarity index 100% rename from composable_kernel/client_example/01_gemm/gemm.cpp rename to projects/composablekernel/client_example/01_gemm/gemm.cpp diff --git a/composable_kernel/client_example/02_gemm_add_add_fastgelu/CMakeLists.txt b/projects/composablekernel/client_example/02_gemm_add_add_fastgelu/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/02_gemm_add_add_fastgelu/CMakeLists.txt rename to projects/composablekernel/client_example/02_gemm_add_add_fastgelu/CMakeLists.txt diff --git a/composable_kernel/client_example/02_gemm_add_add_fastgelu/gemm_add_add_fastgelu.cpp b/projects/composablekernel/client_example/02_gemm_add_add_fastgelu/gemm_add_add_fastgelu.cpp similarity index 100% rename from composable_kernel/client_example/02_gemm_add_add_fastgelu/gemm_add_add_fastgelu.cpp rename to projects/composablekernel/client_example/02_gemm_add_add_fastgelu/gemm_add_add_fastgelu.cpp diff --git a/composable_kernel/client_example/02_gemm_add_add_fastgelu/gemm_add_add_fastgelu_generic.cpp b/projects/composablekernel/client_example/02_gemm_add_add_fastgelu/gemm_add_add_fastgelu_generic.cpp similarity index 100% rename from composable_kernel/client_example/02_gemm_add_add_fastgelu/gemm_add_add_fastgelu_generic.cpp rename to projects/composablekernel/client_example/02_gemm_add_add_fastgelu/gemm_add_add_fastgelu_generic.cpp diff --git a/composable_kernel/client_example/02_gemm_add_add_fastgelu/gemm_add_fastgelu.cpp b/projects/composablekernel/client_example/02_gemm_add_add_fastgelu/gemm_add_fastgelu.cpp similarity index 100% rename from composable_kernel/client_example/02_gemm_add_add_fastgelu/gemm_add_fastgelu.cpp rename to projects/composablekernel/client_example/02_gemm_add_add_fastgelu/gemm_add_fastgelu.cpp diff --git a/composable_kernel/client_example/02_gemm_add_add_fastgelu/gemm_add_fastgelu_generic.cpp b/projects/composablekernel/client_example/02_gemm_add_add_fastgelu/gemm_add_fastgelu_generic.cpp similarity index 100% rename from composable_kernel/client_example/02_gemm_add_add_fastgelu/gemm_add_fastgelu_generic.cpp rename to projects/composablekernel/client_example/02_gemm_add_add_fastgelu/gemm_add_fastgelu_generic.cpp diff --git a/composable_kernel/client_example/02_gemm_add_add_fastgelu/gemm_fastgelu.cpp b/projects/composablekernel/client_example/02_gemm_add_add_fastgelu/gemm_fastgelu.cpp similarity index 100% rename from composable_kernel/client_example/02_gemm_add_add_fastgelu/gemm_fastgelu.cpp rename to projects/composablekernel/client_example/02_gemm_add_add_fastgelu/gemm_fastgelu.cpp diff --git a/composable_kernel/client_example/02_gemm_add_add_fastgelu/gemm_fastgelu_generic.cpp b/projects/composablekernel/client_example/02_gemm_add_add_fastgelu/gemm_fastgelu_generic.cpp similarity index 100% rename from composable_kernel/client_example/02_gemm_add_add_fastgelu/gemm_fastgelu_generic.cpp rename to projects/composablekernel/client_example/02_gemm_add_add_fastgelu/gemm_fastgelu_generic.cpp diff --git a/composable_kernel/client_example/03_gemm_layernorm/CMakeLists.txt b/projects/composablekernel/client_example/03_gemm_layernorm/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/03_gemm_layernorm/CMakeLists.txt rename to projects/composablekernel/client_example/03_gemm_layernorm/CMakeLists.txt diff --git a/composable_kernel/client_example/03_gemm_layernorm/gemm_add_add_layernorm_naive.cpp b/projects/composablekernel/client_example/03_gemm_layernorm/gemm_add_add_layernorm_naive.cpp similarity index 100% rename from composable_kernel/client_example/03_gemm_layernorm/gemm_add_add_layernorm_naive.cpp rename to projects/composablekernel/client_example/03_gemm_layernorm/gemm_add_add_layernorm_naive.cpp diff --git a/composable_kernel/client_example/03_gemm_layernorm/gemm_add_relu_add_layernorm_welford.cpp b/projects/composablekernel/client_example/03_gemm_layernorm/gemm_add_relu_add_layernorm_welford.cpp similarity index 100% rename from composable_kernel/client_example/03_gemm_layernorm/gemm_add_relu_add_layernorm_welford.cpp rename to projects/composablekernel/client_example/03_gemm_layernorm/gemm_add_relu_add_layernorm_welford.cpp diff --git a/composable_kernel/client_example/04_contraction/CMakeLists.txt b/projects/composablekernel/client_example/04_contraction/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/04_contraction/CMakeLists.txt rename to projects/composablekernel/client_example/04_contraction/CMakeLists.txt diff --git a/composable_kernel/client_example/04_contraction/contraction_bilinear_fp32.cpp b/projects/composablekernel/client_example/04_contraction/contraction_bilinear_fp32.cpp similarity index 100% rename from composable_kernel/client_example/04_contraction/contraction_bilinear_fp32.cpp rename to projects/composablekernel/client_example/04_contraction/contraction_bilinear_fp32.cpp diff --git a/composable_kernel/client_example/04_contraction/contraction_bilinear_fp64.cpp b/projects/composablekernel/client_example/04_contraction/contraction_bilinear_fp64.cpp similarity index 100% rename from composable_kernel/client_example/04_contraction/contraction_bilinear_fp64.cpp rename to projects/composablekernel/client_example/04_contraction/contraction_bilinear_fp64.cpp diff --git a/composable_kernel/client_example/04_contraction/contraction_g1m2n3k1_add_xdl_fp16.cpp b/projects/composablekernel/client_example/04_contraction/contraction_g1m2n3k1_add_xdl_fp16.cpp similarity index 100% rename from composable_kernel/client_example/04_contraction/contraction_g1m2n3k1_add_xdl_fp16.cpp rename to projects/composablekernel/client_example/04_contraction/contraction_g1m2n3k1_add_xdl_fp16.cpp diff --git a/composable_kernel/client_example/04_contraction/contraction_scale_fp32.cpp b/projects/composablekernel/client_example/04_contraction/contraction_scale_fp32.cpp similarity index 100% rename from composable_kernel/client_example/04_contraction/contraction_scale_fp32.cpp rename to projects/composablekernel/client_example/04_contraction/contraction_scale_fp32.cpp diff --git a/composable_kernel/client_example/04_contraction/contraction_scale_fp64.cpp b/projects/composablekernel/client_example/04_contraction/contraction_scale_fp64.cpp similarity index 100% rename from composable_kernel/client_example/04_contraction/contraction_scale_fp64.cpp rename to projects/composablekernel/client_example/04_contraction/contraction_scale_fp64.cpp diff --git a/composable_kernel/client_example/05_layernorm/CMakeLists.txt b/projects/composablekernel/client_example/05_layernorm/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/05_layernorm/CMakeLists.txt rename to projects/composablekernel/client_example/05_layernorm/CMakeLists.txt diff --git a/composable_kernel/client_example/05_layernorm/layernorm2d_bwd_data.cpp b/projects/composablekernel/client_example/05_layernorm/layernorm2d_bwd_data.cpp similarity index 100% rename from composable_kernel/client_example/05_layernorm/layernorm2d_bwd_data.cpp rename to projects/composablekernel/client_example/05_layernorm/layernorm2d_bwd_data.cpp diff --git a/composable_kernel/client_example/05_layernorm/layernorm2d_bwd_gamma_beta.cpp b/projects/composablekernel/client_example/05_layernorm/layernorm2d_bwd_gamma_beta.cpp similarity index 100% rename from composable_kernel/client_example/05_layernorm/layernorm2d_bwd_gamma_beta.cpp rename to projects/composablekernel/client_example/05_layernorm/layernorm2d_bwd_gamma_beta.cpp diff --git a/composable_kernel/client_example/05_layernorm/layernorm2d_fwd.cpp b/projects/composablekernel/client_example/05_layernorm/layernorm2d_fwd.cpp similarity index 100% rename from composable_kernel/client_example/05_layernorm/layernorm2d_fwd.cpp rename to projects/composablekernel/client_example/05_layernorm/layernorm2d_fwd.cpp diff --git a/composable_kernel/client_example/05_layernorm/layernorm4d_fwd.cpp b/projects/composablekernel/client_example/05_layernorm/layernorm4d_fwd.cpp similarity index 100% rename from composable_kernel/client_example/05_layernorm/layernorm4d_fwd.cpp rename to projects/composablekernel/client_example/05_layernorm/layernorm4d_fwd.cpp diff --git a/composable_kernel/client_example/06_softmax/CMakeLists.txt b/projects/composablekernel/client_example/06_softmax/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/06_softmax/CMakeLists.txt rename to projects/composablekernel/client_example/06_softmax/CMakeLists.txt diff --git a/composable_kernel/client_example/06_softmax/softmax4d.cpp b/projects/composablekernel/client_example/06_softmax/softmax4d.cpp similarity index 100% rename from composable_kernel/client_example/06_softmax/softmax4d.cpp rename to projects/composablekernel/client_example/06_softmax/softmax4d.cpp diff --git a/composable_kernel/client_example/07_grouped_convnd_fwd/CMakeLists.txt b/projects/composablekernel/client_example/07_grouped_convnd_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/07_grouped_convnd_fwd/CMakeLists.txt rename to projects/composablekernel/client_example/07_grouped_convnd_fwd/CMakeLists.txt diff --git a/composable_kernel/client_example/07_grouped_convnd_fwd/README.md b/projects/composablekernel/client_example/07_grouped_convnd_fwd/README.md similarity index 100% rename from composable_kernel/client_example/07_grouped_convnd_fwd/README.md rename to projects/composablekernel/client_example/07_grouped_convnd_fwd/README.md diff --git a/composable_kernel/client_example/07_grouped_convnd_fwd/common.hpp b/projects/composablekernel/client_example/07_grouped_convnd_fwd/common.hpp similarity index 100% rename from composable_kernel/client_example/07_grouped_convnd_fwd/common.hpp rename to projects/composablekernel/client_example/07_grouped_convnd_fwd/common.hpp diff --git a/composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv1d_fwd.cpp b/projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv1d_fwd.cpp similarity index 100% rename from composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv1d_fwd.cpp rename to projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv1d_fwd.cpp diff --git a/composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv2d_fwd.cpp b/projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv2d_fwd.cpp similarity index 100% rename from composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv2d_fwd.cpp rename to projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv2d_fwd.cpp diff --git a/composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv2d_fwd_ngchw.cpp b/projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv2d_fwd_ngchw.cpp similarity index 100% rename from composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv2d_fwd_ngchw.cpp rename to projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv2d_fwd_ngchw.cpp diff --git a/composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_bf8.cpp b/projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_bf8.cpp similarity index 100% rename from composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_bf8.cpp rename to projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_bf8.cpp diff --git a/composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_bf8_fp8.cpp b/projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_bf8_fp8.cpp similarity index 100% rename from composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_bf8_fp8.cpp rename to projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_bf8_fp8.cpp diff --git a/composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_fp8.cpp b/projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_fp8.cpp similarity index 100% rename from composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_fp8.cpp rename to projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_fp8.cpp diff --git a/composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_fp8_bf8.cpp b/projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_fp8_bf8.cpp similarity index 100% rename from composable_kernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_fp8_bf8.cpp rename to projects/composablekernel/client_example/07_grouped_convnd_fwd/grouped_conv3d_fwd_fp8_bf8.cpp diff --git a/composable_kernel/client_example/08_fused_attention/CMakeLists.txt b/projects/composablekernel/client_example/08_fused_attention/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/08_fused_attention/CMakeLists.txt rename to projects/composablekernel/client_example/08_fused_attention/CMakeLists.txt diff --git a/composable_kernel/client_example/08_fused_attention/fused_attention.cpp b/projects/composablekernel/client_example/08_fused_attention/fused_attention.cpp similarity index 100% rename from composable_kernel/client_example/08_fused_attention/fused_attention.cpp rename to projects/composablekernel/client_example/08_fused_attention/fused_attention.cpp diff --git a/composable_kernel/client_example/08_fused_attention/fused_attention_bias.cpp b/projects/composablekernel/client_example/08_fused_attention/fused_attention_bias.cpp similarity index 100% rename from composable_kernel/client_example/08_fused_attention/fused_attention_bias.cpp rename to projects/composablekernel/client_example/08_fused_attention/fused_attention_bias.cpp diff --git a/composable_kernel/client_example/09_quantization/CMakeLists.txt b/projects/composablekernel/client_example/09_quantization/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/09_quantization/CMakeLists.txt rename to projects/composablekernel/client_example/09_quantization/CMakeLists.txt diff --git a/composable_kernel/client_example/09_quantization/conv2d_fwd_bias_relu_perchannel_quantization.cpp b/projects/composablekernel/client_example/09_quantization/conv2d_fwd_bias_relu_perchannel_quantization.cpp similarity index 100% rename from composable_kernel/client_example/09_quantization/conv2d_fwd_bias_relu_perchannel_quantization.cpp rename to projects/composablekernel/client_example/09_quantization/conv2d_fwd_bias_relu_perchannel_quantization.cpp diff --git a/composable_kernel/client_example/09_quantization/conv2d_fwd_bias_relu_perlayer_quantization.cpp b/projects/composablekernel/client_example/09_quantization/conv2d_fwd_bias_relu_perlayer_quantization.cpp similarity index 100% rename from composable_kernel/client_example/09_quantization/conv2d_fwd_bias_relu_perlayer_quantization.cpp rename to projects/composablekernel/client_example/09_quantization/conv2d_fwd_bias_relu_perlayer_quantization.cpp diff --git a/composable_kernel/client_example/09_quantization/conv2d_fwd_bias_tanh_perchannel_quantization.cpp b/projects/composablekernel/client_example/09_quantization/conv2d_fwd_bias_tanh_perchannel_quantization.cpp similarity index 100% rename from composable_kernel/client_example/09_quantization/conv2d_fwd_bias_tanh_perchannel_quantization.cpp rename to projects/composablekernel/client_example/09_quantization/conv2d_fwd_bias_tanh_perchannel_quantization.cpp diff --git a/composable_kernel/client_example/09_quantization/conv2d_fwd_bias_tanh_perlayer_quantization.cpp b/projects/composablekernel/client_example/09_quantization/conv2d_fwd_bias_tanh_perlayer_quantization.cpp similarity index 100% rename from composable_kernel/client_example/09_quantization/conv2d_fwd_bias_tanh_perlayer_quantization.cpp rename to projects/composablekernel/client_example/09_quantization/conv2d_fwd_bias_tanh_perlayer_quantization.cpp diff --git a/composable_kernel/client_example/09_quantization/conv2d_fwd_perchannel_quantization.cpp b/projects/composablekernel/client_example/09_quantization/conv2d_fwd_perchannel_quantization.cpp similarity index 100% rename from composable_kernel/client_example/09_quantization/conv2d_fwd_perchannel_quantization.cpp rename to projects/composablekernel/client_example/09_quantization/conv2d_fwd_perchannel_quantization.cpp diff --git a/composable_kernel/client_example/09_quantization/conv2d_fwd_perlayer_quantization.cpp b/projects/composablekernel/client_example/09_quantization/conv2d_fwd_perlayer_quantization.cpp similarity index 100% rename from composable_kernel/client_example/09_quantization/conv2d_fwd_perlayer_quantization.cpp rename to projects/composablekernel/client_example/09_quantization/conv2d_fwd_perlayer_quantization.cpp diff --git a/composable_kernel/client_example/09_quantization/gemm_quantization.cpp b/projects/composablekernel/client_example/09_quantization/gemm_quantization.cpp similarity index 100% rename from composable_kernel/client_example/09_quantization/gemm_quantization.cpp rename to projects/composablekernel/client_example/09_quantization/gemm_quantization.cpp diff --git a/composable_kernel/client_example/10_grouped_convnd_bwd_data/CMakeLists.txt b/projects/composablekernel/client_example/10_grouped_convnd_bwd_data/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/10_grouped_convnd_bwd_data/CMakeLists.txt rename to projects/composablekernel/client_example/10_grouped_convnd_bwd_data/CMakeLists.txt diff --git a/composable_kernel/client_example/10_grouped_convnd_bwd_data/README.md b/projects/composablekernel/client_example/10_grouped_convnd_bwd_data/README.md similarity index 100% rename from composable_kernel/client_example/10_grouped_convnd_bwd_data/README.md rename to projects/composablekernel/client_example/10_grouped_convnd_bwd_data/README.md diff --git a/composable_kernel/client_example/10_grouped_convnd_bwd_data/grouped_conv2d_bwd_data.cpp b/projects/composablekernel/client_example/10_grouped_convnd_bwd_data/grouped_conv2d_bwd_data.cpp similarity index 100% rename from composable_kernel/client_example/10_grouped_convnd_bwd_data/grouped_conv2d_bwd_data.cpp rename to projects/composablekernel/client_example/10_grouped_convnd_bwd_data/grouped_conv2d_bwd_data.cpp diff --git a/composable_kernel/client_example/10_grouped_convnd_bwd_data/grouped_conv2d_bwd_data_ngchw.cpp b/projects/composablekernel/client_example/10_grouped_convnd_bwd_data/grouped_conv2d_bwd_data_ngchw.cpp similarity index 100% rename from composable_kernel/client_example/10_grouped_convnd_bwd_data/grouped_conv2d_bwd_data_ngchw.cpp rename to projects/composablekernel/client_example/10_grouped_convnd_bwd_data/grouped_conv2d_bwd_data_ngchw.cpp diff --git a/composable_kernel/client_example/10_grouped_convnd_bwd_data/grouped_conv3d_bwd_data.cpp b/projects/composablekernel/client_example/10_grouped_convnd_bwd_data/grouped_conv3d_bwd_data.cpp similarity index 100% rename from composable_kernel/client_example/10_grouped_convnd_bwd_data/grouped_conv3d_bwd_data.cpp rename to projects/composablekernel/client_example/10_grouped_convnd_bwd_data/grouped_conv3d_bwd_data.cpp diff --git a/composable_kernel/client_example/10_grouped_convnd_bwd_data/grouped_conv3d_bwd_data_input_fp16_comp_bf8f8.cpp b/projects/composablekernel/client_example/10_grouped_convnd_bwd_data/grouped_conv3d_bwd_data_input_fp16_comp_bf8f8.cpp similarity index 100% rename from composable_kernel/client_example/10_grouped_convnd_bwd_data/grouped_conv3d_bwd_data_input_fp16_comp_bf8f8.cpp rename to projects/composablekernel/client_example/10_grouped_convnd_bwd_data/grouped_conv3d_bwd_data_input_fp16_comp_bf8f8.cpp diff --git a/composable_kernel/client_example/11_grouped_conv_bwd_weight/CMakeLists.txt b/projects/composablekernel/client_example/11_grouped_conv_bwd_weight/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/11_grouped_conv_bwd_weight/CMakeLists.txt rename to projects/composablekernel/client_example/11_grouped_conv_bwd_weight/CMakeLists.txt diff --git a/composable_kernel/client_example/11_grouped_conv_bwd_weight/README.md b/projects/composablekernel/client_example/11_grouped_conv_bwd_weight/README.md similarity index 100% rename from composable_kernel/client_example/11_grouped_conv_bwd_weight/README.md rename to projects/composablekernel/client_example/11_grouped_conv_bwd_weight/README.md diff --git a/composable_kernel/client_example/11_grouped_conv_bwd_weight/common.hpp b/projects/composablekernel/client_example/11_grouped_conv_bwd_weight/common.hpp similarity index 100% rename from composable_kernel/client_example/11_grouped_conv_bwd_weight/common.hpp rename to projects/composablekernel/client_example/11_grouped_conv_bwd_weight/common.hpp diff --git a/composable_kernel/client_example/11_grouped_conv_bwd_weight/grouped_conv1d_bwd_weight_fp16.cpp b/projects/composablekernel/client_example/11_grouped_conv_bwd_weight/grouped_conv1d_bwd_weight_fp16.cpp similarity index 100% rename from composable_kernel/client_example/11_grouped_conv_bwd_weight/grouped_conv1d_bwd_weight_fp16.cpp rename to projects/composablekernel/client_example/11_grouped_conv_bwd_weight/grouped_conv1d_bwd_weight_fp16.cpp diff --git a/composable_kernel/client_example/11_grouped_conv_bwd_weight/grouped_conv2d_bwd_weight_fp16.cpp b/projects/composablekernel/client_example/11_grouped_conv_bwd_weight/grouped_conv2d_bwd_weight_fp16.cpp similarity index 100% rename from composable_kernel/client_example/11_grouped_conv_bwd_weight/grouped_conv2d_bwd_weight_fp16.cpp rename to projects/composablekernel/client_example/11_grouped_conv_bwd_weight/grouped_conv2d_bwd_weight_fp16.cpp diff --git a/composable_kernel/client_example/11_grouped_conv_bwd_weight/grouped_conv3d_bwd_weight_fp16.cpp b/projects/composablekernel/client_example/11_grouped_conv_bwd_weight/grouped_conv3d_bwd_weight_fp16.cpp similarity index 100% rename from composable_kernel/client_example/11_grouped_conv_bwd_weight/grouped_conv3d_bwd_weight_fp16.cpp rename to projects/composablekernel/client_example/11_grouped_conv_bwd_weight/grouped_conv3d_bwd_weight_fp16.cpp diff --git a/composable_kernel/client_example/11_grouped_conv_bwd_weight/grouped_conv3d_bwd_weight_fp16_comp_bf8_fp8.cpp b/projects/composablekernel/client_example/11_grouped_conv_bwd_weight/grouped_conv3d_bwd_weight_fp16_comp_bf8_fp8.cpp similarity index 100% rename from composable_kernel/client_example/11_grouped_conv_bwd_weight/grouped_conv3d_bwd_weight_fp16_comp_bf8_fp8.cpp rename to projects/composablekernel/client_example/11_grouped_conv_bwd_weight/grouped_conv3d_bwd_weight_fp16_comp_bf8_fp8.cpp diff --git a/composable_kernel/client_example/11_grouped_conv_bwd_weight/grouped_conv3d_bwd_weight_fp32.cpp b/projects/composablekernel/client_example/11_grouped_conv_bwd_weight/grouped_conv3d_bwd_weight_fp32.cpp similarity index 100% rename from composable_kernel/client_example/11_grouped_conv_bwd_weight/grouped_conv3d_bwd_weight_fp32.cpp rename to projects/composablekernel/client_example/11_grouped_conv_bwd_weight/grouped_conv3d_bwd_weight_fp32.cpp diff --git a/composable_kernel/client_example/12_elementwise_normalization/CMakeLists.txt b/projects/composablekernel/client_example/12_elementwise_normalization/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/12_elementwise_normalization/CMakeLists.txt rename to projects/composablekernel/client_example/12_elementwise_normalization/CMakeLists.txt diff --git a/composable_kernel/client_example/12_elementwise_normalization/elementwise_layernorm2d.cpp b/projects/composablekernel/client_example/12_elementwise_normalization/elementwise_layernorm2d.cpp similarity index 100% rename from composable_kernel/client_example/12_elementwise_normalization/elementwise_layernorm2d.cpp rename to projects/composablekernel/client_example/12_elementwise_normalization/elementwise_layernorm2d.cpp diff --git a/composable_kernel/client_example/13_batchnorm/CMakeLists.txt b/projects/composablekernel/client_example/13_batchnorm/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/13_batchnorm/CMakeLists.txt rename to projects/composablekernel/client_example/13_batchnorm/CMakeLists.txt diff --git a/composable_kernel/client_example/13_batchnorm/batchnorm_bwd_nhwc.cpp b/projects/composablekernel/client_example/13_batchnorm/batchnorm_bwd_nhwc.cpp similarity index 100% rename from composable_kernel/client_example/13_batchnorm/batchnorm_bwd_nhwc.cpp rename to projects/composablekernel/client_example/13_batchnorm/batchnorm_bwd_nhwc.cpp diff --git a/composable_kernel/client_example/13_batchnorm/batchnorm_fwd_nhwc.cpp b/projects/composablekernel/client_example/13_batchnorm/batchnorm_fwd_nhwc.cpp similarity index 100% rename from composable_kernel/client_example/13_batchnorm/batchnorm_fwd_nhwc.cpp rename to projects/composablekernel/client_example/13_batchnorm/batchnorm_fwd_nhwc.cpp diff --git a/composable_kernel/client_example/13_batchnorm/batchnorm_infer_nhwc.cpp b/projects/composablekernel/client_example/13_batchnorm/batchnorm_infer_nhwc.cpp similarity index 100% rename from composable_kernel/client_example/13_batchnorm/batchnorm_infer_nhwc.cpp rename to projects/composablekernel/client_example/13_batchnorm/batchnorm_infer_nhwc.cpp diff --git a/composable_kernel/client_example/14_instance_id/CMakeLists.txt b/projects/composablekernel/client_example/14_instance_id/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/14_instance_id/CMakeLists.txt rename to projects/composablekernel/client_example/14_instance_id/CMakeLists.txt diff --git a/composable_kernel/client_example/14_instance_id/batchnorm_fwd_instance_id.cpp b/projects/composablekernel/client_example/14_instance_id/batchnorm_fwd_instance_id.cpp similarity index 100% rename from composable_kernel/client_example/14_instance_id/batchnorm_fwd_instance_id.cpp rename to projects/composablekernel/client_example/14_instance_id/batchnorm_fwd_instance_id.cpp diff --git a/composable_kernel/client_example/15_convnd_bwd_data/CMakeLists.txt b/projects/composablekernel/client_example/15_convnd_bwd_data/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/15_convnd_bwd_data/CMakeLists.txt rename to projects/composablekernel/client_example/15_convnd_bwd_data/CMakeLists.txt diff --git a/composable_kernel/client_example/15_convnd_bwd_data/common.hpp b/projects/composablekernel/client_example/15_convnd_bwd_data/common.hpp similarity index 100% rename from composable_kernel/client_example/15_convnd_bwd_data/common.hpp rename to projects/composablekernel/client_example/15_convnd_bwd_data/common.hpp diff --git a/composable_kernel/client_example/15_convnd_bwd_data/conv3d_bwd_data_fp16.cpp b/projects/composablekernel/client_example/15_convnd_bwd_data/conv3d_bwd_data_fp16.cpp similarity index 100% rename from composable_kernel/client_example/15_convnd_bwd_data/conv3d_bwd_data_fp16.cpp rename to projects/composablekernel/client_example/15_convnd_bwd_data/conv3d_bwd_data_fp16.cpp diff --git a/composable_kernel/client_example/15_convnd_bwd_data/conv3d_bwd_data_fp32.cpp b/projects/composablekernel/client_example/15_convnd_bwd_data/conv3d_bwd_data_fp32.cpp similarity index 100% rename from composable_kernel/client_example/15_convnd_bwd_data/conv3d_bwd_data_fp32.cpp rename to projects/composablekernel/client_example/15_convnd_bwd_data/conv3d_bwd_data_fp32.cpp diff --git a/composable_kernel/client_example/15_gemm_add_multiply/CMakeLists.txt b/projects/composablekernel/client_example/15_gemm_add_multiply/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/15_gemm_add_multiply/CMakeLists.txt rename to projects/composablekernel/client_example/15_gemm_add_multiply/CMakeLists.txt diff --git a/composable_kernel/client_example/15_gemm_add_multiply/gemm_add_multiply.cpp b/projects/composablekernel/client_example/15_gemm_add_multiply/gemm_add_multiply.cpp similarity index 100% rename from composable_kernel/client_example/15_gemm_add_multiply/gemm_add_multiply.cpp rename to projects/composablekernel/client_example/15_gemm_add_multiply/gemm_add_multiply.cpp diff --git a/composable_kernel/client_example/15_reduce/CMakeLists.txt b/projects/composablekernel/client_example/15_reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/15_reduce/CMakeLists.txt rename to projects/composablekernel/client_example/15_reduce/CMakeLists.txt diff --git a/composable_kernel/client_example/15_reduce/reduce_nhwc_c.cpp b/projects/composablekernel/client_example/15_reduce/reduce_nhwc_c.cpp similarity index 100% rename from composable_kernel/client_example/15_reduce/reduce_nhwc_c.cpp rename to projects/composablekernel/client_example/15_reduce/reduce_nhwc_c.cpp diff --git a/composable_kernel/client_example/16_convnd_fwd/CMakeLists.txt b/projects/composablekernel/client_example/16_convnd_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/16_convnd_fwd/CMakeLists.txt rename to projects/composablekernel/client_example/16_convnd_fwd/CMakeLists.txt diff --git a/composable_kernel/client_example/16_convnd_fwd/common.hpp b/projects/composablekernel/client_example/16_convnd_fwd/common.hpp similarity index 100% rename from composable_kernel/client_example/16_convnd_fwd/common.hpp rename to projects/composablekernel/client_example/16_convnd_fwd/common.hpp diff --git a/composable_kernel/client_example/16_convnd_fwd/conv3d_fwd_fp16.cpp b/projects/composablekernel/client_example/16_convnd_fwd/conv3d_fwd_fp16.cpp similarity index 100% rename from composable_kernel/client_example/16_convnd_fwd/conv3d_fwd_fp16.cpp rename to projects/composablekernel/client_example/16_convnd_fwd/conv3d_fwd_fp16.cpp diff --git a/composable_kernel/client_example/16_convnd_fwd/conv3d_fwd_fp16_comp_fp8.cpp b/projects/composablekernel/client_example/16_convnd_fwd/conv3d_fwd_fp16_comp_fp8.cpp similarity index 100% rename from composable_kernel/client_example/16_convnd_fwd/conv3d_fwd_fp16_comp_fp8.cpp rename to projects/composablekernel/client_example/16_convnd_fwd/conv3d_fwd_fp16_comp_fp8.cpp diff --git a/composable_kernel/client_example/16_convnd_fwd/conv3d_fwd_fp32.cpp b/projects/composablekernel/client_example/16_convnd_fwd/conv3d_fwd_fp32.cpp similarity index 100% rename from composable_kernel/client_example/16_convnd_fwd/conv3d_fwd_fp32.cpp rename to projects/composablekernel/client_example/16_convnd_fwd/conv3d_fwd_fp32.cpp diff --git a/composable_kernel/client_example/17_grouped_gemm_fastgelu/CMakeLists.txt b/projects/composablekernel/client_example/17_grouped_gemm_fastgelu/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/17_grouped_gemm_fastgelu/CMakeLists.txt rename to projects/composablekernel/client_example/17_grouped_gemm_fastgelu/CMakeLists.txt diff --git a/composable_kernel/client_example/17_grouped_gemm_fastgelu/grouped_gemm_fastgelu.cpp b/projects/composablekernel/client_example/17_grouped_gemm_fastgelu/grouped_gemm_fastgelu.cpp similarity index 100% rename from composable_kernel/client_example/17_grouped_gemm_fastgelu/grouped_gemm_fastgelu.cpp rename to projects/composablekernel/client_example/17_grouped_gemm_fastgelu/grouped_gemm_fastgelu.cpp diff --git a/composable_kernel/client_example/18_groupnorm/CMakeLists.txt b/projects/composablekernel/client_example/18_groupnorm/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/18_groupnorm/CMakeLists.txt rename to projects/composablekernel/client_example/18_groupnorm/CMakeLists.txt diff --git a/composable_kernel/client_example/18_groupnorm/groupnorm_bwd_data.cpp b/projects/composablekernel/client_example/18_groupnorm/groupnorm_bwd_data.cpp similarity index 100% rename from composable_kernel/client_example/18_groupnorm/groupnorm_bwd_data.cpp rename to projects/composablekernel/client_example/18_groupnorm/groupnorm_bwd_data.cpp diff --git a/composable_kernel/client_example/18_groupnorm/groupnorm_bwd_gamma_beta.cpp b/projects/composablekernel/client_example/18_groupnorm/groupnorm_bwd_gamma_beta.cpp similarity index 100% rename from composable_kernel/client_example/18_groupnorm/groupnorm_bwd_gamma_beta.cpp rename to projects/composablekernel/client_example/18_groupnorm/groupnorm_bwd_gamma_beta.cpp diff --git a/composable_kernel/client_example/18_groupnorm/groupnorm_swish_fwd.cpp b/projects/composablekernel/client_example/18_groupnorm/groupnorm_swish_fwd.cpp similarity index 100% rename from composable_kernel/client_example/18_groupnorm/groupnorm_swish_fwd.cpp rename to projects/composablekernel/client_example/18_groupnorm/groupnorm_swish_fwd.cpp diff --git a/composable_kernel/client_example/19_pool/CMakeLists.txt b/projects/composablekernel/client_example/19_pool/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/19_pool/CMakeLists.txt rename to projects/composablekernel/client_example/19_pool/CMakeLists.txt diff --git a/composable_kernel/client_example/19_pool/avg_pool3d_bwd.cpp b/projects/composablekernel/client_example/19_pool/avg_pool3d_bwd.cpp similarity index 100% rename from composable_kernel/client_example/19_pool/avg_pool3d_bwd.cpp rename to projects/composablekernel/client_example/19_pool/avg_pool3d_bwd.cpp diff --git a/composable_kernel/client_example/19_pool/avg_pool3d_fwd.cpp b/projects/composablekernel/client_example/19_pool/avg_pool3d_fwd.cpp similarity index 100% rename from composable_kernel/client_example/19_pool/avg_pool3d_fwd.cpp rename to projects/composablekernel/client_example/19_pool/avg_pool3d_fwd.cpp diff --git a/composable_kernel/client_example/19_pool/max_pool2d_bwd.cpp b/projects/composablekernel/client_example/19_pool/max_pool2d_bwd.cpp similarity index 100% rename from composable_kernel/client_example/19_pool/max_pool2d_bwd.cpp rename to projects/composablekernel/client_example/19_pool/max_pool2d_bwd.cpp diff --git a/composable_kernel/client_example/19_pool/max_pool2d_fwd.cpp b/projects/composablekernel/client_example/19_pool/max_pool2d_fwd.cpp similarity index 100% rename from composable_kernel/client_example/19_pool/max_pool2d_fwd.cpp rename to projects/composablekernel/client_example/19_pool/max_pool2d_fwd.cpp diff --git a/composable_kernel/client_example/20_splitk_gemm/CMakeLists.txt b/projects/composablekernel/client_example/20_splitk_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/20_splitk_gemm/CMakeLists.txt rename to projects/composablekernel/client_example/20_splitk_gemm/CMakeLists.txt diff --git a/composable_kernel/client_example/20_splitk_gemm/splitK_gemm_fp16_f8.cpp b/projects/composablekernel/client_example/20_splitk_gemm/splitK_gemm_fp16_f8.cpp similarity index 100% rename from composable_kernel/client_example/20_splitk_gemm/splitK_gemm_fp16_f8.cpp rename to projects/composablekernel/client_example/20_splitk_gemm/splitK_gemm_fp16_f8.cpp diff --git a/composable_kernel/client_example/21_grouped_gemm_bias/CMakeLists.txt b/projects/composablekernel/client_example/21_grouped_gemm_bias/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/21_grouped_gemm_bias/CMakeLists.txt rename to projects/composablekernel/client_example/21_grouped_gemm_bias/CMakeLists.txt diff --git a/composable_kernel/client_example/21_grouped_gemm_bias/grouped_gemm_fixed_nk_bias_fp16.cpp b/projects/composablekernel/client_example/21_grouped_gemm_bias/grouped_gemm_fixed_nk_bias_fp16.cpp similarity index 100% rename from composable_kernel/client_example/21_grouped_gemm_bias/grouped_gemm_fixed_nk_bias_fp16.cpp rename to projects/composablekernel/client_example/21_grouped_gemm_bias/grouped_gemm_fixed_nk_bias_fp16.cpp diff --git a/composable_kernel/client_example/22_grouped_gemm/CMakeLists.txt b/projects/composablekernel/client_example/22_grouped_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/22_grouped_gemm/CMakeLists.txt rename to projects/composablekernel/client_example/22_grouped_gemm/CMakeLists.txt diff --git a/composable_kernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_bf16.cpp b/projects/composablekernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_bf16.cpp similarity index 100% rename from composable_kernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_bf16.cpp rename to projects/composablekernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_bf16.cpp diff --git a/composable_kernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_fp16.cpp b/projects/composablekernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_fp16.cpp similarity index 100% rename from composable_kernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_fp16.cpp rename to projects/composablekernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_fp16.cpp diff --git a/composable_kernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_fp8.cpp b/projects/composablekernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_fp8.cpp similarity index 100% rename from composable_kernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_fp8.cpp rename to projects/composablekernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_fp8.cpp diff --git a/composable_kernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_i8.cpp b/projects/composablekernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_i8.cpp similarity index 100% rename from composable_kernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_i8.cpp rename to projects/composablekernel/client_example/22_grouped_gemm/grouped_gemm_fixed_nk_i8.cpp diff --git a/composable_kernel/client_example/22_im2col_col2im/CMakeLists.txt b/projects/composablekernel/client_example/22_im2col_col2im/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/22_im2col_col2im/CMakeLists.txt rename to projects/composablekernel/client_example/22_im2col_col2im/CMakeLists.txt diff --git a/composable_kernel/client_example/22_im2col_col2im/column_to_image.cpp b/projects/composablekernel/client_example/22_im2col_col2im/column_to_image.cpp similarity index 100% rename from composable_kernel/client_example/22_im2col_col2im/column_to_image.cpp rename to projects/composablekernel/client_example/22_im2col_col2im/column_to_image.cpp diff --git a/composable_kernel/client_example/22_im2col_col2im/image_to_column.cpp b/projects/composablekernel/client_example/22_im2col_col2im/image_to_column.cpp similarity index 100% rename from composable_kernel/client_example/22_im2col_col2im/image_to_column.cpp rename to projects/composablekernel/client_example/22_im2col_col2im/image_to_column.cpp diff --git a/composable_kernel/client_example/23_elementwise_transpose/CMakeLists.txt b/projects/composablekernel/client_example/23_elementwise_transpose/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/23_elementwise_transpose/CMakeLists.txt rename to projects/composablekernel/client_example/23_elementwise_transpose/CMakeLists.txt diff --git a/composable_kernel/client_example/23_elementwise_transpose/elementwise_transpose_3d.cpp b/projects/composablekernel/client_example/23_elementwise_transpose/elementwise_transpose_3d.cpp similarity index 100% rename from composable_kernel/client_example/23_elementwise_transpose/elementwise_transpose_3d.cpp rename to projects/composablekernel/client_example/23_elementwise_transpose/elementwise_transpose_3d.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/CMakeLists.txt b/projects/composablekernel/client_example/24_grouped_conv_activation/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/CMakeLists.txt rename to projects/composablekernel/client_example/24_grouped_conv_activation/CMakeLists.txt diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_data_bilinear/grouped_conv_bwd_data_bilinear_residual_fp16.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_data_bilinear/grouped_conv_bwd_data_bilinear_residual_fp16.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_data_bilinear/grouped_conv_bwd_data_bilinear_residual_fp16.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_data_bilinear/grouped_conv_bwd_data_bilinear_residual_fp16.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_data_scale/grouped_conv_bwd_data_scale_fp16.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_data_scale/grouped_conv_bwd_data_scale_fp16.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_data_scale/grouped_conv_bwd_data_scale_fp16.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_data_scale/grouped_conv_bwd_data_scale_fp16.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_weight_bilinear/grouped_conv_bwd_weight_bilinear_residual_fp16.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_weight_bilinear/grouped_conv_bwd_weight_bilinear_residual_fp16.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_weight_bilinear/grouped_conv_bwd_weight_bilinear_residual_fp16.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_weight_bilinear/grouped_conv_bwd_weight_bilinear_residual_fp16.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_weight_scale/grouped_conv_bwd_weight_scale_fp16.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_weight_scale/grouped_conv_bwd_weight_scale_fp16.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_weight_scale/grouped_conv_bwd_weight_scale_fp16.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_bwd_weight_scale/grouped_conv_bwd_weight_scale_fp16.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_bilinear/grouped_conv_fwd_bilinear_residual_fp16.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_bilinear/grouped_conv_fwd_bilinear_residual_fp16.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_bilinear/grouped_conv_fwd_bilinear_residual_fp16.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_bilinear/grouped_conv_fwd_bilinear_residual_fp16.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convinvscale/common.hpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convinvscale/common.hpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convinvscale/common.hpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convinvscale/common.hpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convinvscale/conv3d_fwd_convinvscale_fp8.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convinvscale/conv3d_fwd_convinvscale_fp8.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convinvscale/conv3d_fwd_convinvscale_fp8.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convinvscale/conv3d_fwd_convinvscale_fp8.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/common.hpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/common.hpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/common.hpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/common.hpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_bf8.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_bf8.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_bf8.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_bf8.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_bf8_fp8.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_bf8_fp8.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_bf8_fp8.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_bf8_fp8.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_fp8.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_fp8.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_fp8.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_fp8.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_fp8_bf8.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_fp8_bf8.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_fp8_bf8.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale/conv3d_fwd_convscale_fp8_bf8.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_add/common.hpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_add/common.hpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_add/common.hpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_add/common.hpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_add/conv3d_fwd_convscale_add_fp8.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_add/conv3d_fwd_convscale_add_fp8.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_add/conv3d_fwd_convscale_add_fp8.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_add/conv3d_fwd_convscale_add_fp8.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_reduce/common.hpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_reduce/common.hpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_reduce/common.hpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_reduce/common.hpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_reduce/conv3d_fwd_convscale_amax_fp8.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_reduce/conv3d_fwd_convscale_amax_fp8.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_reduce/conv3d_fwd_convscale_amax_fp8.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_reduce/conv3d_fwd_convscale_amax_fp8.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_reduce/conv3d_fwd_convscale_relu_amax_fp8.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_reduce/conv3d_fwd_convscale_relu_amax_fp8.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_reduce/conv3d_fwd_convscale_relu_amax_fp8.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_reduce/conv3d_fwd_convscale_relu_amax_fp8.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_relu/common.hpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_relu/common.hpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_relu/common.hpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_relu/common.hpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_relu/conv3d_fwd_convscale_relu_fp8.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_relu/conv3d_fwd_convscale_relu_fp8.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_relu/conv3d_fwd_convscale_relu_fp8.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_convscale_relu/conv3d_fwd_convscale_relu_fp8.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scale/grouped_conv_fwd_scale_fp16.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scale/grouped_conv_fwd_scale_fp16.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scale/grouped_conv_fwd_scale_fp16.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scale/grouped_conv_fwd_scale_fp16.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab.inc b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab.inc similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab.inc rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab.inc diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_bf16.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_bf16.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_bf16.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_bf16.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_fp16.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_fp16.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_fp16.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_fp16.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_fp32.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_fp32.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_fp32.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_fp32.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_int8.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_int8.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_int8.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_ab/grouped_conv_fwd_scaleadd_ab_int8.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu.inc b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu.inc similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu.inc rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu.inc diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_bf16.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_bf16.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_bf16.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_bf16.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_fp16.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_fp16.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_fp16.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_fp16.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_fp32.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_fp32.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_fp32.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_fp32.cpp diff --git a/composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_int8.cpp b/projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_int8.cpp similarity index 100% rename from composable_kernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_int8.cpp rename to projects/composablekernel/client_example/24_grouped_conv_activation/grouped_convnd_fwd_scaleadd_scaleadd_relu/grouped_conv_fwd_scaleadd_scaleadd_relu_int8.cpp diff --git a/composable_kernel/client_example/25_wrapper/CMakeLists.txt b/projects/composablekernel/client_example/25_wrapper/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/25_wrapper/CMakeLists.txt rename to projects/composablekernel/client_example/25_wrapper/CMakeLists.txt diff --git a/composable_kernel/client_example/25_wrapper/README.md b/projects/composablekernel/client_example/25_wrapper/README.md similarity index 100% rename from composable_kernel/client_example/25_wrapper/README.md rename to projects/composablekernel/client_example/25_wrapper/README.md diff --git a/composable_kernel/client_example/25_wrapper/tensor_transform_using_wrapper.cpp b/projects/composablekernel/client_example/25_wrapper/tensor_transform_using_wrapper.cpp similarity index 100% rename from composable_kernel/client_example/25_wrapper/tensor_transform_using_wrapper.cpp rename to projects/composablekernel/client_example/25_wrapper/tensor_transform_using_wrapper.cpp diff --git a/composable_kernel/client_example/25_wrapper/wrapper_basic_gemm.cpp b/projects/composablekernel/client_example/25_wrapper/wrapper_basic_gemm.cpp similarity index 100% rename from composable_kernel/client_example/25_wrapper/wrapper_basic_gemm.cpp rename to projects/composablekernel/client_example/25_wrapper/wrapper_basic_gemm.cpp diff --git a/composable_kernel/client_example/25_wrapper/wrapper_img2col.cpp b/projects/composablekernel/client_example/25_wrapper/wrapper_img2col.cpp similarity index 100% rename from composable_kernel/client_example/25_wrapper/wrapper_img2col.cpp rename to projects/composablekernel/client_example/25_wrapper/wrapper_img2col.cpp diff --git a/composable_kernel/client_example/25_wrapper/wrapper_optimized_gemm.cpp b/projects/composablekernel/client_example/25_wrapper/wrapper_optimized_gemm.cpp similarity index 100% rename from composable_kernel/client_example/25_wrapper/wrapper_optimized_gemm.cpp rename to projects/composablekernel/client_example/25_wrapper/wrapper_optimized_gemm.cpp diff --git a/composable_kernel/client_example/30_gemm_bf16Aint8B/CMakeLists.txt b/projects/composablekernel/client_example/30_gemm_bf16Aint8B/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/30_gemm_bf16Aint8B/CMakeLists.txt rename to projects/composablekernel/client_example/30_gemm_bf16Aint8B/CMakeLists.txt diff --git a/composable_kernel/client_example/30_gemm_bf16Aint8B/gemm_bias_fastgelu_xdl_bf16_i8.cpp b/projects/composablekernel/client_example/30_gemm_bf16Aint8B/gemm_bias_fastgelu_xdl_bf16_i8.cpp similarity index 100% rename from composable_kernel/client_example/30_gemm_bf16Aint8B/gemm_bias_fastgelu_xdl_bf16_i8.cpp rename to projects/composablekernel/client_example/30_gemm_bf16Aint8B/gemm_bias_fastgelu_xdl_bf16_i8.cpp diff --git a/composable_kernel/client_example/30_gemm_bf16Aint8B/gemm_bias_xdl_bf16_i8.cpp b/projects/composablekernel/client_example/30_gemm_bf16Aint8B/gemm_bias_xdl_bf16_i8.cpp similarity index 100% rename from composable_kernel/client_example/30_gemm_bf16Aint8B/gemm_bias_xdl_bf16_i8.cpp rename to projects/composablekernel/client_example/30_gemm_bf16Aint8B/gemm_bias_xdl_bf16_i8.cpp diff --git a/composable_kernel/client_example/30_gemm_bf16Aint8B/gemm_xdl_bf16_i8.cpp b/projects/composablekernel/client_example/30_gemm_bf16Aint8B/gemm_xdl_bf16_i8.cpp similarity index 100% rename from composable_kernel/client_example/30_gemm_bf16Aint8B/gemm_xdl_bf16_i8.cpp rename to projects/composablekernel/client_example/30_gemm_bf16Aint8B/gemm_xdl_bf16_i8.cpp diff --git a/composable_kernel/client_example/30_gemm_bf16Aint8B/gemm_xdl_gelu_bf16_i8.cpp b/projects/composablekernel/client_example/30_gemm_bf16Aint8B/gemm_xdl_gelu_bf16_i8.cpp similarity index 100% rename from composable_kernel/client_example/30_gemm_bf16Aint8B/gemm_xdl_gelu_bf16_i8.cpp rename to projects/composablekernel/client_example/30_gemm_bf16Aint8B/gemm_xdl_gelu_bf16_i8.cpp diff --git a/composable_kernel/client_example/30_gemm_bf16Aint8B/gemm_xdl_multiply_bf16_i8.cpp b/projects/composablekernel/client_example/30_gemm_bf16Aint8B/gemm_xdl_multiply_bf16_i8.cpp similarity index 100% rename from composable_kernel/client_example/30_gemm_bf16Aint8B/gemm_xdl_multiply_bf16_i8.cpp rename to projects/composablekernel/client_example/30_gemm_bf16Aint8B/gemm_xdl_multiply_bf16_i8.cpp diff --git a/composable_kernel/client_example/31_grouped_gemm_bf16Aint8B/CMakeLists.txt b/projects/composablekernel/client_example/31_grouped_gemm_bf16Aint8B/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/31_grouped_gemm_bf16Aint8B/CMakeLists.txt rename to projects/composablekernel/client_example/31_grouped_gemm_bf16Aint8B/CMakeLists.txt diff --git a/composable_kernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_bias_fastgelu_xdl_bf16_i8.cpp b/projects/composablekernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_bias_fastgelu_xdl_bf16_i8.cpp similarity index 100% rename from composable_kernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_bias_fastgelu_xdl_bf16_i8.cpp rename to projects/composablekernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_bias_fastgelu_xdl_bf16_i8.cpp diff --git a/composable_kernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_fastgelu_xdl_bf16_i8.cpp b/projects/composablekernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_fastgelu_xdl_bf16_i8.cpp similarity index 100% rename from composable_kernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_fastgelu_xdl_bf16_i8.cpp rename to projects/composablekernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_fastgelu_xdl_bf16_i8.cpp diff --git a/composable_kernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_multiply_bias_fastgelu_xdl_bf16_i8.cpp b/projects/composablekernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_multiply_bias_fastgelu_xdl_bf16_i8.cpp similarity index 100% rename from composable_kernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_multiply_bias_fastgelu_xdl_bf16_i8.cpp rename to projects/composablekernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_multiply_bias_fastgelu_xdl_bf16_i8.cpp diff --git a/composable_kernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_multiply_xdl_bf16_i8.cpp b/projects/composablekernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_multiply_xdl_bf16_i8.cpp similarity index 100% rename from composable_kernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_multiply_xdl_bf16_i8.cpp rename to projects/composablekernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_multiply_xdl_bf16_i8.cpp diff --git a/composable_kernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_xdl_bf16_i8.cpp b/projects/composablekernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_xdl_bf16_i8.cpp similarity index 100% rename from composable_kernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_xdl_bf16_i8.cpp rename to projects/composablekernel/client_example/31_grouped_gemm_bf16Aint8B/grouped_gemm_xdl_bf16_i8.cpp diff --git a/composable_kernel/client_example/CMakeLists.txt b/projects/composablekernel/client_example/CMakeLists.txt similarity index 100% rename from composable_kernel/client_example/CMakeLists.txt rename to projects/composablekernel/client_example/CMakeLists.txt diff --git a/composable_kernel/client_example/README.md b/projects/composablekernel/client_example/README.md similarity index 100% rename from composable_kernel/client_example/README.md rename to projects/composablekernel/client_example/README.md diff --git a/MIOpen/cmake/Analyzers.cmake b/projects/composablekernel/cmake/Analyzers.cmake similarity index 100% rename from MIOpen/cmake/Analyzers.cmake rename to projects/composablekernel/cmake/Analyzers.cmake diff --git a/composable_kernel/cmake/ClangTidy.cmake b/projects/composablekernel/cmake/ClangTidy.cmake similarity index 100% rename from composable_kernel/cmake/ClangTidy.cmake rename to projects/composablekernel/cmake/ClangTidy.cmake diff --git a/MIOpen/cmake/CppCheck.cmake b/projects/composablekernel/cmake/CppCheck.cmake similarity index 100% rename from MIOpen/cmake/CppCheck.cmake rename to projects/composablekernel/cmake/CppCheck.cmake diff --git a/composable_kernel/cmake/DoxygenDoc.cmake b/projects/composablekernel/cmake/DoxygenDoc.cmake similarity index 100% rename from composable_kernel/cmake/DoxygenDoc.cmake rename to projects/composablekernel/cmake/DoxygenDoc.cmake diff --git a/composable_kernel/cmake/Embed.cmake b/projects/composablekernel/cmake/Embed.cmake similarity index 100% rename from composable_kernel/cmake/Embed.cmake rename to projects/composablekernel/cmake/Embed.cmake diff --git a/composable_kernel/cmake/EnableCompilerWarnings.cmake b/projects/composablekernel/cmake/EnableCompilerWarnings.cmake similarity index 100% rename from composable_kernel/cmake/EnableCompilerWarnings.cmake rename to projects/composablekernel/cmake/EnableCompilerWarnings.cmake diff --git a/composable_kernel/cmake/TargetFlags.cmake b/projects/composablekernel/cmake/TargetFlags.cmake similarity index 100% rename from composable_kernel/cmake/TargetFlags.cmake rename to projects/composablekernel/cmake/TargetFlags.cmake diff --git a/composable_kernel/cmake/getopt.cmake b/projects/composablekernel/cmake/getopt.cmake similarity index 100% rename from composable_kernel/cmake/getopt.cmake rename to projects/composablekernel/cmake/getopt.cmake diff --git a/composable_kernel/cmake/gtest.cmake b/projects/composablekernel/cmake/gtest.cmake similarity index 100% rename from composable_kernel/cmake/gtest.cmake rename to projects/composablekernel/cmake/gtest.cmake diff --git a/composable_kernel/codegen/CMakeLists.txt b/projects/composablekernel/codegen/CMakeLists.txt similarity index 100% rename from composable_kernel/codegen/CMakeLists.txt rename to projects/composablekernel/codegen/CMakeLists.txt diff --git a/composable_kernel/codegen/README.md b/projects/composablekernel/codegen/README.md similarity index 100% rename from composable_kernel/codegen/README.md rename to projects/composablekernel/codegen/README.md diff --git a/composable_kernel/codegen/driver/main.cpp b/projects/composablekernel/codegen/driver/main.cpp similarity index 100% rename from composable_kernel/codegen/driver/main.cpp rename to projects/composablekernel/codegen/driver/main.cpp diff --git a/composable_kernel/codegen/include/ck/host/device_batched_gemm_softmax_gemm/operation.hpp b/projects/composablekernel/codegen/include/ck/host/device_batched_gemm_softmax_gemm/operation.hpp similarity index 100% rename from composable_kernel/codegen/include/ck/host/device_batched_gemm_softmax_gemm/operation.hpp rename to projects/composablekernel/codegen/include/ck/host/device_batched_gemm_softmax_gemm/operation.hpp diff --git a/composable_kernel/codegen/include/ck/host/device_batched_gemm_softmax_gemm/problem.hpp b/projects/composablekernel/codegen/include/ck/host/device_batched_gemm_softmax_gemm/problem.hpp similarity index 100% rename from composable_kernel/codegen/include/ck/host/device_batched_gemm_softmax_gemm/problem.hpp rename to projects/composablekernel/codegen/include/ck/host/device_batched_gemm_softmax_gemm/problem.hpp diff --git a/composable_kernel/codegen/include/ck/host/device_gemm_multiple_d.hpp b/projects/composablekernel/codegen/include/ck/host/device_gemm_multiple_d.hpp similarity index 100% rename from composable_kernel/codegen/include/ck/host/device_gemm_multiple_d.hpp rename to projects/composablekernel/codegen/include/ck/host/device_gemm_multiple_d.hpp diff --git a/composable_kernel/codegen/include/ck/host/device_gemm_multiple_d/operation.hpp b/projects/composablekernel/codegen/include/ck/host/device_gemm_multiple_d/operation.hpp similarity index 100% rename from composable_kernel/codegen/include/ck/host/device_gemm_multiple_d/operation.hpp rename to projects/composablekernel/codegen/include/ck/host/device_gemm_multiple_d/operation.hpp diff --git a/composable_kernel/codegen/include/ck/host/device_gemm_multiple_d/problem.hpp b/projects/composablekernel/codegen/include/ck/host/device_gemm_multiple_d/problem.hpp similarity index 100% rename from composable_kernel/codegen/include/ck/host/device_gemm_multiple_d/problem.hpp rename to projects/composablekernel/codegen/include/ck/host/device_gemm_multiple_d/problem.hpp diff --git a/composable_kernel/codegen/include/ck/host/device_grouped_conv_fwd_multiple_d/conv_fwd_op.hpp b/projects/composablekernel/codegen/include/ck/host/device_grouped_conv_fwd_multiple_d/conv_fwd_op.hpp similarity index 100% rename from composable_kernel/codegen/include/ck/host/device_grouped_conv_fwd_multiple_d/conv_fwd_op.hpp rename to projects/composablekernel/codegen/include/ck/host/device_grouped_conv_fwd_multiple_d/conv_fwd_op.hpp diff --git a/composable_kernel/codegen/include/ck/host/device_grouped_conv_fwd_multiple_d/conv_fwd_problem.hpp b/projects/composablekernel/codegen/include/ck/host/device_grouped_conv_fwd_multiple_d/conv_fwd_problem.hpp similarity index 100% rename from composable_kernel/codegen/include/ck/host/device_grouped_conv_fwd_multiple_d/conv_fwd_problem.hpp rename to projects/composablekernel/codegen/include/ck/host/device_grouped_conv_fwd_multiple_d/conv_fwd_problem.hpp diff --git a/composable_kernel/codegen/include/ck/host/headers.hpp b/projects/composablekernel/codegen/include/ck/host/headers.hpp similarity index 100% rename from composable_kernel/codegen/include/ck/host/headers.hpp rename to projects/composablekernel/codegen/include/ck/host/headers.hpp diff --git a/composable_kernel/codegen/include/ck/host/operation/gemm.hpp b/projects/composablekernel/codegen/include/ck/host/operation/gemm.hpp similarity index 100% rename from composable_kernel/codegen/include/ck/host/operation/gemm.hpp rename to projects/composablekernel/codegen/include/ck/host/operation/gemm.hpp diff --git a/composable_kernel/codegen/include/ck/host/stringutils.hpp b/projects/composablekernel/codegen/include/ck/host/stringutils.hpp similarity index 100% rename from composable_kernel/codegen/include/ck/host/stringutils.hpp rename to projects/composablekernel/codegen/include/ck/host/stringutils.hpp diff --git a/composable_kernel/codegen/include/ck/host/types.hpp b/projects/composablekernel/codegen/include/ck/host/types.hpp similarity index 100% rename from composable_kernel/codegen/include/ck/host/types.hpp rename to projects/composablekernel/codegen/include/ck/host/types.hpp diff --git a/composable_kernel/codegen/include/ck/host/utils.hpp b/projects/composablekernel/codegen/include/ck/host/utils.hpp similarity index 100% rename from composable_kernel/codegen/include/ck/host/utils.hpp rename to projects/composablekernel/codegen/include/ck/host/utils.hpp diff --git a/composable_kernel/codegen/src/device_batched_gemm_softmax_gemm.cpp b/projects/composablekernel/codegen/src/device_batched_gemm_softmax_gemm.cpp similarity index 100% rename from composable_kernel/codegen/src/device_batched_gemm_softmax_gemm.cpp rename to projects/composablekernel/codegen/src/device_batched_gemm_softmax_gemm.cpp diff --git a/composable_kernel/codegen/src/device_batched_gemm_softmax_gemm_operation_xdl_cshuffle.cpp b/projects/composablekernel/codegen/src/device_batched_gemm_softmax_gemm_operation_xdl_cshuffle.cpp similarity index 100% rename from composable_kernel/codegen/src/device_batched_gemm_softmax_gemm_operation_xdl_cshuffle.cpp rename to projects/composablekernel/codegen/src/device_batched_gemm_softmax_gemm_operation_xdl_cshuffle.cpp diff --git a/composable_kernel/codegen/src/device_gemm_multiple_d.cpp b/projects/composablekernel/codegen/src/device_gemm_multiple_d.cpp similarity index 100% rename from composable_kernel/codegen/src/device_gemm_multiple_d.cpp rename to projects/composablekernel/codegen/src/device_gemm_multiple_d.cpp diff --git a/composable_kernel/codegen/src/device_gemm_multiple_d_operation_xdl_cshuffle.cpp b/projects/composablekernel/codegen/src/device_gemm_multiple_d_operation_xdl_cshuffle.cpp similarity index 100% rename from composable_kernel/codegen/src/device_gemm_multiple_d_operation_xdl_cshuffle.cpp rename to projects/composablekernel/codegen/src/device_gemm_multiple_d_operation_xdl_cshuffle.cpp diff --git a/composable_kernel/codegen/src/device_grouped_conv_fwd_multiple_abd.cpp b/projects/composablekernel/codegen/src/device_grouped_conv_fwd_multiple_abd.cpp similarity index 100% rename from composable_kernel/codegen/src/device_grouped_conv_fwd_multiple_abd.cpp rename to projects/composablekernel/codegen/src/device_grouped_conv_fwd_multiple_abd.cpp diff --git a/composable_kernel/codegen/src/device_grouped_conv_fwd_multiple_abd_operation_xdl_cshuffle.cpp b/projects/composablekernel/codegen/src/device_grouped_conv_fwd_multiple_abd_operation_xdl_cshuffle.cpp similarity index 100% rename from composable_kernel/codegen/src/device_grouped_conv_fwd_multiple_abd_operation_xdl_cshuffle.cpp rename to projects/composablekernel/codegen/src/device_grouped_conv_fwd_multiple_abd_operation_xdl_cshuffle.cpp diff --git a/composable_kernel/codegen/src/headers.cpp b/projects/composablekernel/codegen/src/headers.cpp similarity index 100% rename from composable_kernel/codegen/src/headers.cpp rename to projects/composablekernel/codegen/src/headers.cpp diff --git a/composable_kernel/codegen/src/types.cpp b/projects/composablekernel/codegen/src/types.cpp similarity index 100% rename from composable_kernel/codegen/src/types.cpp rename to projects/composablekernel/codegen/src/types.cpp diff --git a/composable_kernel/codegen/src/utils.cpp b/projects/composablekernel/codegen/src/utils.cpp similarity index 100% rename from composable_kernel/codegen/src/utils.cpp rename to projects/composablekernel/codegen/src/utils.cpp diff --git a/composable_kernel/codegen/test/CMakeLists.txt b/projects/composablekernel/codegen/test/CMakeLists.txt similarity index 100% rename from composable_kernel/codegen/test/CMakeLists.txt rename to projects/composablekernel/codegen/test/CMakeLists.txt diff --git a/composable_kernel/codegen/test/batched_gemm_softmax_gemm.cpp b/projects/composablekernel/codegen/test/batched_gemm_softmax_gemm.cpp similarity index 100% rename from composable_kernel/codegen/test/batched_gemm_softmax_gemm.cpp rename to projects/composablekernel/codegen/test/batched_gemm_softmax_gemm.cpp diff --git a/composable_kernel/codegen/test/gemm_multiple_d.cpp b/projects/composablekernel/codegen/test/gemm_multiple_d.cpp similarity index 100% rename from composable_kernel/codegen/test/gemm_multiple_d.cpp rename to projects/composablekernel/codegen/test/gemm_multiple_d.cpp diff --git a/composable_kernel/codegen/test/grouped_conv_fwd_multiple_d_v1.cpp b/projects/composablekernel/codegen/test/grouped_conv_fwd_multiple_d_v1.cpp similarity index 100% rename from composable_kernel/codegen/test/grouped_conv_fwd_multiple_d_v1.cpp rename to projects/composablekernel/codegen/test/grouped_conv_fwd_multiple_d_v1.cpp diff --git a/composable_kernel/codegen/test/grouped_conv_fwd_multiple_d_v2.cpp b/projects/composablekernel/codegen/test/grouped_conv_fwd_multiple_d_v2.cpp similarity index 100% rename from composable_kernel/codegen/test/grouped_conv_fwd_multiple_d_v2.cpp rename to projects/composablekernel/codegen/test/grouped_conv_fwd_multiple_d_v2.cpp diff --git a/composable_kernel/codegen/test/grouped_conv_fwd_multiple_d_v3.cpp b/projects/composablekernel/codegen/test/grouped_conv_fwd_multiple_d_v3.cpp similarity index 100% rename from composable_kernel/codegen/test/grouped_conv_fwd_multiple_d_v3.cpp rename to projects/composablekernel/codegen/test/grouped_conv_fwd_multiple_d_v3.cpp diff --git a/composable_kernel/codegen/test/grouped_conv_fwd_multiple_d_v4.cpp b/projects/composablekernel/codegen/test/grouped_conv_fwd_multiple_d_v4.cpp similarity index 100% rename from composable_kernel/codegen/test/grouped_conv_fwd_multiple_d_v4.cpp rename to projects/composablekernel/codegen/test/grouped_conv_fwd_multiple_d_v4.cpp diff --git a/composable_kernel/codegen/test/include/common.hpp b/projects/composablekernel/codegen/test/include/common.hpp similarity index 100% rename from composable_kernel/codegen/test/include/common.hpp rename to projects/composablekernel/codegen/test/include/common.hpp diff --git a/composable_kernel/codegen/test/include/test.hpp b/projects/composablekernel/codegen/test/include/test.hpp similarity index 100% rename from composable_kernel/codegen/test/include/test.hpp rename to projects/composablekernel/codegen/test/include/test.hpp diff --git a/composable_kernel/codegen/test/rtc/CMakeLists.txt b/projects/composablekernel/codegen/test/rtc/CMakeLists.txt similarity index 100% rename from composable_kernel/codegen/test/rtc/CMakeLists.txt rename to projects/composablekernel/codegen/test/rtc/CMakeLists.txt diff --git a/composable_kernel/codegen/test/rtc/include/rtc/compile_kernel.hpp b/projects/composablekernel/codegen/test/rtc/include/rtc/compile_kernel.hpp similarity index 100% rename from composable_kernel/codegen/test/rtc/include/rtc/compile_kernel.hpp rename to projects/composablekernel/codegen/test/rtc/include/rtc/compile_kernel.hpp diff --git a/composable_kernel/codegen/test/rtc/include/rtc/filesystem.hpp b/projects/composablekernel/codegen/test/rtc/include/rtc/filesystem.hpp similarity index 100% rename from composable_kernel/codegen/test/rtc/include/rtc/filesystem.hpp rename to projects/composablekernel/codegen/test/rtc/include/rtc/filesystem.hpp diff --git a/composable_kernel/codegen/test/rtc/include/rtc/hip.hpp b/projects/composablekernel/codegen/test/rtc/include/rtc/hip.hpp similarity index 100% rename from composable_kernel/codegen/test/rtc/include/rtc/hip.hpp rename to projects/composablekernel/codegen/test/rtc/include/rtc/hip.hpp diff --git a/composable_kernel/codegen/test/rtc/include/rtc/kernel.hpp b/projects/composablekernel/codegen/test/rtc/include/rtc/kernel.hpp similarity index 100% rename from composable_kernel/codegen/test/rtc/include/rtc/kernel.hpp rename to projects/composablekernel/codegen/test/rtc/include/rtc/kernel.hpp diff --git a/composable_kernel/codegen/test/rtc/include/rtc/manage_ptr.hpp b/projects/composablekernel/codegen/test/rtc/include/rtc/manage_ptr.hpp similarity index 100% rename from composable_kernel/codegen/test/rtc/include/rtc/manage_ptr.hpp rename to projects/composablekernel/codegen/test/rtc/include/rtc/manage_ptr.hpp diff --git a/composable_kernel/codegen/test/rtc/include/rtc/tmp_dir.hpp b/projects/composablekernel/codegen/test/rtc/include/rtc/tmp_dir.hpp similarity index 100% rename from composable_kernel/codegen/test/rtc/include/rtc/tmp_dir.hpp rename to projects/composablekernel/codegen/test/rtc/include/rtc/tmp_dir.hpp diff --git a/composable_kernel/codegen/test/rtc/src/compile_kernel.cpp b/projects/composablekernel/codegen/test/rtc/src/compile_kernel.cpp similarity index 100% rename from composable_kernel/codegen/test/rtc/src/compile_kernel.cpp rename to projects/composablekernel/codegen/test/rtc/src/compile_kernel.cpp diff --git a/composable_kernel/codegen/test/rtc/src/hip.cpp b/projects/composablekernel/codegen/test/rtc/src/hip.cpp similarity index 100% rename from composable_kernel/codegen/test/rtc/src/hip.cpp rename to projects/composablekernel/codegen/test/rtc/src/hip.cpp diff --git a/composable_kernel/codegen/test/rtc/src/kernel.cpp b/projects/composablekernel/codegen/test/rtc/src/kernel.cpp similarity index 100% rename from composable_kernel/codegen/test/rtc/src/kernel.cpp rename to projects/composablekernel/codegen/test/rtc/src/kernel.cpp diff --git a/composable_kernel/codegen/test/rtc/src/tmp_dir.cpp b/projects/composablekernel/codegen/test/rtc/src/tmp_dir.cpp similarity index 100% rename from composable_kernel/codegen/test/rtc/src/tmp_dir.cpp rename to projects/composablekernel/codegen/test/rtc/src/tmp_dir.cpp diff --git a/composable_kernel/dev-requirements.txt b/projects/composablekernel/dev-requirements.txt similarity index 100% rename from composable_kernel/dev-requirements.txt rename to projects/composablekernel/dev-requirements.txt diff --git a/composable_kernel/docs/Contributors_Guide.rst b/projects/composablekernel/docs/Contributors_Guide.rst similarity index 100% rename from composable_kernel/docs/Contributors_Guide.rst rename to projects/composablekernel/docs/Contributors_Guide.rst diff --git a/composable_kernel/docs/conceptual/Composable-Kernel-math.rst b/projects/composablekernel/docs/conceptual/Composable-Kernel-math.rst similarity index 100% rename from composable_kernel/docs/conceptual/Composable-Kernel-math.rst rename to projects/composablekernel/docs/conceptual/Composable-Kernel-math.rst diff --git a/composable_kernel/docs/conceptual/Composable-Kernel-structure.rst b/projects/composablekernel/docs/conceptual/Composable-Kernel-structure.rst similarity index 100% rename from composable_kernel/docs/conceptual/Composable-Kernel-structure.rst rename to projects/composablekernel/docs/conceptual/Composable-Kernel-structure.rst diff --git a/composable_kernel/docs/conf.py b/projects/composablekernel/docs/conf.py similarity index 100% rename from composable_kernel/docs/conf.py rename to projects/composablekernel/docs/conf.py diff --git a/composable_kernel/docs/data/ck_component.png b/projects/composablekernel/docs/data/ck_component.png similarity index 100% rename from composable_kernel/docs/data/ck_component.png rename to projects/composablekernel/docs/data/ck_component.png diff --git a/composable_kernel/docs/data/ck_layer.png b/projects/composablekernel/docs/data/ck_layer.png similarity index 100% rename from composable_kernel/docs/data/ck_layer.png rename to projects/composablekernel/docs/data/ck_layer.png diff --git a/composable_kernel/docs/doxygen/Doxyfile b/projects/composablekernel/docs/doxygen/Doxyfile similarity index 100% rename from composable_kernel/docs/doxygen/Doxyfile rename to projects/composablekernel/docs/doxygen/Doxyfile diff --git a/composable_kernel/docs/index.rst b/projects/composablekernel/docs/index.rst similarity index 100% rename from composable_kernel/docs/index.rst rename to projects/composablekernel/docs/index.rst diff --git a/composable_kernel/docs/install/Composable-Kernel-Docker.rst b/projects/composablekernel/docs/install/Composable-Kernel-Docker.rst similarity index 100% rename from composable_kernel/docs/install/Composable-Kernel-Docker.rst rename to projects/composablekernel/docs/install/Composable-Kernel-Docker.rst diff --git a/composable_kernel/docs/install/Composable-Kernel-install.rst b/projects/composablekernel/docs/install/Composable-Kernel-install.rst similarity index 100% rename from composable_kernel/docs/install/Composable-Kernel-install.rst rename to projects/composablekernel/docs/install/Composable-Kernel-install.rst diff --git a/composable_kernel/docs/install/Composable-Kernel-prerequisites.rst b/projects/composablekernel/docs/install/Composable-Kernel-prerequisites.rst similarity index 100% rename from composable_kernel/docs/install/Composable-Kernel-prerequisites.rst rename to projects/composablekernel/docs/install/Composable-Kernel-prerequisites.rst diff --git a/composable_kernel/docs/license.rst b/projects/composablekernel/docs/license.rst similarity index 100% rename from composable_kernel/docs/license.rst rename to projects/composablekernel/docs/license.rst diff --git a/composable_kernel/docs/reference/Composable-Kernel-API-reference.rst b/projects/composablekernel/docs/reference/Composable-Kernel-API-reference.rst similarity index 100% rename from composable_kernel/docs/reference/Composable-Kernel-API-reference.rst rename to projects/composablekernel/docs/reference/Composable-Kernel-API-reference.rst diff --git a/composable_kernel/docs/reference/Composable-Kernel-wrapper.rst b/projects/composablekernel/docs/reference/Composable-Kernel-wrapper.rst similarity index 100% rename from composable_kernel/docs/reference/Composable-Kernel-wrapper.rst rename to projects/composablekernel/docs/reference/Composable-Kernel-wrapper.rst diff --git a/composable_kernel/docs/reference/Composable_Kernel_custom_types.rst b/projects/composablekernel/docs/reference/Composable_Kernel_custom_types.rst similarity index 100% rename from composable_kernel/docs/reference/Composable_Kernel_custom_types.rst rename to projects/composablekernel/docs/reference/Composable_Kernel_custom_types.rst diff --git a/composable_kernel/docs/reference/Composable_Kernel_supported_scalar_types.rst b/projects/composablekernel/docs/reference/Composable_Kernel_supported_scalar_types.rst similarity index 100% rename from composable_kernel/docs/reference/Composable_Kernel_supported_scalar_types.rst rename to projects/composablekernel/docs/reference/Composable_Kernel_supported_scalar_types.rst diff --git a/composable_kernel/docs/reference/Composable_Kernel_vector_utilities.rst b/projects/composablekernel/docs/reference/Composable_Kernel_vector_utilities.rst similarity index 100% rename from composable_kernel/docs/reference/Composable_Kernel_vector_utilities.rst rename to projects/composablekernel/docs/reference/Composable_Kernel_vector_utilities.rst diff --git a/composable_kernel/docs/refs.bib b/projects/composablekernel/docs/refs.bib similarity index 100% rename from composable_kernel/docs/refs.bib rename to projects/composablekernel/docs/refs.bib diff --git a/composable_kernel/docs/sphinx/_toc.yml.in b/projects/composablekernel/docs/sphinx/_toc.yml.in similarity index 100% rename from composable_kernel/docs/sphinx/_toc.yml.in rename to projects/composablekernel/docs/sphinx/_toc.yml.in diff --git a/composable_kernel/docs/sphinx/requirements.in b/projects/composablekernel/docs/sphinx/requirements.in similarity index 100% rename from composable_kernel/docs/sphinx/requirements.in rename to projects/composablekernel/docs/sphinx/requirements.in diff --git a/composable_kernel/docs/sphinx/requirements.txt b/projects/composablekernel/docs/sphinx/requirements.txt similarity index 100% rename from composable_kernel/docs/sphinx/requirements.txt rename to projects/composablekernel/docs/sphinx/requirements.txt diff --git a/composable_kernel/docs/tutorial/Composable-Kernel-examples.rst b/projects/composablekernel/docs/tutorial/Composable-Kernel-examples.rst similarity index 100% rename from composable_kernel/docs/tutorial/Composable-Kernel-examples.rst rename to projects/composablekernel/docs/tutorial/Composable-Kernel-examples.rst diff --git a/composable_kernel/example/01_gemm/CMakeLists.txt b/projects/composablekernel/example/01_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/01_gemm/CMakeLists.txt rename to projects/composablekernel/example/01_gemm/CMakeLists.txt diff --git a/composable_kernel/example/01_gemm/README.md b/projects/composablekernel/example/01_gemm/README.md similarity index 100% rename from composable_kernel/example/01_gemm/README.md rename to projects/composablekernel/example/01_gemm/README.md diff --git a/composable_kernel/example/01_gemm/common.hpp b/projects/composablekernel/example/01_gemm/common.hpp similarity index 100% rename from composable_kernel/example/01_gemm/common.hpp rename to projects/composablekernel/example/01_gemm/common.hpp diff --git a/composable_kernel/example/01_gemm/gemm_dl_fp16.cpp b/projects/composablekernel/example/01_gemm/gemm_dl_fp16.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_dl_fp16.cpp rename to projects/composablekernel/example/01_gemm/gemm_dl_fp16.cpp diff --git a/composable_kernel/example/01_gemm/gemm_dl_fp32.cpp b/projects/composablekernel/example/01_gemm/gemm_dl_fp32.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_dl_fp32.cpp rename to projects/composablekernel/example/01_gemm/gemm_dl_fp32.cpp diff --git a/composable_kernel/example/01_gemm/gemm_dl_int4.cpp b/projects/composablekernel/example/01_gemm/gemm_dl_int4.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_dl_int4.cpp rename to projects/composablekernel/example/01_gemm/gemm_dl_int4.cpp diff --git a/composable_kernel/example/01_gemm/gemm_dl_int8.cpp b/projects/composablekernel/example/01_gemm/gemm_dl_int8.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_dl_int8.cpp rename to projects/composablekernel/example/01_gemm/gemm_dl_int8.cpp diff --git a/composable_kernel/example/01_gemm/gemm_dpp_fp16.cpp b/projects/composablekernel/example/01_gemm/gemm_dpp_fp16.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_dpp_fp16.cpp rename to projects/composablekernel/example/01_gemm/gemm_dpp_fp16.cpp diff --git a/composable_kernel/example/01_gemm/gemm_wmma_bf16.cpp b/projects/composablekernel/example/01_gemm/gemm_wmma_bf16.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_wmma_bf16.cpp rename to projects/composablekernel/example/01_gemm/gemm_wmma_bf16.cpp diff --git a/composable_kernel/example/01_gemm/gemm_wmma_fp16.cpp b/projects/composablekernel/example/01_gemm/gemm_wmma_fp16.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_wmma_fp16.cpp rename to projects/composablekernel/example/01_gemm/gemm_wmma_fp16.cpp diff --git a/composable_kernel/example/01_gemm/gemm_wmma_int8.cpp b/projects/composablekernel/example/01_gemm/gemm_wmma_int8.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_wmma_int8.cpp rename to projects/composablekernel/example/01_gemm/gemm_wmma_int8.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_bf16.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_bf16.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_bf16.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_bf16_pk_i4_v3.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_bf16_pk_i4_v3.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_bf16_pk_i4_v3.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_bf16_pk_i4_v3.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_bf16_streamk_v3.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_bf16_streamk_v3.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_bf16_streamk_v3.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_bf16_streamk_v3.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_bf16_v3.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_bf16_v3.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_bf16_v3.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_bf16_v3.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp16.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp16.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp16.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp16_fp8.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp16_fp8.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp16_fp8.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp16_fp8.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp16_fp8_streamk_v3.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp16_fp8_streamk_v3.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp16_fp8_streamk_v3.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp16_fp8_streamk_v3.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp16_fp8_v3.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp16_fp8_v3.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp16_fp8_v3.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp16_fp8_v3.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp16_pk_i4_v3.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp16_pk_i4_v3.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp16_pk_i4_v3.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp16_pk_i4_v3.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp16_pk_i4_v3_b_scale.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp16_pk_i4_v3_b_scale.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp16_pk_i4_v3_b_scale.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp16_pk_i4_v3_b_scale.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp16_streamk_v3.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp16_streamk_v3.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp16_streamk_v3.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp16_streamk_v3.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp16_v2.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp16_v2.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp16_v2.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp16_v2.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp16_v3.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp16_v3.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp16_v3.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp16_v3.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp64.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp64.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp64.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp64.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp8.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp8.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp8.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp8.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp8_bf8.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp8_bf8.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp8_bf8.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp8_bf8.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp8_pk_i4_bpreshuffle_v3.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp8_pk_i4_bpreshuffle_v3.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp8_pk_i4_bpreshuffle_v3.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp8_pk_i4_bpreshuffle_v3.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp8_pk_i4_v3.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp8_pk_i4_v3.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp8_pk_i4_v3.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp8_pk_i4_v3.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp8_streamk_v3.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp8_streamk_v3.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp8_streamk_v3.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp8_streamk_v3.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_fp8_v3.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_fp8_v3.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_fp8_v3.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_fp8_v3.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_int4.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_int4.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_int4.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_int4.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_int8.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_int8.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_int8.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_lds_direct_load_fp16.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_lds_direct_load_fp16.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_lds_direct_load_fp16.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_lds_direct_load_fp16.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_lds_direct_load_fp32.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_lds_direct_load_fp32.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_lds_direct_load_fp32.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_lds_direct_load_fp32.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_skip_b_lds_fp16.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_skip_b_lds_fp16.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_skip_b_lds_fp16.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_skip_b_lds_fp16.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_streamk.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_streamk.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_streamk.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_streamk.cpp diff --git a/composable_kernel/example/01_gemm/gemm_xdl_wavelet_fp16.cpp b/projects/composablekernel/example/01_gemm/gemm_xdl_wavelet_fp16.cpp similarity index 100% rename from composable_kernel/example/01_gemm/gemm_xdl_wavelet_fp16.cpp rename to projects/composablekernel/example/01_gemm/gemm_xdl_wavelet_fp16.cpp diff --git a/composable_kernel/example/01_gemm/run_gemm_example.inc b/projects/composablekernel/example/01_gemm/run_gemm_example.inc similarity index 100% rename from composable_kernel/example/01_gemm/run_gemm_example.inc rename to projects/composablekernel/example/01_gemm/run_gemm_example.inc diff --git a/composable_kernel/example/01_gemm/run_gemm_example_streamk.inc b/projects/composablekernel/example/01_gemm/run_gemm_example_streamk.inc similarity index 100% rename from composable_kernel/example/01_gemm/run_gemm_example_streamk.inc rename to projects/composablekernel/example/01_gemm/run_gemm_example_streamk.inc diff --git a/composable_kernel/example/01_gemm/run_gemm_example_streamk_v2.inc b/projects/composablekernel/example/01_gemm/run_gemm_example_streamk_v2.inc similarity index 100% rename from composable_kernel/example/01_gemm/run_gemm_example_streamk_v2.inc rename to projects/composablekernel/example/01_gemm/run_gemm_example_streamk_v2.inc diff --git a/composable_kernel/example/01_gemm/run_gemm_example_v2.inc b/projects/composablekernel/example/01_gemm/run_gemm_example_v2.inc similarity index 100% rename from composable_kernel/example/01_gemm/run_gemm_example_v2.inc rename to projects/composablekernel/example/01_gemm/run_gemm_example_v2.inc diff --git a/composable_kernel/example/02_gemm_bilinear/CMakeLists.txt b/projects/composablekernel/example/02_gemm_bilinear/CMakeLists.txt similarity index 100% rename from composable_kernel/example/02_gemm_bilinear/CMakeLists.txt rename to projects/composablekernel/example/02_gemm_bilinear/CMakeLists.txt diff --git a/composable_kernel/example/02_gemm_bilinear/README.md b/projects/composablekernel/example/02_gemm_bilinear/README.md similarity index 100% rename from composable_kernel/example/02_gemm_bilinear/README.md rename to projects/composablekernel/example/02_gemm_bilinear/README.md diff --git a/composable_kernel/example/02_gemm_bilinear/gemm_bilinear_wmma_fp16.cpp b/projects/composablekernel/example/02_gemm_bilinear/gemm_bilinear_wmma_fp16.cpp similarity index 100% rename from composable_kernel/example/02_gemm_bilinear/gemm_bilinear_wmma_fp16.cpp rename to projects/composablekernel/example/02_gemm_bilinear/gemm_bilinear_wmma_fp16.cpp diff --git a/composable_kernel/example/02_gemm_bilinear/gemm_bilinear_wmma_int8.cpp b/projects/composablekernel/example/02_gemm_bilinear/gemm_bilinear_wmma_int8.cpp similarity index 100% rename from composable_kernel/example/02_gemm_bilinear/gemm_bilinear_wmma_int8.cpp rename to projects/composablekernel/example/02_gemm_bilinear/gemm_bilinear_wmma_int8.cpp diff --git a/composable_kernel/example/02_gemm_bilinear/gemm_bilinear_xdl_fp16.cpp b/projects/composablekernel/example/02_gemm_bilinear/gemm_bilinear_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/02_gemm_bilinear/gemm_bilinear_xdl_fp16.cpp rename to projects/composablekernel/example/02_gemm_bilinear/gemm_bilinear_xdl_fp16.cpp diff --git a/composable_kernel/example/03_gemm_bias_relu/CMakeLists.txt b/projects/composablekernel/example/03_gemm_bias_relu/CMakeLists.txt similarity index 100% rename from composable_kernel/example/03_gemm_bias_relu/CMakeLists.txt rename to projects/composablekernel/example/03_gemm_bias_relu/CMakeLists.txt diff --git a/composable_kernel/example/03_gemm_bias_relu/README.md b/projects/composablekernel/example/03_gemm_bias_relu/README.md similarity index 100% rename from composable_kernel/example/03_gemm_bias_relu/README.md rename to projects/composablekernel/example/03_gemm_bias_relu/README.md diff --git a/composable_kernel/example/03_gemm_bias_relu/gemm_bias_relu_xdl_fp16.cpp b/projects/composablekernel/example/03_gemm_bias_relu/gemm_bias_relu_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/03_gemm_bias_relu/gemm_bias_relu_xdl_fp16.cpp rename to projects/composablekernel/example/03_gemm_bias_relu/gemm_bias_relu_xdl_fp16.cpp diff --git a/composable_kernel/example/04_gemm_add_add_fastgelu/CMakeLists.txt b/projects/composablekernel/example/04_gemm_add_add_fastgelu/CMakeLists.txt similarity index 100% rename from composable_kernel/example/04_gemm_add_add_fastgelu/CMakeLists.txt rename to projects/composablekernel/example/04_gemm_add_add_fastgelu/CMakeLists.txt diff --git a/composable_kernel/example/04_gemm_add_add_fastgelu/README.md b/projects/composablekernel/example/04_gemm_add_add_fastgelu/README.md similarity index 100% rename from composable_kernel/example/04_gemm_add_add_fastgelu/README.md rename to projects/composablekernel/example/04_gemm_add_add_fastgelu/README.md diff --git a/composable_kernel/example/04_gemm_add_add_fastgelu/common.hpp b/projects/composablekernel/example/04_gemm_add_add_fastgelu/common.hpp similarity index 100% rename from composable_kernel/example/04_gemm_add_add_fastgelu/common.hpp rename to projects/composablekernel/example/04_gemm_add_add_fastgelu/common.hpp diff --git a/composable_kernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_bf16.cpp b/projects/composablekernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_bf16.cpp rename to projects/composablekernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_bf16.cpp diff --git a/composable_kernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_fp16.cpp b/projects/composablekernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_fp16.cpp rename to projects/composablekernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_fp16.cpp diff --git a/composable_kernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_fp32.cpp b/projects/composablekernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_fp32.cpp rename to projects/composablekernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_fp32.cpp diff --git a/composable_kernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_int4.cpp b/projects/composablekernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_int4.cpp similarity index 100% rename from composable_kernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_int4.cpp rename to projects/composablekernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_int4.cpp diff --git a/composable_kernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_int8.cpp b/projects/composablekernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_int8.cpp rename to projects/composablekernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_int8.cpp diff --git a/composable_kernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_lds_direct_load_fp32.cpp b/projects/composablekernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_lds_direct_load_fp32.cpp similarity index 100% rename from composable_kernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_lds_direct_load_fp32.cpp rename to projects/composablekernel/example/04_gemm_add_add_fastgelu/gemm_add_add_fastgelu_xdl_lds_direct_load_fp32.cpp diff --git a/composable_kernel/example/04_gemm_add_add_fastgelu/run_gemm_add_add_fastgelu_example.inc b/projects/composablekernel/example/04_gemm_add_add_fastgelu/run_gemm_add_add_fastgelu_example.inc similarity index 100% rename from composable_kernel/example/04_gemm_add_add_fastgelu/run_gemm_add_add_fastgelu_example.inc rename to projects/composablekernel/example/04_gemm_add_add_fastgelu/run_gemm_add_add_fastgelu_example.inc diff --git a/composable_kernel/example/09_convnd_fwd/CMakeLists.txt b/projects/composablekernel/example/09_convnd_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/example/09_convnd_fwd/CMakeLists.txt rename to projects/composablekernel/example/09_convnd_fwd/CMakeLists.txt diff --git a/composable_kernel/example/09_convnd_fwd/README.md b/projects/composablekernel/example/09_convnd_fwd/README.md similarity index 100% rename from composable_kernel/example/09_convnd_fwd/README.md rename to projects/composablekernel/example/09_convnd_fwd/README.md diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_common.hpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_common.hpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_common.hpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_common.hpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_dl_common.hpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_dl_common.hpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_dl_common.hpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_dl_common.hpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_dl_fp16.cpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_dl_fp16.cpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_dl_fp16.cpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_dl_fp16.cpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_dl_fp32.cpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_dl_fp32.cpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_dl_fp32.cpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_dl_fp32.cpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_dl_int8.cpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_dl_int8.cpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_dl_int8.cpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_dl_int8.cpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_bf16.cpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_bf16.cpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_bf16.cpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_bf8.cpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_bf8.cpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_bf8.cpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_bf8.cpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_bf8_fp8.cpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_bf8_fp8.cpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_bf8_fp8.cpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_bf8_fp8.cpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_fp16.cpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_fp16.cpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_fp16.cpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_fp16_comp_fp8.cpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_fp16_comp_fp8.cpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_fp16_comp_fp8.cpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_fp16_comp_fp8.cpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_fp32.cpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_fp32.cpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_fp32.cpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_fp64.cpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_fp64.cpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_fp64.cpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_fp64.cpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_fp8.cpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_fp8.cpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_fp8.cpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_fp8.cpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_fp8_bf8.cpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_fp8_bf8.cpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_fp8_bf8.cpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_fp8_bf8.cpp diff --git a/composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_int8.cpp b/projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/09_convnd_fwd/convnd_fwd_xdl_int8.cpp rename to projects/composablekernel/example/09_convnd_fwd/convnd_fwd_xdl_int8.cpp diff --git a/composable_kernel/example/09_convnd_fwd/run_convnd_fwd_dl_example.inc b/projects/composablekernel/example/09_convnd_fwd/run_convnd_fwd_dl_example.inc similarity index 100% rename from composable_kernel/example/09_convnd_fwd/run_convnd_fwd_dl_example.inc rename to projects/composablekernel/example/09_convnd_fwd/run_convnd_fwd_dl_example.inc diff --git a/composable_kernel/example/09_convnd_fwd/run_convnd_fwd_example.inc b/projects/composablekernel/example/09_convnd_fwd/run_convnd_fwd_example.inc similarity index 100% rename from composable_kernel/example/09_convnd_fwd/run_convnd_fwd_example.inc rename to projects/composablekernel/example/09_convnd_fwd/run_convnd_fwd_example.inc diff --git a/composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/CMakeLists.txt b/projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/CMakeLists.txt rename to projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/CMakeLists.txt diff --git a/composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/common.hpp b/projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/common.hpp similarity index 100% rename from composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/common.hpp rename to projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/common.hpp diff --git a/composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_bf16.cpp b/projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_bf16.cpp rename to projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_bf16.cpp diff --git a/composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_fp16.cpp b/projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_fp16.cpp rename to projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_fp16.cpp diff --git a/composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_fp32.cpp b/projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_fp32.cpp rename to projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_fp32.cpp diff --git a/composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_int4.cpp b/projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_int4.cpp similarity index 100% rename from composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_int4.cpp rename to projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_int4.cpp diff --git a/composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_int8.cpp b/projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_int8.cpp rename to projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/convnd_fwd_max_xdl_int8.cpp diff --git a/composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/run_convnd_fwd_max_example.inc b/projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/run_convnd_fwd_max_example.inc similarity index 100% rename from composable_kernel/example/10_convnd_fwd_multiple_d_multiple_reduce/run_convnd_fwd_max_example.inc rename to projects/composablekernel/example/10_convnd_fwd_multiple_d_multiple_reduce/run_convnd_fwd_max_example.inc diff --git a/composable_kernel/example/12_reduce/CMakeLists.txt b/projects/composablekernel/example/12_reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/example/12_reduce/CMakeLists.txt rename to projects/composablekernel/example/12_reduce/CMakeLists.txt diff --git a/composable_kernel/example/12_reduce/README.md b/projects/composablekernel/example/12_reduce/README.md similarity index 100% rename from composable_kernel/example/12_reduce/README.md rename to projects/composablekernel/example/12_reduce/README.md diff --git a/composable_kernel/example/12_reduce/reduce_blockwise.cpp b/projects/composablekernel/example/12_reduce/reduce_blockwise.cpp similarity index 100% rename from composable_kernel/example/12_reduce/reduce_blockwise.cpp rename to projects/composablekernel/example/12_reduce/reduce_blockwise.cpp diff --git a/composable_kernel/example/12_reduce/reduce_blockwise_impl.hpp b/projects/composablekernel/example/12_reduce/reduce_blockwise_impl.hpp similarity index 100% rename from composable_kernel/example/12_reduce/reduce_blockwise_impl.hpp rename to projects/composablekernel/example/12_reduce/reduce_blockwise_impl.hpp diff --git a/composable_kernel/example/12_reduce/reduce_blockwise_two_call.cpp b/projects/composablekernel/example/12_reduce/reduce_blockwise_two_call.cpp similarity index 100% rename from composable_kernel/example/12_reduce/reduce_blockwise_two_call.cpp rename to projects/composablekernel/example/12_reduce/reduce_blockwise_two_call.cpp diff --git a/composable_kernel/example/12_reduce/reduce_example_common.hpp b/projects/composablekernel/example/12_reduce/reduce_example_common.hpp similarity index 100% rename from composable_kernel/example/12_reduce/reduce_example_common.hpp rename to projects/composablekernel/example/12_reduce/reduce_example_common.hpp diff --git a/composable_kernel/example/12_reduce/reduce_multiblock_atomic_add.cpp b/projects/composablekernel/example/12_reduce/reduce_multiblock_atomic_add.cpp similarity index 100% rename from composable_kernel/example/12_reduce/reduce_multiblock_atomic_add.cpp rename to projects/composablekernel/example/12_reduce/reduce_multiblock_atomic_add.cpp diff --git a/composable_kernel/example/12_reduce/reduce_multiblock_atomic_add_impl.hpp b/projects/composablekernel/example/12_reduce/reduce_multiblock_atomic_add_impl.hpp similarity index 100% rename from composable_kernel/example/12_reduce/reduce_multiblock_atomic_add_impl.hpp rename to projects/composablekernel/example/12_reduce/reduce_multiblock_atomic_add_impl.hpp diff --git a/composable_kernel/example/12_reduce/reduce_threadwise_multi_d.cpp b/projects/composablekernel/example/12_reduce/reduce_threadwise_multi_d.cpp similarity index 100% rename from composable_kernel/example/12_reduce/reduce_threadwise_multi_d.cpp rename to projects/composablekernel/example/12_reduce/reduce_threadwise_multi_d.cpp diff --git a/composable_kernel/example/12_reduce/reduce_threadwise_multi_d_impl.hpp b/projects/composablekernel/example/12_reduce/reduce_threadwise_multi_d_impl.hpp similarity index 100% rename from composable_kernel/example/12_reduce/reduce_threadwise_multi_d_impl.hpp rename to projects/composablekernel/example/12_reduce/reduce_threadwise_multi_d_impl.hpp diff --git a/composable_kernel/example/13_pool2d_fwd/CMakeLists.txt b/projects/composablekernel/example/13_pool2d_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/example/13_pool2d_fwd/CMakeLists.txt rename to projects/composablekernel/example/13_pool2d_fwd/CMakeLists.txt diff --git a/composable_kernel/example/13_pool2d_fwd/README.md b/projects/composablekernel/example/13_pool2d_fwd/README.md similarity index 100% rename from composable_kernel/example/13_pool2d_fwd/README.md rename to projects/composablekernel/example/13_pool2d_fwd/README.md diff --git a/composable_kernel/example/13_pool2d_fwd/pool2d_fwd_common.hpp b/projects/composablekernel/example/13_pool2d_fwd/pool2d_fwd_common.hpp similarity index 100% rename from composable_kernel/example/13_pool2d_fwd/pool2d_fwd_common.hpp rename to projects/composablekernel/example/13_pool2d_fwd/pool2d_fwd_common.hpp diff --git a/composable_kernel/example/13_pool2d_fwd/pool2d_fwd_fp16.cpp b/projects/composablekernel/example/13_pool2d_fwd/pool2d_fwd_fp16.cpp similarity index 100% rename from composable_kernel/example/13_pool2d_fwd/pool2d_fwd_fp16.cpp rename to projects/composablekernel/example/13_pool2d_fwd/pool2d_fwd_fp16.cpp diff --git a/composable_kernel/example/13_pool2d_fwd/pool2d_fwd_fp32.cpp b/projects/composablekernel/example/13_pool2d_fwd/pool2d_fwd_fp32.cpp similarity index 100% rename from composable_kernel/example/13_pool2d_fwd/pool2d_fwd_fp32.cpp rename to projects/composablekernel/example/13_pool2d_fwd/pool2d_fwd_fp32.cpp diff --git a/composable_kernel/example/14_gemm_quantization/CMakeLists.txt b/projects/composablekernel/example/14_gemm_quantization/CMakeLists.txt similarity index 100% rename from composable_kernel/example/14_gemm_quantization/CMakeLists.txt rename to projects/composablekernel/example/14_gemm_quantization/CMakeLists.txt diff --git a/composable_kernel/example/14_gemm_quantization/gemm_dl_quantization_int8.cpp b/projects/composablekernel/example/14_gemm_quantization/gemm_dl_quantization_int8.cpp similarity index 100% rename from composable_kernel/example/14_gemm_quantization/gemm_dl_quantization_int8.cpp rename to projects/composablekernel/example/14_gemm_quantization/gemm_dl_quantization_int8.cpp diff --git a/composable_kernel/example/14_gemm_quantization/gemm_xdl_bias_relu_quantization_int8.cpp b/projects/composablekernel/example/14_gemm_quantization/gemm_xdl_bias_relu_quantization_int8.cpp similarity index 100% rename from composable_kernel/example/14_gemm_quantization/gemm_xdl_bias_relu_quantization_int8.cpp rename to projects/composablekernel/example/14_gemm_quantization/gemm_xdl_bias_relu_quantization_int8.cpp diff --git a/composable_kernel/example/14_gemm_quantization/gemm_xdl_quantization_int8.cpp b/projects/composablekernel/example/14_gemm_quantization/gemm_xdl_quantization_int8.cpp similarity index 100% rename from composable_kernel/example/14_gemm_quantization/gemm_xdl_quantization_int8.cpp rename to projects/composablekernel/example/14_gemm_quantization/gemm_xdl_quantization_int8.cpp diff --git a/composable_kernel/example/15_grouped_gemm/CMakeLists.txt b/projects/composablekernel/example/15_grouped_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/15_grouped_gemm/CMakeLists.txt rename to projects/composablekernel/example/15_grouped_gemm/CMakeLists.txt diff --git a/composable_kernel/example/15_grouped_gemm/README.md b/projects/composablekernel/example/15_grouped_gemm/README.md similarity index 100% rename from composable_kernel/example/15_grouped_gemm/README.md rename to projects/composablekernel/example/15_grouped_gemm/README.md diff --git a/composable_kernel/example/15_grouped_gemm/grouped_gemm_multiple_d_dl_fp16.cpp b/projects/composablekernel/example/15_grouped_gemm/grouped_gemm_multiple_d_dl_fp16.cpp similarity index 100% rename from composable_kernel/example/15_grouped_gemm/grouped_gemm_multiple_d_dl_fp16.cpp rename to projects/composablekernel/example/15_grouped_gemm/grouped_gemm_multiple_d_dl_fp16.cpp diff --git a/composable_kernel/example/15_grouped_gemm/grouped_gemm_multiple_d_splitk_xdl_fp16.cpp b/projects/composablekernel/example/15_grouped_gemm/grouped_gemm_multiple_d_splitk_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/15_grouped_gemm/grouped_gemm_multiple_d_splitk_xdl_fp16.cpp rename to projects/composablekernel/example/15_grouped_gemm/grouped_gemm_multiple_d_splitk_xdl_fp16.cpp diff --git a/composable_kernel/example/15_grouped_gemm/grouped_gemm_multiple_d_xdl_fp16.cpp b/projects/composablekernel/example/15_grouped_gemm/grouped_gemm_multiple_d_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/15_grouped_gemm/grouped_gemm_multiple_d_xdl_fp16.cpp rename to projects/composablekernel/example/15_grouped_gemm/grouped_gemm_multiple_d_xdl_fp16.cpp diff --git a/composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_bf16.cpp b/projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_bf16.cpp rename to projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_bf16.cpp diff --git a/composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_fixed_nk_bias_fp16.cpp b/projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_fixed_nk_bias_fp16.cpp similarity index 100% rename from composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_fixed_nk_bias_fp16.cpp rename to projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_fixed_nk_bias_fp16.cpp diff --git a/composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_fixed_nk_fp16.cpp b/projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_fixed_nk_fp16.cpp similarity index 100% rename from composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_fixed_nk_fp16.cpp rename to projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_fixed_nk_fp16.cpp diff --git a/composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_fixed_nk_fp16_fp8.cpp b/projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_fixed_nk_fp16_fp8.cpp similarity index 100% rename from composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_fixed_nk_fp16_fp8.cpp rename to projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_fixed_nk_fp16_fp8.cpp diff --git a/composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_fp16.cpp b/projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_fp16.cpp rename to projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_fp16.cpp diff --git a/composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_fp32.cpp b/projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_fp32.cpp rename to projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_fp32.cpp diff --git a/composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_int4.cpp b/projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_int4.cpp similarity index 100% rename from composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_int4.cpp rename to projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_int4.cpp diff --git a/composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_int8.cpp b/projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_int8.cpp rename to projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_int8.cpp diff --git a/composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_splitk_fp16.cpp b/projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_splitk_fp16.cpp similarity index 100% rename from composable_kernel/example/15_grouped_gemm/grouped_gemm_xdl_splitk_fp16.cpp rename to projects/composablekernel/example/15_grouped_gemm/grouped_gemm_xdl_splitk_fp16.cpp diff --git a/composable_kernel/example/15_grouped_gemm/run_grouped_gemm_example.inc b/projects/composablekernel/example/15_grouped_gemm/run_grouped_gemm_example.inc similarity index 100% rename from composable_kernel/example/15_grouped_gemm/run_grouped_gemm_example.inc rename to projects/composablekernel/example/15_grouped_gemm/run_grouped_gemm_example.inc diff --git a/composable_kernel/example/16_gemm_multi_d_multi_reduces/CMakeLists.txt b/projects/composablekernel/example/16_gemm_multi_d_multi_reduces/CMakeLists.txt similarity index 100% rename from composable_kernel/example/16_gemm_multi_d_multi_reduces/CMakeLists.txt rename to projects/composablekernel/example/16_gemm_multi_d_multi_reduces/CMakeLists.txt diff --git a/composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_add_add_mean_meansquare_xdl_fp16.cpp b/projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_add_add_mean_meansquare_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_add_add_mean_meansquare_xdl_fp16.cpp rename to projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_add_add_mean_meansquare_xdl_fp16.cpp diff --git a/composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_add_addsquare_xdl_int8.cpp b/projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_add_addsquare_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_add_addsquare_xdl_int8.cpp rename to projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_add_addsquare_xdl_int8.cpp diff --git a/composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_bf16.cpp b/projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_bf16.cpp rename to projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_bf16.cpp diff --git a/composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_fp16.cpp b/projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_fp16.cpp rename to projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_fp16.cpp diff --git a/composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_fp32.cpp b/projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_fp32.cpp rename to projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_fp32.cpp diff --git a/composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_int4.cpp b/projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_int4.cpp similarity index 100% rename from composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_int4.cpp rename to projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_int4.cpp diff --git a/composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_int8.cpp b/projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_int8.cpp rename to projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_max_xdl_int8.cpp diff --git a/composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_mean_meansquare_xdl_bf16.cpp b/projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_mean_meansquare_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_mean_meansquare_xdl_bf16.cpp rename to projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_mean_meansquare_xdl_bf16.cpp diff --git a/composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_mean_meansquare_xdl_fp16.cpp b/projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_mean_meansquare_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_mean_meansquare_xdl_fp16.cpp rename to projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_mean_meansquare_xdl_fp16.cpp diff --git a/composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_mean_meansquare_xdl_fp32.cpp b/projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_mean_meansquare_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_mean_meansquare_xdl_fp32.cpp rename to projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_mean_meansquare_xdl_fp32.cpp diff --git a/composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_reduce_xdl_common.hpp b/projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_reduce_xdl_common.hpp similarity index 100% rename from composable_kernel/example/16_gemm_multi_d_multi_reduces/gemm_reduce_xdl_common.hpp rename to projects/composablekernel/example/16_gemm_multi_d_multi_reduces/gemm_reduce_xdl_common.hpp diff --git a/composable_kernel/example/17_convnd_bwd_data/CMakeLists.txt b/projects/composablekernel/example/17_convnd_bwd_data/CMakeLists.txt similarity index 100% rename from composable_kernel/example/17_convnd_bwd_data/CMakeLists.txt rename to projects/composablekernel/example/17_convnd_bwd_data/CMakeLists.txt diff --git a/composable_kernel/example/17_convnd_bwd_data/README.md b/projects/composablekernel/example/17_convnd_bwd_data/README.md similarity index 100% rename from composable_kernel/example/17_convnd_bwd_data/README.md rename to projects/composablekernel/example/17_convnd_bwd_data/README.md diff --git a/composable_kernel/example/17_convnd_bwd_data/convnd_bwd_data_common.hpp b/projects/composablekernel/example/17_convnd_bwd_data/convnd_bwd_data_common.hpp similarity index 100% rename from composable_kernel/example/17_convnd_bwd_data/convnd_bwd_data_common.hpp rename to projects/composablekernel/example/17_convnd_bwd_data/convnd_bwd_data_common.hpp diff --git a/composable_kernel/example/17_convnd_bwd_data/convnd_bwd_data_dl_fp16.cpp b/projects/composablekernel/example/17_convnd_bwd_data/convnd_bwd_data_dl_fp16.cpp similarity index 100% rename from composable_kernel/example/17_convnd_bwd_data/convnd_bwd_data_dl_fp16.cpp rename to projects/composablekernel/example/17_convnd_bwd_data/convnd_bwd_data_dl_fp16.cpp diff --git a/composable_kernel/example/17_convnd_bwd_data/convnd_bwd_data_xdl_fp16.cpp b/projects/composablekernel/example/17_convnd_bwd_data/convnd_bwd_data_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/17_convnd_bwd_data/convnd_bwd_data_xdl_fp16.cpp rename to projects/composablekernel/example/17_convnd_bwd_data/convnd_bwd_data_xdl_fp16.cpp diff --git a/composable_kernel/example/18_batched_gemm_reduce/CMakeLists.txt b/projects/composablekernel/example/18_batched_gemm_reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/example/18_batched_gemm_reduce/CMakeLists.txt rename to projects/composablekernel/example/18_batched_gemm_reduce/CMakeLists.txt diff --git a/composable_kernel/example/18_batched_gemm_reduce/batched_gemm_reduce_xdl_fp16.cpp b/projects/composablekernel/example/18_batched_gemm_reduce/batched_gemm_reduce_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/18_batched_gemm_reduce/batched_gemm_reduce_xdl_fp16.cpp rename to projects/composablekernel/example/18_batched_gemm_reduce/batched_gemm_reduce_xdl_fp16.cpp diff --git a/composable_kernel/example/19_binary_elementwise/CMakeLists.txt b/projects/composablekernel/example/19_binary_elementwise/CMakeLists.txt similarity index 100% rename from composable_kernel/example/19_binary_elementwise/CMakeLists.txt rename to projects/composablekernel/example/19_binary_elementwise/CMakeLists.txt diff --git a/composable_kernel/example/19_binary_elementwise/broadcast_add_2d_amn_bn.cpp b/projects/composablekernel/example/19_binary_elementwise/broadcast_add_2d_amn_bn.cpp similarity index 100% rename from composable_kernel/example/19_binary_elementwise/broadcast_add_2d_amn_bn.cpp rename to projects/composablekernel/example/19_binary_elementwise/broadcast_add_2d_amn_bn.cpp diff --git a/composable_kernel/example/19_binary_elementwise/broadcast_add_3d_am_bmnk.cpp b/projects/composablekernel/example/19_binary_elementwise/broadcast_add_3d_am_bmnk.cpp similarity index 100% rename from composable_kernel/example/19_binary_elementwise/broadcast_add_3d_am_bmnk.cpp rename to projects/composablekernel/example/19_binary_elementwise/broadcast_add_3d_am_bmnk.cpp diff --git a/composable_kernel/example/19_binary_elementwise/elementwise_add_1d.cpp b/projects/composablekernel/example/19_binary_elementwise/elementwise_add_1d.cpp similarity index 100% rename from composable_kernel/example/19_binary_elementwise/elementwise_add_1d.cpp rename to projects/composablekernel/example/19_binary_elementwise/elementwise_add_1d.cpp diff --git a/composable_kernel/example/19_binary_elementwise/elementwise_add_4d.cpp b/projects/composablekernel/example/19_binary_elementwise/elementwise_add_4d.cpp similarity index 100% rename from composable_kernel/example/19_binary_elementwise/elementwise_add_4d.cpp rename to projects/composablekernel/example/19_binary_elementwise/elementwise_add_4d.cpp diff --git a/composable_kernel/example/20_grouped_conv_bwd_weight/CMakeLists.txt b/projects/composablekernel/example/20_grouped_conv_bwd_weight/CMakeLists.txt similarity index 100% rename from composable_kernel/example/20_grouped_conv_bwd_weight/CMakeLists.txt rename to projects/composablekernel/example/20_grouped_conv_bwd_weight/CMakeLists.txt diff --git a/composable_kernel/example/20_grouped_conv_bwd_weight/common.hpp b/projects/composablekernel/example/20_grouped_conv_bwd_weight/common.hpp similarity index 100% rename from composable_kernel/example/20_grouped_conv_bwd_weight/common.hpp rename to projects/composablekernel/example/20_grouped_conv_bwd_weight/common.hpp diff --git a/composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_dl_fp16.cpp b/projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_dl_fp16.cpp similarity index 100% rename from composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_dl_fp16.cpp rename to projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_dl_fp16.cpp diff --git a/composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_v3_xdl_bf16.cpp b/projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_v3_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_v3_xdl_bf16.cpp rename to projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_v3_xdl_bf16.cpp diff --git a/composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_v3_xdl_fp16.cpp b/projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_v3_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_v3_xdl_fp16.cpp rename to projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_v3_xdl_fp16.cpp diff --git a/composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_wmma_fp16.cpp b/projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_wmma_fp16.cpp similarity index 100% rename from composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_wmma_fp16.cpp rename to projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_wmma_fp16.cpp diff --git a/composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_xdl_bf16.cpp b/projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_xdl_bf16.cpp rename to projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_xdl_bf16.cpp diff --git a/composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_xdl_fp16.cpp b/projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_xdl_fp16.cpp rename to projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_xdl_fp16.cpp diff --git a/composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_xdl_fp16_comp_bf8_fp8.cpp b/projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_xdl_fp16_comp_bf8_fp8.cpp similarity index 100% rename from composable_kernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_xdl_fp16_comp_bf8_fp8.cpp rename to projects/composablekernel/example/20_grouped_conv_bwd_weight/grouped_conv_bwd_weight_xdl_fp16_comp_bf8_fp8.cpp diff --git a/composable_kernel/example/20_grouped_conv_bwd_weight/run_grouped_conv_bwd_weight_example.inc b/projects/composablekernel/example/20_grouped_conv_bwd_weight/run_grouped_conv_bwd_weight_example.inc similarity index 100% rename from composable_kernel/example/20_grouped_conv_bwd_weight/run_grouped_conv_bwd_weight_example.inc rename to projects/composablekernel/example/20_grouped_conv_bwd_weight/run_grouped_conv_bwd_weight_example.inc diff --git a/composable_kernel/example/21_gemm_layernorm/CMakeLists.txt b/projects/composablekernel/example/21_gemm_layernorm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/21_gemm_layernorm/CMakeLists.txt rename to projects/composablekernel/example/21_gemm_layernorm/CMakeLists.txt diff --git a/composable_kernel/example/21_gemm_layernorm/gemm_bias_relu_add_layernorm_xdl_naive_fp16.cpp b/projects/composablekernel/example/21_gemm_layernorm/gemm_bias_relu_add_layernorm_xdl_naive_fp16.cpp similarity index 100% rename from composable_kernel/example/21_gemm_layernorm/gemm_bias_relu_add_layernorm_xdl_naive_fp16.cpp rename to projects/composablekernel/example/21_gemm_layernorm/gemm_bias_relu_add_layernorm_xdl_naive_fp16.cpp diff --git a/composable_kernel/example/21_gemm_layernorm/gemm_bias_relu_add_layernorm_xdl_welford_fp16.cpp b/projects/composablekernel/example/21_gemm_layernorm/gemm_bias_relu_add_layernorm_xdl_welford_fp16.cpp similarity index 100% rename from composable_kernel/example/21_gemm_layernorm/gemm_bias_relu_add_layernorm_xdl_welford_fp16.cpp rename to projects/composablekernel/example/21_gemm_layernorm/gemm_bias_relu_add_layernorm_xdl_welford_fp16.cpp diff --git a/composable_kernel/example/21_gemm_layernorm/gemm_layernorm_xdl_naive_fp16.cpp b/projects/composablekernel/example/21_gemm_layernorm/gemm_layernorm_xdl_naive_fp16.cpp similarity index 100% rename from composable_kernel/example/21_gemm_layernorm/gemm_layernorm_xdl_naive_fp16.cpp rename to projects/composablekernel/example/21_gemm_layernorm/gemm_layernorm_xdl_naive_fp16.cpp diff --git a/composable_kernel/example/21_gemm_layernorm/gemm_xdl_layernorm_naive_single_kernel_fp16.cpp b/projects/composablekernel/example/21_gemm_layernorm/gemm_xdl_layernorm_naive_single_kernel_fp16.cpp similarity index 100% rename from composable_kernel/example/21_gemm_layernorm/gemm_xdl_layernorm_naive_single_kernel_fp16.cpp rename to projects/composablekernel/example/21_gemm_layernorm/gemm_xdl_layernorm_naive_single_kernel_fp16.cpp diff --git a/composable_kernel/example/22_cgemm/CMakeLists.txt b/projects/composablekernel/example/22_cgemm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/22_cgemm/CMakeLists.txt rename to projects/composablekernel/example/22_cgemm/CMakeLists.txt diff --git a/composable_kernel/example/22_cgemm/cgemm_xdl_bf16.cpp b/projects/composablekernel/example/22_cgemm/cgemm_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/22_cgemm/cgemm_xdl_bf16.cpp rename to projects/composablekernel/example/22_cgemm/cgemm_xdl_bf16.cpp diff --git a/composable_kernel/example/22_cgemm/cgemm_xdl_common.hpp b/projects/composablekernel/example/22_cgemm/cgemm_xdl_common.hpp similarity index 100% rename from composable_kernel/example/22_cgemm/cgemm_xdl_common.hpp rename to projects/composablekernel/example/22_cgemm/cgemm_xdl_common.hpp diff --git a/composable_kernel/example/22_cgemm/cgemm_xdl_fp16.cpp b/projects/composablekernel/example/22_cgemm/cgemm_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/22_cgemm/cgemm_xdl_fp16.cpp rename to projects/composablekernel/example/22_cgemm/cgemm_xdl_fp16.cpp diff --git a/composable_kernel/example/22_cgemm/cgemm_xdl_fp32.cpp b/projects/composablekernel/example/22_cgemm/cgemm_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/22_cgemm/cgemm_xdl_fp32.cpp rename to projects/composablekernel/example/22_cgemm/cgemm_xdl_fp32.cpp diff --git a/composable_kernel/example/22_cgemm/cgemm_xdl_int4.cpp b/projects/composablekernel/example/22_cgemm/cgemm_xdl_int4.cpp similarity index 100% rename from composable_kernel/example/22_cgemm/cgemm_xdl_int4.cpp rename to projects/composablekernel/example/22_cgemm/cgemm_xdl_int4.cpp diff --git a/composable_kernel/example/22_cgemm/cgemm_xdl_int8.cpp b/projects/composablekernel/example/22_cgemm/cgemm_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/22_cgemm/cgemm_xdl_int8.cpp rename to projects/composablekernel/example/22_cgemm/cgemm_xdl_int8.cpp diff --git a/composable_kernel/example/23_softmax/CMakeLists.txt b/projects/composablekernel/example/23_softmax/CMakeLists.txt similarity index 100% rename from composable_kernel/example/23_softmax/CMakeLists.txt rename to projects/composablekernel/example/23_softmax/CMakeLists.txt diff --git a/composable_kernel/example/23_softmax/README.md b/projects/composablekernel/example/23_softmax/README.md similarity index 100% rename from composable_kernel/example/23_softmax/README.md rename to projects/composablekernel/example/23_softmax/README.md diff --git a/composable_kernel/example/23_softmax/softmax_blockwise.cpp b/projects/composablekernel/example/23_softmax/softmax_blockwise.cpp similarity index 100% rename from composable_kernel/example/23_softmax/softmax_blockwise.cpp rename to projects/composablekernel/example/23_softmax/softmax_blockwise.cpp diff --git a/composable_kernel/example/24_batched_gemm/CMakeLists.txt b/projects/composablekernel/example/24_batched_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/24_batched_gemm/CMakeLists.txt rename to projects/composablekernel/example/24_batched_gemm/CMakeLists.txt diff --git a/composable_kernel/example/24_batched_gemm/batched_gemm_xdl_bf16.cpp b/projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/24_batched_gemm/batched_gemm_xdl_bf16.cpp rename to projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_bf16.cpp diff --git a/composable_kernel/example/24_batched_gemm/batched_gemm_xdl_bf16_v3.cpp b/projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_bf16_v3.cpp similarity index 100% rename from composable_kernel/example/24_batched_gemm/batched_gemm_xdl_bf16_v3.cpp rename to projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_bf16_v3.cpp diff --git a/composable_kernel/example/24_batched_gemm/batched_gemm_xdl_fp16.cpp b/projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/24_batched_gemm/batched_gemm_xdl_fp16.cpp rename to projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_fp16.cpp diff --git a/composable_kernel/example/24_batched_gemm/batched_gemm_xdl_fp16int4_b_scale_v3.cpp b/projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_fp16int4_b_scale_v3.cpp similarity index 100% rename from composable_kernel/example/24_batched_gemm/batched_gemm_xdl_fp16int4_b_scale_v3.cpp rename to projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_fp16int4_b_scale_v3.cpp diff --git a/composable_kernel/example/24_batched_gemm/batched_gemm_xdl_fp32.cpp b/projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/24_batched_gemm/batched_gemm_xdl_fp32.cpp rename to projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_fp32.cpp diff --git a/composable_kernel/example/24_batched_gemm/batched_gemm_xdl_fp8_rowwise_v3.cpp b/projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_fp8_rowwise_v3.cpp similarity index 100% rename from composable_kernel/example/24_batched_gemm/batched_gemm_xdl_fp8_rowwise_v3.cpp rename to projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_fp8_rowwise_v3.cpp diff --git a/composable_kernel/example/24_batched_gemm/batched_gemm_xdl_int4.cpp b/projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_int4.cpp similarity index 100% rename from composable_kernel/example/24_batched_gemm/batched_gemm_xdl_int4.cpp rename to projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_int4.cpp diff --git a/composable_kernel/example/24_batched_gemm/batched_gemm_xdl_int8.cpp b/projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/24_batched_gemm/batched_gemm_xdl_int8.cpp rename to projects/composablekernel/example/24_batched_gemm/batched_gemm_xdl_int8.cpp diff --git a/composable_kernel/example/24_batched_gemm/run_batched_gemm_example.inc b/projects/composablekernel/example/24_batched_gemm/run_batched_gemm_example.inc similarity index 100% rename from composable_kernel/example/24_batched_gemm/run_batched_gemm_example.inc rename to projects/composablekernel/example/24_batched_gemm/run_batched_gemm_example.inc diff --git a/composable_kernel/example/24_batched_gemm/run_batched_gemm_example_fp16int4_b_scale.inc b/projects/composablekernel/example/24_batched_gemm/run_batched_gemm_example_fp16int4_b_scale.inc similarity index 100% rename from composable_kernel/example/24_batched_gemm/run_batched_gemm_example_fp16int4_b_scale.inc rename to projects/composablekernel/example/24_batched_gemm/run_batched_gemm_example_fp16int4_b_scale.inc diff --git a/composable_kernel/example/24_batched_gemm/run_batched_gemm_example_rowwise.inc b/projects/composablekernel/example/24_batched_gemm/run_batched_gemm_example_rowwise.inc similarity index 100% rename from composable_kernel/example/24_batched_gemm/run_batched_gemm_example_rowwise.inc rename to projects/composablekernel/example/24_batched_gemm/run_batched_gemm_example_rowwise.inc diff --git a/composable_kernel/example/25_gemm_bias_e_permute/CMakeLists.txt b/projects/composablekernel/example/25_gemm_bias_e_permute/CMakeLists.txt similarity index 100% rename from composable_kernel/example/25_gemm_bias_e_permute/CMakeLists.txt rename to projects/composablekernel/example/25_gemm_bias_e_permute/CMakeLists.txt diff --git a/composable_kernel/example/25_gemm_bias_e_permute/gemm_bias_e_permute_g1m2n3k1_xdl_fp16.cpp b/projects/composablekernel/example/25_gemm_bias_e_permute/gemm_bias_e_permute_g1m2n3k1_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/25_gemm_bias_e_permute/gemm_bias_e_permute_g1m2n3k1_xdl_fp16.cpp rename to projects/composablekernel/example/25_gemm_bias_e_permute/gemm_bias_e_permute_g1m2n3k1_xdl_fp16.cpp diff --git a/composable_kernel/example/25_gemm_bias_e_permute/gemm_bias_e_permute_g1m3n2k1_xdl_fp16.cpp b/projects/composablekernel/example/25_gemm_bias_e_permute/gemm_bias_e_permute_g1m3n2k1_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/25_gemm_bias_e_permute/gemm_bias_e_permute_g1m3n2k1_xdl_fp16.cpp rename to projects/composablekernel/example/25_gemm_bias_e_permute/gemm_bias_e_permute_g1m3n2k1_xdl_fp16.cpp diff --git a/composable_kernel/example/26_contraction/CMakeLists.txt b/projects/composablekernel/example/26_contraction/CMakeLists.txt similarity index 100% rename from composable_kernel/example/26_contraction/CMakeLists.txt rename to projects/composablekernel/example/26_contraction/CMakeLists.txt diff --git a/composable_kernel/example/26_contraction/README.md b/projects/composablekernel/example/26_contraction/README.md similarity index 100% rename from composable_kernel/example/26_contraction/README.md rename to projects/composablekernel/example/26_contraction/README.md diff --git a/composable_kernel/example/26_contraction/common_instances.hpp b/projects/composablekernel/example/26_contraction/common_instances.hpp similarity index 100% rename from composable_kernel/example/26_contraction/common_instances.hpp rename to projects/composablekernel/example/26_contraction/common_instances.hpp diff --git a/composable_kernel/example/26_contraction/contraction_bilinear_xdl_bf16_compute_fp32.cpp b/projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_bf16_compute_fp32.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_bilinear_xdl_bf16_compute_fp32.cpp rename to projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_bf16_compute_fp32.cpp diff --git a/composable_kernel/example/26_contraction/contraction_bilinear_xdl_fp16_compute_fp32.cpp b/projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_fp16_compute_fp32.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_bilinear_xdl_fp16_compute_fp32.cpp rename to projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_fp16_compute_fp32.cpp diff --git a/composable_kernel/example/26_contraction/contraction_bilinear_xdl_fp32.cpp b/projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_bilinear_xdl_fp32.cpp rename to projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_fp32.cpp diff --git a/composable_kernel/example/26_contraction/contraction_bilinear_xdl_fp32_compute_bf16.cpp b/projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_fp32_compute_bf16.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_bilinear_xdl_fp32_compute_bf16.cpp rename to projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_fp32_compute_bf16.cpp diff --git a/composable_kernel/example/26_contraction/contraction_bilinear_xdl_fp32_compute_fp16.cpp b/projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_fp32_compute_fp16.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_bilinear_xdl_fp32_compute_fp16.cpp rename to projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_fp32_compute_fp16.cpp diff --git a/composable_kernel/example/26_contraction/contraction_bilinear_xdl_fp64.cpp b/projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_fp64.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_bilinear_xdl_fp64.cpp rename to projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_fp64.cpp diff --git a/composable_kernel/example/26_contraction/contraction_bilinear_xdl_fp64_compute_fp32.cpp b/projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_fp64_compute_fp32.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_bilinear_xdl_fp64_compute_fp32.cpp rename to projects/composablekernel/example/26_contraction/contraction_bilinear_xdl_fp64_compute_fp32.cpp diff --git a/composable_kernel/example/26_contraction/contraction_scale_xdl_bf16_compute_fp32.cpp b/projects/composablekernel/example/26_contraction/contraction_scale_xdl_bf16_compute_fp32.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_scale_xdl_bf16_compute_fp32.cpp rename to projects/composablekernel/example/26_contraction/contraction_scale_xdl_bf16_compute_fp32.cpp diff --git a/composable_kernel/example/26_contraction/contraction_scale_xdl_fp16_compute_fp32.cpp b/projects/composablekernel/example/26_contraction/contraction_scale_xdl_fp16_compute_fp32.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_scale_xdl_fp16_compute_fp32.cpp rename to projects/composablekernel/example/26_contraction/contraction_scale_xdl_fp16_compute_fp32.cpp diff --git a/composable_kernel/example/26_contraction/contraction_scale_xdl_fp32.cpp b/projects/composablekernel/example/26_contraction/contraction_scale_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_scale_xdl_fp32.cpp rename to projects/composablekernel/example/26_contraction/contraction_scale_xdl_fp32.cpp diff --git a/composable_kernel/example/26_contraction/contraction_scale_xdl_fp32_compute_bf16.cpp b/projects/composablekernel/example/26_contraction/contraction_scale_xdl_fp32_compute_bf16.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_scale_xdl_fp32_compute_bf16.cpp rename to projects/composablekernel/example/26_contraction/contraction_scale_xdl_fp32_compute_bf16.cpp diff --git a/composable_kernel/example/26_contraction/contraction_scale_xdl_fp32_compute_fp16.cpp b/projects/composablekernel/example/26_contraction/contraction_scale_xdl_fp32_compute_fp16.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_scale_xdl_fp32_compute_fp16.cpp rename to projects/composablekernel/example/26_contraction/contraction_scale_xdl_fp32_compute_fp16.cpp diff --git a/composable_kernel/example/26_contraction/contraction_scale_xdl_fp64.cpp b/projects/composablekernel/example/26_contraction/contraction_scale_xdl_fp64.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_scale_xdl_fp64.cpp rename to projects/composablekernel/example/26_contraction/contraction_scale_xdl_fp64.cpp diff --git a/composable_kernel/example/26_contraction/contraction_scale_xdl_fp64_compute_fp32.cpp b/projects/composablekernel/example/26_contraction/contraction_scale_xdl_fp64_compute_fp32.cpp similarity index 100% rename from composable_kernel/example/26_contraction/contraction_scale_xdl_fp64_compute_fp32.cpp rename to projects/composablekernel/example/26_contraction/contraction_scale_xdl_fp64_compute_fp32.cpp diff --git a/composable_kernel/example/26_contraction/run_contraction_bilinear_example.inc b/projects/composablekernel/example/26_contraction/run_contraction_bilinear_example.inc similarity index 100% rename from composable_kernel/example/26_contraction/run_contraction_bilinear_example.inc rename to projects/composablekernel/example/26_contraction/run_contraction_bilinear_example.inc diff --git a/composable_kernel/example/26_contraction/run_contraction_scale_example.inc b/projects/composablekernel/example/26_contraction/run_contraction_scale_example.inc similarity index 100% rename from composable_kernel/example/26_contraction/run_contraction_scale_example.inc rename to projects/composablekernel/example/26_contraction/run_contraction_scale_example.inc diff --git a/composable_kernel/example/27_layernorm2d_fwd/CMakeLists.txt b/projects/composablekernel/example/27_layernorm2d_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/example/27_layernorm2d_fwd/CMakeLists.txt rename to projects/composablekernel/example/27_layernorm2d_fwd/CMakeLists.txt diff --git a/composable_kernel/example/27_layernorm2d_fwd/common.hpp b/projects/composablekernel/example/27_layernorm2d_fwd/common.hpp similarity index 100% rename from composable_kernel/example/27_layernorm2d_fwd/common.hpp rename to projects/composablekernel/example/27_layernorm2d_fwd/common.hpp diff --git a/composable_kernel/example/27_layernorm2d_fwd/layernorm2d_fwd_fp16.cpp b/projects/composablekernel/example/27_layernorm2d_fwd/layernorm2d_fwd_fp16.cpp similarity index 100% rename from composable_kernel/example/27_layernorm2d_fwd/layernorm2d_fwd_fp16.cpp rename to projects/composablekernel/example/27_layernorm2d_fwd/layernorm2d_fwd_fp16.cpp diff --git a/composable_kernel/example/27_layernorm2d_fwd/layernorm2d_fwd_splitk_fp16.cpp b/projects/composablekernel/example/27_layernorm2d_fwd/layernorm2d_fwd_splitk_fp16.cpp similarity index 100% rename from composable_kernel/example/27_layernorm2d_fwd/layernorm2d_fwd_splitk_fp16.cpp rename to projects/composablekernel/example/27_layernorm2d_fwd/layernorm2d_fwd_splitk_fp16.cpp diff --git a/composable_kernel/example/27_layernorm2d_fwd/run_layernorm_example.inc b/projects/composablekernel/example/27_layernorm2d_fwd/run_layernorm_example.inc similarity index 100% rename from composable_kernel/example/27_layernorm2d_fwd/run_layernorm_example.inc rename to projects/composablekernel/example/27_layernorm2d_fwd/run_layernorm_example.inc diff --git a/composable_kernel/example/28_grouped_gemm_bias_e_permute/CMakeLists.txt b/projects/composablekernel/example/28_grouped_gemm_bias_e_permute/CMakeLists.txt similarity index 100% rename from composable_kernel/example/28_grouped_gemm_bias_e_permute/CMakeLists.txt rename to projects/composablekernel/example/28_grouped_gemm_bias_e_permute/CMakeLists.txt diff --git a/composable_kernel/example/28_grouped_gemm_bias_e_permute/grouped_gemm_bias_e_permute_xdl_fp16.cpp b/projects/composablekernel/example/28_grouped_gemm_bias_e_permute/grouped_gemm_bias_e_permute_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/28_grouped_gemm_bias_e_permute/grouped_gemm_bias_e_permute_xdl_fp16.cpp rename to projects/composablekernel/example/28_grouped_gemm_bias_e_permute/grouped_gemm_bias_e_permute_xdl_fp16.cpp diff --git a/composable_kernel/example/29_batched_gemm_bias_e_permute/CMakeLists.txt b/projects/composablekernel/example/29_batched_gemm_bias_e_permute/CMakeLists.txt similarity index 100% rename from composable_kernel/example/29_batched_gemm_bias_e_permute/CMakeLists.txt rename to projects/composablekernel/example/29_batched_gemm_bias_e_permute/CMakeLists.txt diff --git a/composable_kernel/example/29_batched_gemm_bias_e_permute/batched_gemm_bias_e_permute_wmma_fp16.cpp b/projects/composablekernel/example/29_batched_gemm_bias_e_permute/batched_gemm_bias_e_permute_wmma_fp16.cpp similarity index 100% rename from composable_kernel/example/29_batched_gemm_bias_e_permute/batched_gemm_bias_e_permute_wmma_fp16.cpp rename to projects/composablekernel/example/29_batched_gemm_bias_e_permute/batched_gemm_bias_e_permute_wmma_fp16.cpp diff --git a/composable_kernel/example/29_batched_gemm_bias_e_permute/batched_gemm_bias_e_permute_xdl_fp16.cpp b/projects/composablekernel/example/29_batched_gemm_bias_e_permute/batched_gemm_bias_e_permute_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/29_batched_gemm_bias_e_permute/batched_gemm_bias_e_permute_xdl_fp16.cpp rename to projects/composablekernel/example/29_batched_gemm_bias_e_permute/batched_gemm_bias_e_permute_xdl_fp16.cpp diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/CMakeLists.txt b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/CMakeLists.txt similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/CMakeLists.txt rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/CMakeLists.txt diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/README.md b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/README.md similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/README.md rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/README.md diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/common.hpp b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/common.hpp similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/common.hpp rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/common.hpp diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/common_wmma.hpp b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/common_wmma.hpp similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/common_wmma.hpp rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/common_wmma.hpp diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_wmma_fp16.cpp b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_wmma_fp16.cpp similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_wmma_fp16.cpp rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_wmma_fp16.cpp diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_wmma_int8.cpp b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_wmma_int8.cpp similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_wmma_int8.cpp rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_wmma_int8.cpp diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_bf16.cpp b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_bf16.cpp rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_bf16.cpp diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_fp16.cpp b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_fp16.cpp rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_fp16.cpp diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_fp32.cpp b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_fp32.cpp rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_fp32.cpp diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_int4.cpp b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_int4.cpp similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_int4.cpp rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_int4.cpp diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_int8.cpp b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_int8.cpp rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_bias_relu_add_xdl_int8.cpp diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_xdl_fp16.cpp b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_xdl_fp16.cpp rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/grouped_conv_fwd_xdl_fp16.cpp diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/run_grouped_conv_fwd_bias_relu_add_example.inc b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/run_grouped_conv_fwd_bias_relu_add_example.inc similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/run_grouped_conv_fwd_bias_relu_add_example.inc rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/run_grouped_conv_fwd_bias_relu_add_example.inc diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/run_grouped_conv_fwd_bias_relu_add_wmma_example.inc b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/run_grouped_conv_fwd_bias_relu_add_wmma_example.inc similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/run_grouped_conv_fwd_bias_relu_add_wmma_example.inc rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/run_grouped_conv_fwd_bias_relu_add_wmma_example.inc diff --git a/composable_kernel/example/30_grouped_conv_fwd_multiple_d/run_grouped_conv_fwd_example.inc b/projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/run_grouped_conv_fwd_example.inc similarity index 100% rename from composable_kernel/example/30_grouped_conv_fwd_multiple_d/run_grouped_conv_fwd_example.inc rename to projects/composablekernel/example/30_grouped_conv_fwd_multiple_d/run_grouped_conv_fwd_example.inc diff --git a/composable_kernel/example/31_batched_gemm_gemm/CMakeLists.txt b/projects/composablekernel/example/31_batched_gemm_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/31_batched_gemm_gemm/CMakeLists.txt rename to projects/composablekernel/example/31_batched_gemm_gemm/CMakeLists.txt diff --git a/composable_kernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_bf16.cpp b/projects/composablekernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_bf16.cpp rename to projects/composablekernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_bf16.cpp diff --git a/composable_kernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_fp16.cpp b/projects/composablekernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_fp16.cpp rename to projects/composablekernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_fp16.cpp diff --git a/composable_kernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_fp32.cpp b/projects/composablekernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_fp32.cpp rename to projects/composablekernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_fp32.cpp diff --git a/composable_kernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_int4.cpp b/projects/composablekernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_int4.cpp similarity index 100% rename from composable_kernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_int4.cpp rename to projects/composablekernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_int4.cpp diff --git a/composable_kernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_int8.cpp b/projects/composablekernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_int8.cpp rename to projects/composablekernel/example/31_batched_gemm_gemm/batched_gemm_gemm_xdl_int8.cpp diff --git a/composable_kernel/example/31_batched_gemm_gemm/run_batched_gemm_gemm_example.inc b/projects/composablekernel/example/31_batched_gemm_gemm/run_batched_gemm_gemm_example.inc similarity index 100% rename from composable_kernel/example/31_batched_gemm_gemm/run_batched_gemm_gemm_example.inc rename to projects/composablekernel/example/31_batched_gemm_gemm/run_batched_gemm_gemm_example.inc diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/CMakeLists.txt b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/CMakeLists.txt rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/CMakeLists.txt diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_lower_triangle_scale_softmax_gemm_permute_wmma_fp16.cpp b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_lower_triangle_scale_softmax_gemm_permute_wmma_fp16.cpp similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_lower_triangle_scale_softmax_gemm_permute_wmma_fp16.cpp rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_lower_triangle_scale_softmax_gemm_permute_wmma_fp16.cpp diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_lower_triangle_scale_softmax_gemm_permute_xdl_fp16.cpp b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_lower_triangle_scale_softmax_gemm_permute_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_lower_triangle_scale_softmax_gemm_permute_xdl_fp16.cpp rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_lower_triangle_scale_softmax_gemm_permute_xdl_fp16.cpp diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_permute_wmma_fp16.cpp b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_permute_wmma_fp16.cpp similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_permute_wmma_fp16.cpp rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_permute_wmma_fp16.cpp diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_permute_xdl_bf16.cpp b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_permute_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_permute_xdl_bf16.cpp rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_permute_xdl_bf16.cpp diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_permute_xdl_fp16.cpp b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_permute_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_permute_xdl_fp16.cpp rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_permute_xdl_fp16.cpp diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_xdl_bf16.cpp b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_xdl_bf16.cpp rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_xdl_bf16.cpp diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_xdl_fp16.cpp b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_xdl_fp16.cpp rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/batched_gemm_scale_softmax_gemm_xdl_fp16.cpp diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/cross_attention_forward_wmma_fp16.cpp b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/cross_attention_forward_wmma_fp16.cpp similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/cross_attention_forward_wmma_fp16.cpp rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/cross_attention_forward_wmma_fp16.cpp diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/grouped_gemm_lower_triangle_scale_softmax_gemm_permute_xdl_fp16.cpp b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/grouped_gemm_lower_triangle_scale_softmax_gemm_permute_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/grouped_gemm_lower_triangle_scale_softmax_gemm_permute_xdl_fp16.cpp rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/grouped_gemm_lower_triangle_scale_softmax_gemm_permute_xdl_fp16.cpp diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/grouped_gemm_scale_softmax_gemm_permute_xdl_fp16.cpp b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/grouped_gemm_scale_softmax_gemm_permute_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/grouped_gemm_scale_softmax_gemm_permute_xdl_fp16.cpp rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/grouped_gemm_scale_softmax_gemm_permute_xdl_fp16.cpp diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/grouped_query_attention_forward_wmma_fp16.cpp b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/grouped_query_attention_forward_wmma_fp16.cpp similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/grouped_query_attention_forward_wmma_fp16.cpp rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/grouped_query_attention_forward_wmma_fp16.cpp diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/multi_query_attention_forward_wmma_fp16.cpp b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/multi_query_attention_forward_wmma_fp16.cpp similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/multi_query_attention_forward_wmma_fp16.cpp rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/multi_query_attention_forward_wmma_fp16.cpp diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_batched_gemm_scale_softmax_gemm.inc b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_batched_gemm_scale_softmax_gemm.inc similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_batched_gemm_scale_softmax_gemm.inc rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_batched_gemm_scale_softmax_gemm.inc diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_batched_gemm_scale_softmax_gemm_permute.inc b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_batched_gemm_scale_softmax_gemm_permute.inc similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_batched_gemm_scale_softmax_gemm_permute.inc rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_batched_gemm_scale_softmax_gemm_permute.inc diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_batched_gemm_scale_softmax_gemm_permute_wmma.inc b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_batched_gemm_scale_softmax_gemm_permute_wmma.inc similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_batched_gemm_scale_softmax_gemm_permute_wmma.inc rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_batched_gemm_scale_softmax_gemm_permute_wmma.inc diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_cross_attention_wmma.inc b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_cross_attention_wmma.inc similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_cross_attention_wmma.inc rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_cross_attention_wmma.inc diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_grouped_gemm_scale_softmax_gemm_permute.inc b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_grouped_gemm_scale_softmax_gemm_permute.inc similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_grouped_gemm_scale_softmax_gemm_permute.inc rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_grouped_gemm_scale_softmax_gemm_permute.inc diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_grouped_query_attention_forward_wmma.inc b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_grouped_query_attention_forward_wmma.inc similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_grouped_query_attention_forward_wmma.inc rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_grouped_query_attention_forward_wmma.inc diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_multi_query_attention_forward_wmma.inc b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_multi_query_attention_forward_wmma.inc similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_multi_query_attention_forward_wmma.inc rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_multi_query_attention_forward_wmma.inc diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_self_attention_wmma.inc b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_self_attention_wmma.inc similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/run_self_attention_wmma.inc rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/run_self_attention_wmma.inc diff --git a/composable_kernel/example/32_batched_gemm_scale_softmax_gemm/self_attention_forward_wmma_fp16.cpp b/projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/self_attention_forward_wmma_fp16.cpp similarity index 100% rename from composable_kernel/example/32_batched_gemm_scale_softmax_gemm/self_attention_forward_wmma_fp16.cpp rename to projects/composablekernel/example/32_batched_gemm_scale_softmax_gemm/self_attention_forward_wmma_fp16.cpp diff --git a/composable_kernel/example/33_multiple_reduce/CMakeLists.txt b/projects/composablekernel/example/33_multiple_reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/example/33_multiple_reduce/CMakeLists.txt rename to projects/composablekernel/example/33_multiple_reduce/CMakeLists.txt diff --git a/composable_kernel/example/33_multiple_reduce/README.md b/projects/composablekernel/example/33_multiple_reduce/README.md similarity index 100% rename from composable_kernel/example/33_multiple_reduce/README.md rename to projects/composablekernel/example/33_multiple_reduce/README.md diff --git a/composable_kernel/example/33_multiple_reduce/dual_reduce_common.hpp b/projects/composablekernel/example/33_multiple_reduce/dual_reduce_common.hpp similarity index 100% rename from composable_kernel/example/33_multiple_reduce/dual_reduce_common.hpp rename to projects/composablekernel/example/33_multiple_reduce/dual_reduce_common.hpp diff --git a/composable_kernel/example/33_multiple_reduce/dual_reduce_multiblock.cpp b/projects/composablekernel/example/33_multiple_reduce/dual_reduce_multiblock.cpp similarity index 100% rename from composable_kernel/example/33_multiple_reduce/dual_reduce_multiblock.cpp rename to projects/composablekernel/example/33_multiple_reduce/dual_reduce_multiblock.cpp diff --git a/composable_kernel/example/33_multiple_reduce/dual_reduce_threadwise.cpp b/projects/composablekernel/example/33_multiple_reduce/dual_reduce_threadwise.cpp similarity index 100% rename from composable_kernel/example/33_multiple_reduce/dual_reduce_threadwise.cpp rename to projects/composablekernel/example/33_multiple_reduce/dual_reduce_threadwise.cpp diff --git a/composable_kernel/example/34_batchnorm/CMakeLists.txt b/projects/composablekernel/example/34_batchnorm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/34_batchnorm/CMakeLists.txt rename to projects/composablekernel/example/34_batchnorm/CMakeLists.txt diff --git a/composable_kernel/example/34_batchnorm/README.md b/projects/composablekernel/example/34_batchnorm/README.md similarity index 100% rename from composable_kernel/example/34_batchnorm/README.md rename to projects/composablekernel/example/34_batchnorm/README.md diff --git a/composable_kernel/example/34_batchnorm/batchnorm_backward_nhwc.cpp b/projects/composablekernel/example/34_batchnorm/batchnorm_backward_nhwc.cpp similarity index 100% rename from composable_kernel/example/34_batchnorm/batchnorm_backward_nhwc.cpp rename to projects/composablekernel/example/34_batchnorm/batchnorm_backward_nhwc.cpp diff --git a/composable_kernel/example/34_batchnorm/batchnorm_common.hpp b/projects/composablekernel/example/34_batchnorm/batchnorm_common.hpp similarity index 100% rename from composable_kernel/example/34_batchnorm/batchnorm_common.hpp rename to projects/composablekernel/example/34_batchnorm/batchnorm_common.hpp diff --git a/composable_kernel/example/34_batchnorm/batchnorm_forward_inferring_nhwc.cpp b/projects/composablekernel/example/34_batchnorm/batchnorm_forward_inferring_nhwc.cpp similarity index 100% rename from composable_kernel/example/34_batchnorm/batchnorm_forward_inferring_nhwc.cpp rename to projects/composablekernel/example/34_batchnorm/batchnorm_forward_inferring_nhwc.cpp diff --git a/composable_kernel/example/34_batchnorm/batchnorm_forward_training_nhwc.cpp b/projects/composablekernel/example/34_batchnorm/batchnorm_forward_training_nhwc.cpp similarity index 100% rename from composable_kernel/example/34_batchnorm/batchnorm_forward_training_nhwc.cpp rename to projects/composablekernel/example/34_batchnorm/batchnorm_forward_training_nhwc.cpp diff --git a/composable_kernel/example/34_batchnorm/batchnorm_forward_training_nhwc_obsolete.cpp b/projects/composablekernel/example/34_batchnorm/batchnorm_forward_training_nhwc_obsolete.cpp similarity index 100% rename from composable_kernel/example/34_batchnorm/batchnorm_forward_training_nhwc_obsolete.cpp rename to projects/composablekernel/example/34_batchnorm/batchnorm_forward_training_nhwc_obsolete.cpp diff --git a/composable_kernel/example/34_batchnorm/batchnorm_infer_impl.hpp b/projects/composablekernel/example/34_batchnorm/batchnorm_infer_impl.hpp similarity index 100% rename from composable_kernel/example/34_batchnorm/batchnorm_infer_impl.hpp rename to projects/composablekernel/example/34_batchnorm/batchnorm_infer_impl.hpp diff --git a/composable_kernel/example/35_splitK_gemm/CMakeLists.txt b/projects/composablekernel/example/35_splitK_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/35_splitK_gemm/CMakeLists.txt rename to projects/composablekernel/example/35_splitK_gemm/CMakeLists.txt diff --git a/composable_kernel/example/35_splitK_gemm/common.hpp b/projects/composablekernel/example/35_splitK_gemm/common.hpp similarity index 100% rename from composable_kernel/example/35_splitK_gemm/common.hpp rename to projects/composablekernel/example/35_splitK_gemm/common.hpp diff --git a/composable_kernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_bf16.cpp b/projects/composablekernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_bf16.cpp similarity index 100% rename from composable_kernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_bf16.cpp rename to projects/composablekernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_bf16.cpp diff --git a/composable_kernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_bf16A_i8B.cpp b/projects/composablekernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_bf16A_i8B.cpp similarity index 100% rename from composable_kernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_bf16A_i8B.cpp rename to projects/composablekernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_bf16A_i8B.cpp diff --git a/composable_kernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_multi_d_bf16.cpp b/projects/composablekernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_multi_d_bf16.cpp similarity index 100% rename from composable_kernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_multi_d_bf16.cpp rename to projects/composablekernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_multi_d_bf16.cpp diff --git a/composable_kernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_multi_d_fp16.cpp b/projects/composablekernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_multi_d_fp16.cpp similarity index 100% rename from composable_kernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_multi_d_fp16.cpp rename to projects/composablekernel/example/35_splitK_gemm/gemm_xdl_splitk_reduce_multi_d_fp16.cpp diff --git a/composable_kernel/example/35_splitK_gemm/run_gemm_splitk_reduce_multi_d_example.inc b/projects/composablekernel/example/35_splitK_gemm/run_gemm_splitk_reduce_multi_d_example.inc similarity index 100% rename from composable_kernel/example/35_splitK_gemm/run_gemm_splitk_reduce_multi_d_example.inc rename to projects/composablekernel/example/35_splitK_gemm/run_gemm_splitk_reduce_multi_d_example.inc diff --git a/composable_kernel/example/35_splitK_gemm/run_splitK_gemm_example.inc b/projects/composablekernel/example/35_splitK_gemm/run_splitK_gemm_example.inc similarity index 100% rename from composable_kernel/example/35_splitK_gemm/run_splitK_gemm_example.inc rename to projects/composablekernel/example/35_splitK_gemm/run_splitK_gemm_example.inc diff --git a/composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_bf16.cpp b/projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_bf16.cpp rename to projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_bf16.cpp diff --git a/composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_fp16.cpp b/projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_fp16.cpp rename to projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_fp16.cpp diff --git a/composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_fp16_fp8.cpp b/projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_fp16_fp8.cpp similarity index 100% rename from composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_fp16_fp8.cpp rename to projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_fp16_fp8.cpp diff --git a/composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_fp32.cpp b/projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_fp32.cpp rename to projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_fp32.cpp diff --git a/composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_int4.cpp b/projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_int4.cpp similarity index 100% rename from composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_int4.cpp rename to projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_int4.cpp diff --git a/composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_int8.cpp b/projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_int8.cpp rename to projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_int8.cpp diff --git a/composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_lds_direct_load_fp16.cpp b/projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_lds_direct_load_fp16.cpp similarity index 100% rename from composable_kernel/example/35_splitK_gemm/splitK_gemm_xdl_lds_direct_load_fp16.cpp rename to projects/composablekernel/example/35_splitK_gemm/splitK_gemm_xdl_lds_direct_load_fp16.cpp diff --git a/composable_kernel/example/36_sparse_embedding/CMakeLists.txt b/projects/composablekernel/example/36_sparse_embedding/CMakeLists.txt similarity index 100% rename from composable_kernel/example/36_sparse_embedding/CMakeLists.txt rename to projects/composablekernel/example/36_sparse_embedding/CMakeLists.txt diff --git a/composable_kernel/example/36_sparse_embedding/sparse_embedding3_forward_layernorm.cpp b/projects/composablekernel/example/36_sparse_embedding/sparse_embedding3_forward_layernorm.cpp similarity index 100% rename from composable_kernel/example/36_sparse_embedding/sparse_embedding3_forward_layernorm.cpp rename to projects/composablekernel/example/36_sparse_embedding/sparse_embedding3_forward_layernorm.cpp diff --git a/composable_kernel/example/37_batched_gemm_add_add_relu_gemm_add/CMakeLists.txt b/projects/composablekernel/example/37_batched_gemm_add_add_relu_gemm_add/CMakeLists.txt similarity index 100% rename from composable_kernel/example/37_batched_gemm_add_add_relu_gemm_add/CMakeLists.txt rename to projects/composablekernel/example/37_batched_gemm_add_add_relu_gemm_add/CMakeLists.txt diff --git a/composable_kernel/example/37_batched_gemm_add_add_relu_gemm_add/batched_gemm_add_add_relu_gemm_add_xdl_fp16.cpp b/projects/composablekernel/example/37_batched_gemm_add_add_relu_gemm_add/batched_gemm_add_add_relu_gemm_add_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/37_batched_gemm_add_add_relu_gemm_add/batched_gemm_add_add_relu_gemm_add_xdl_fp16.cpp rename to projects/composablekernel/example/37_batched_gemm_add_add_relu_gemm_add/batched_gemm_add_add_relu_gemm_add_xdl_fp16.cpp diff --git a/composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/CMakeLists.txt b/projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/CMakeLists.txt similarity index 100% rename from composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/CMakeLists.txt rename to projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/CMakeLists.txt diff --git a/composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/common.hpp b/projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/common.hpp similarity index 100% rename from composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/common.hpp rename to projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/common.hpp diff --git a/composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_bias_relu_xdl_fp16.cpp b/projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_bias_relu_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_bias_relu_xdl_fp16.cpp rename to projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_bias_relu_xdl_fp16.cpp diff --git a/composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_wmma_fp16.cpp b/projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_wmma_fp16.cpp similarity index 100% rename from composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_wmma_fp16.cpp rename to projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_wmma_fp16.cpp diff --git a/composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_xdl_fp16.cpp b/projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_xdl_fp16.cpp rename to projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_xdl_fp16.cpp diff --git a/composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_xdl_fp16_comp_bf8_fp8.cpp b/projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_xdl_fp16_comp_bf8_fp8.cpp similarity index 100% rename from composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_xdl_fp16_comp_bf8_fp8.cpp rename to projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/grouped_conv_bwd_data_xdl_fp16_comp_bf8_fp8.cpp diff --git a/composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/run_grouped_conv_bwd_data_bias_relu_example.inc b/projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/run_grouped_conv_bwd_data_bias_relu_example.inc similarity index 100% rename from composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/run_grouped_conv_bwd_data_bias_relu_example.inc rename to projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/run_grouped_conv_bwd_data_bias_relu_example.inc diff --git a/composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/run_grouped_conv_bwd_data_example.inc b/projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/run_grouped_conv_bwd_data_example.inc similarity index 100% rename from composable_kernel/example/38_grouped_conv_bwd_data_multiple_d/run_grouped_conv_bwd_data_example.inc rename to projects/composablekernel/example/38_grouped_conv_bwd_data_multiple_d/run_grouped_conv_bwd_data_example.inc diff --git a/composable_kernel/example/39_permute/CMakeLists.txt b/projects/composablekernel/example/39_permute/CMakeLists.txt similarity index 100% rename from composable_kernel/example/39_permute/CMakeLists.txt rename to projects/composablekernel/example/39_permute/CMakeLists.txt diff --git a/composable_kernel/example/39_permute/common.hpp b/projects/composablekernel/example/39_permute/common.hpp similarity index 100% rename from composable_kernel/example/39_permute/common.hpp rename to projects/composablekernel/example/39_permute/common.hpp diff --git a/composable_kernel/example/39_permute/permute_1xHxW_fp16.cpp b/projects/composablekernel/example/39_permute/permute_1xHxW_fp16.cpp similarity index 100% rename from composable_kernel/example/39_permute/permute_1xHxW_fp16.cpp rename to projects/composablekernel/example/39_permute/permute_1xHxW_fp16.cpp diff --git a/composable_kernel/example/39_permute/permute_HxWx4_fp16.cpp b/projects/composablekernel/example/39_permute/permute_HxWx4_fp16.cpp similarity index 100% rename from composable_kernel/example/39_permute/permute_HxWx4_fp16.cpp rename to projects/composablekernel/example/39_permute/permute_HxWx4_fp16.cpp diff --git a/composable_kernel/example/39_permute/permute_NxHxW_fp16.cpp b/projects/composablekernel/example/39_permute/permute_NxHxW_fp16.cpp similarity index 100% rename from composable_kernel/example/39_permute/permute_NxHxW_fp16.cpp rename to projects/composablekernel/example/39_permute/permute_NxHxW_fp16.cpp diff --git a/composable_kernel/example/39_permute/run_permute_bundle_example.inc b/projects/composablekernel/example/39_permute/run_permute_bundle_example.inc similarity index 100% rename from composable_kernel/example/39_permute/run_permute_bundle_example.inc rename to projects/composablekernel/example/39_permute/run_permute_bundle_example.inc diff --git a/composable_kernel/example/39_permute/run_permute_element_example.inc b/projects/composablekernel/example/39_permute/run_permute_element_example.inc similarity index 100% rename from composable_kernel/example/39_permute/run_permute_element_example.inc rename to projects/composablekernel/example/39_permute/run_permute_element_example.inc diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/CMakeLists.txt b/projects/composablekernel/example/40_conv2d_fwd_quantization/CMakeLists.txt similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/CMakeLists.txt rename to projects/composablekernel/example/40_conv2d_fwd_quantization/CMakeLists.txt diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/common.hpp b/projects/composablekernel/example/40_conv2d_fwd_quantization/common.hpp similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/common.hpp rename to projects/composablekernel/example/40_conv2d_fwd_quantization/common.hpp diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_relu_perchannel_quantization_int8.cpp b/projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_relu_perchannel_quantization_int8.cpp similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_relu_perchannel_quantization_int8.cpp rename to projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_relu_perchannel_quantization_int8.cpp diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_relu_perlayer_quantization_int8.cpp b/projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_relu_perlayer_quantization_int8.cpp similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_relu_perlayer_quantization_int8.cpp rename to projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_relu_perlayer_quantization_int8.cpp diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_tanh_perchannel_quantization_int8.cpp b/projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_tanh_perchannel_quantization_int8.cpp similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_tanh_perchannel_quantization_int8.cpp rename to projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_tanh_perchannel_quantization_int8.cpp diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_tanh_perlayer_quantization_int8.cpp b/projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_tanh_perlayer_quantization_int8.cpp similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_tanh_perlayer_quantization_int8.cpp rename to projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_bias_tanh_perlayer_quantization_int8.cpp diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_perchannel_quantization_int8.cpp b/projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_perchannel_quantization_int8.cpp similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_perchannel_quantization_int8.cpp rename to projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_perchannel_quantization_int8.cpp diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_perlayer_quantization_int8.cpp b/projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_perlayer_quantization_int8.cpp similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_perlayer_quantization_int8.cpp rename to projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_dl_perlayer_quantization_int8.cpp diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_bias_relu_perchannel_quantization_int8.cpp b/projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_bias_relu_perchannel_quantization_int8.cpp similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_bias_relu_perchannel_quantization_int8.cpp rename to projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_bias_relu_perchannel_quantization_int8.cpp diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_bias_relu_perlayer_quantization_int8.cpp b/projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_bias_relu_perlayer_quantization_int8.cpp similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_bias_relu_perlayer_quantization_int8.cpp rename to projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_bias_relu_perlayer_quantization_int8.cpp diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_perchannel_quantization_int8.cpp b/projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_perchannel_quantization_int8.cpp similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_perchannel_quantization_int8.cpp rename to projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_perchannel_quantization_int8.cpp diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_perlayer_quantization_int8.cpp b/projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_perlayer_quantization_int8.cpp similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_perlayer_quantization_int8.cpp rename to projects/composablekernel/example/40_conv2d_fwd_quantization/conv2d_fwd_xdl_perlayer_quantization_int8.cpp diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_bias_perchannel_quantization_example.inc b/projects/composablekernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_bias_perchannel_quantization_example.inc similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_bias_perchannel_quantization_example.inc rename to projects/composablekernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_bias_perchannel_quantization_example.inc diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_bias_perlayer_quantization_example.inc b/projects/composablekernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_bias_perlayer_quantization_example.inc similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_bias_perlayer_quantization_example.inc rename to projects/composablekernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_bias_perlayer_quantization_example.inc diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_perchannel_quantization_example.inc b/projects/composablekernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_perchannel_quantization_example.inc similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_perchannel_quantization_example.inc rename to projects/composablekernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_perchannel_quantization_example.inc diff --git a/composable_kernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_perlayer_quantization_example.inc b/projects/composablekernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_perlayer_quantization_example.inc similarity index 100% rename from composable_kernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_perlayer_quantization_example.inc rename to projects/composablekernel/example/40_conv2d_fwd_quantization/run_conv2d_fwd_perlayer_quantization_example.inc diff --git a/composable_kernel/example/41_grouped_conv_conv_fwd/CMakeLists.txt b/projects/composablekernel/example/41_grouped_conv_conv_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/example/41_grouped_conv_conv_fwd/CMakeLists.txt rename to projects/composablekernel/example/41_grouped_conv_conv_fwd/CMakeLists.txt diff --git a/composable_kernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_bf16.cpp b/projects/composablekernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_bf16.cpp similarity index 100% rename from composable_kernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_bf16.cpp rename to projects/composablekernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_bf16.cpp diff --git a/composable_kernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_fp16.cpp b/projects/composablekernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_fp16.cpp rename to projects/composablekernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_fp16.cpp diff --git a/composable_kernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_fp32.cpp b/projects/composablekernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_fp32.cpp rename to projects/composablekernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_fp32.cpp diff --git a/composable_kernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_int4.cpp b/projects/composablekernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_int4.cpp similarity index 100% rename from composable_kernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_int4.cpp rename to projects/composablekernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_int4.cpp diff --git a/composable_kernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_int8.cpp b/projects/composablekernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_int8.cpp rename to projects/composablekernel/example/41_grouped_conv_conv_fwd/grouped_conv_conv_fwd_xdl_int8.cpp diff --git a/composable_kernel/example/41_grouped_conv_conv_fwd/run_grouped_conv_conv_fwd_example.inc b/projects/composablekernel/example/41_grouped_conv_conv_fwd/run_grouped_conv_conv_fwd_example.inc similarity index 100% rename from composable_kernel/example/41_grouped_conv_conv_fwd/run_grouped_conv_conv_fwd_example.inc rename to projects/composablekernel/example/41_grouped_conv_conv_fwd/run_grouped_conv_conv_fwd_example.inc diff --git a/composable_kernel/example/42_groupnorm_fwd/CMakeLists.txt b/projects/composablekernel/example/42_groupnorm_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/example/42_groupnorm_fwd/CMakeLists.txt rename to projects/composablekernel/example/42_groupnorm_fwd/CMakeLists.txt diff --git a/composable_kernel/example/42_groupnorm_fwd/common.hpp b/projects/composablekernel/example/42_groupnorm_fwd/common.hpp similarity index 100% rename from composable_kernel/example/42_groupnorm_fwd/common.hpp rename to projects/composablekernel/example/42_groupnorm_fwd/common.hpp diff --git a/composable_kernel/example/42_groupnorm_fwd/groupnorm_fwd_sigmoid_mul_fp16.cpp b/projects/composablekernel/example/42_groupnorm_fwd/groupnorm_fwd_sigmoid_mul_fp16.cpp similarity index 100% rename from composable_kernel/example/42_groupnorm_fwd/groupnorm_fwd_sigmoid_mul_fp16.cpp rename to projects/composablekernel/example/42_groupnorm_fwd/groupnorm_fwd_sigmoid_mul_fp16.cpp diff --git a/composable_kernel/example/42_groupnorm_fwd/groupnorm_fwd_splitk_fp16.cpp b/projects/composablekernel/example/42_groupnorm_fwd/groupnorm_fwd_splitk_fp16.cpp similarity index 100% rename from composable_kernel/example/42_groupnorm_fwd/groupnorm_fwd_splitk_fp16.cpp rename to projects/composablekernel/example/42_groupnorm_fwd/groupnorm_fwd_splitk_fp16.cpp diff --git a/composable_kernel/example/42_groupnorm_fwd/groupnorm_fwd_swish_fp16.cpp b/projects/composablekernel/example/42_groupnorm_fwd/groupnorm_fwd_swish_fp16.cpp similarity index 100% rename from composable_kernel/example/42_groupnorm_fwd/groupnorm_fwd_swish_fp16.cpp rename to projects/composablekernel/example/42_groupnorm_fwd/groupnorm_fwd_swish_fp16.cpp diff --git a/composable_kernel/example/42_groupnorm_fwd/run_groupnorm_fwd_example.inc b/projects/composablekernel/example/42_groupnorm_fwd/run_groupnorm_fwd_example.inc similarity index 100% rename from composable_kernel/example/42_groupnorm_fwd/run_groupnorm_fwd_example.inc rename to projects/composablekernel/example/42_groupnorm_fwd/run_groupnorm_fwd_example.inc diff --git a/composable_kernel/example/43_splitk_gemm_bias_e_permute/CMakeLists.txt b/projects/composablekernel/example/43_splitk_gemm_bias_e_permute/CMakeLists.txt similarity index 100% rename from composable_kernel/example/43_splitk_gemm_bias_e_permute/CMakeLists.txt rename to projects/composablekernel/example/43_splitk_gemm_bias_e_permute/CMakeLists.txt diff --git a/composable_kernel/example/43_splitk_gemm_bias_e_permute/splitk_gemm_bias_e_permute_xdl_fp16.cpp b/projects/composablekernel/example/43_splitk_gemm_bias_e_permute/splitk_gemm_bias_e_permute_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/43_splitk_gemm_bias_e_permute/splitk_gemm_bias_e_permute_xdl_fp16.cpp rename to projects/composablekernel/example/43_splitk_gemm_bias_e_permute/splitk_gemm_bias_e_permute_xdl_fp16.cpp diff --git a/composable_kernel/example/43_splitk_gemm_bias_e_permute/splitk_gemm_bias_e_permute_xdl_fp32.cpp b/projects/composablekernel/example/43_splitk_gemm_bias_e_permute/splitk_gemm_bias_e_permute_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/43_splitk_gemm_bias_e_permute/splitk_gemm_bias_e_permute_xdl_fp32.cpp rename to projects/composablekernel/example/43_splitk_gemm_bias_e_permute/splitk_gemm_bias_e_permute_xdl_fp32.cpp diff --git a/composable_kernel/example/44_elementwise_permute/CMakeLists.txt b/projects/composablekernel/example/44_elementwise_permute/CMakeLists.txt similarity index 100% rename from composable_kernel/example/44_elementwise_permute/CMakeLists.txt rename to projects/composablekernel/example/44_elementwise_permute/CMakeLists.txt diff --git a/composable_kernel/example/44_elementwise_permute/elementwise_binary_4D_fp16.cpp b/projects/composablekernel/example/44_elementwise_permute/elementwise_binary_4D_fp16.cpp similarity index 100% rename from composable_kernel/example/44_elementwise_permute/elementwise_binary_4D_fp16.cpp rename to projects/composablekernel/example/44_elementwise_permute/elementwise_binary_4D_fp16.cpp diff --git a/composable_kernel/example/44_elementwise_permute/elementwise_permute_4D_fp16.cpp b/projects/composablekernel/example/44_elementwise_permute/elementwise_permute_4D_fp16.cpp similarity index 100% rename from composable_kernel/example/44_elementwise_permute/elementwise_permute_4D_fp16.cpp rename to projects/composablekernel/example/44_elementwise_permute/elementwise_permute_4D_fp16.cpp diff --git a/composable_kernel/example/44_elementwise_permute/elementwise_permute_4D_fp16_col.cpp b/projects/composablekernel/example/44_elementwise_permute/elementwise_permute_4D_fp16_col.cpp similarity index 100% rename from composable_kernel/example/44_elementwise_permute/elementwise_permute_4D_fp16_col.cpp rename to projects/composablekernel/example/44_elementwise_permute/elementwise_permute_4D_fp16_col.cpp diff --git a/composable_kernel/example/44_elementwise_permute/elementwise_permute_4D_fp16_row.cpp b/projects/composablekernel/example/44_elementwise_permute/elementwise_permute_4D_fp16_row.cpp similarity index 100% rename from composable_kernel/example/44_elementwise_permute/elementwise_permute_4D_fp16_row.cpp rename to projects/composablekernel/example/44_elementwise_permute/elementwise_permute_4D_fp16_row.cpp diff --git a/composable_kernel/example/44_elementwise_permute/elementwise_permute_4D_fp32_col.cpp b/projects/composablekernel/example/44_elementwise_permute/elementwise_permute_4D_fp32_col.cpp similarity index 100% rename from composable_kernel/example/44_elementwise_permute/elementwise_permute_4D_fp32_col.cpp rename to projects/composablekernel/example/44_elementwise_permute/elementwise_permute_4D_fp32_col.cpp diff --git a/composable_kernel/example/44_elementwise_permute/elementwise_permute_4D_fp32_row.cpp b/projects/composablekernel/example/44_elementwise_permute/elementwise_permute_4D_fp32_row.cpp similarity index 100% rename from composable_kernel/example/44_elementwise_permute/elementwise_permute_4D_fp32_row.cpp rename to projects/composablekernel/example/44_elementwise_permute/elementwise_permute_4D_fp32_row.cpp diff --git a/composable_kernel/example/44_elementwise_permute/elementwise_scale_permute_amax_2D_fp16_fp8.cpp b/projects/composablekernel/example/44_elementwise_permute/elementwise_scale_permute_amax_2D_fp16_fp8.cpp similarity index 100% rename from composable_kernel/example/44_elementwise_permute/elementwise_scale_permute_amax_2D_fp16_fp8.cpp rename to projects/composablekernel/example/44_elementwise_permute/elementwise_scale_permute_amax_2D_fp16_fp8.cpp diff --git a/composable_kernel/example/44_elementwise_permute/elementwise_trinary_4D_fp16.cpp b/projects/composablekernel/example/44_elementwise_permute/elementwise_trinary_4D_fp16.cpp similarity index 100% rename from composable_kernel/example/44_elementwise_permute/elementwise_trinary_4D_fp16.cpp rename to projects/composablekernel/example/44_elementwise_permute/elementwise_trinary_4D_fp16.cpp diff --git a/composable_kernel/example/45_elementwise_normalization/CMakeLists.txt b/projects/composablekernel/example/45_elementwise_normalization/CMakeLists.txt similarity index 100% rename from composable_kernel/example/45_elementwise_normalization/CMakeLists.txt rename to projects/composablekernel/example/45_elementwise_normalization/CMakeLists.txt diff --git a/composable_kernel/example/45_elementwise_normalization/elementwise_layernorm_blockwise.cpp b/projects/composablekernel/example/45_elementwise_normalization/elementwise_layernorm_blockwise.cpp similarity index 100% rename from composable_kernel/example/45_elementwise_normalization/elementwise_layernorm_blockwise.cpp rename to projects/composablekernel/example/45_elementwise_normalization/elementwise_layernorm_blockwise.cpp diff --git a/composable_kernel/example/46_gemm_add_multiply/CMakeLists.txt b/projects/composablekernel/example/46_gemm_add_multiply/CMakeLists.txt similarity index 100% rename from composable_kernel/example/46_gemm_add_multiply/CMakeLists.txt rename to projects/composablekernel/example/46_gemm_add_multiply/CMakeLists.txt diff --git a/composable_kernel/example/46_gemm_add_multiply/README.md b/projects/composablekernel/example/46_gemm_add_multiply/README.md similarity index 100% rename from composable_kernel/example/46_gemm_add_multiply/README.md rename to projects/composablekernel/example/46_gemm_add_multiply/README.md diff --git a/composable_kernel/example/46_gemm_add_multiply/common.hpp b/projects/composablekernel/example/46_gemm_add_multiply/common.hpp similarity index 100% rename from composable_kernel/example/46_gemm_add_multiply/common.hpp rename to projects/composablekernel/example/46_gemm_add_multiply/common.hpp diff --git a/composable_kernel/example/46_gemm_add_multiply/gemm_add_multiply_dl_fp16.cpp b/projects/composablekernel/example/46_gemm_add_multiply/gemm_add_multiply_dl_fp16.cpp similarity index 100% rename from composable_kernel/example/46_gemm_add_multiply/gemm_add_multiply_dl_fp16.cpp rename to projects/composablekernel/example/46_gemm_add_multiply/gemm_add_multiply_dl_fp16.cpp diff --git a/composable_kernel/example/46_gemm_add_multiply/gemm_add_multiply_xdl_fp16.cpp b/projects/composablekernel/example/46_gemm_add_multiply/gemm_add_multiply_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/46_gemm_add_multiply/gemm_add_multiply_xdl_fp16.cpp rename to projects/composablekernel/example/46_gemm_add_multiply/gemm_add_multiply_xdl_fp16.cpp diff --git a/composable_kernel/example/46_gemm_add_multiply/run_gemm_add_multiply_example.inc b/projects/composablekernel/example/46_gemm_add_multiply/run_gemm_add_multiply_example.inc similarity index 100% rename from composable_kernel/example/46_gemm_add_multiply/run_gemm_add_multiply_example.inc rename to projects/composablekernel/example/46_gemm_add_multiply/run_gemm_add_multiply_example.inc diff --git a/composable_kernel/example/47_gemm_bias_softmax_gemm_permute/CMakeLists.txt b/projects/composablekernel/example/47_gemm_bias_softmax_gemm_permute/CMakeLists.txt similarity index 100% rename from composable_kernel/example/47_gemm_bias_softmax_gemm_permute/CMakeLists.txt rename to projects/composablekernel/example/47_gemm_bias_softmax_gemm_permute/CMakeLists.txt diff --git a/composable_kernel/example/47_gemm_bias_softmax_gemm_permute/gemm_bias_softmax_gemm_permute_xdl.cpp b/projects/composablekernel/example/47_gemm_bias_softmax_gemm_permute/gemm_bias_softmax_gemm_permute_xdl.cpp similarity index 100% rename from composable_kernel/example/47_gemm_bias_softmax_gemm_permute/gemm_bias_softmax_gemm_permute_xdl.cpp rename to projects/composablekernel/example/47_gemm_bias_softmax_gemm_permute/gemm_bias_softmax_gemm_permute_xdl.cpp diff --git a/composable_kernel/example/48_pool3d_fwd/CMakeLists.txt b/projects/composablekernel/example/48_pool3d_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/example/48_pool3d_fwd/CMakeLists.txt rename to projects/composablekernel/example/48_pool3d_fwd/CMakeLists.txt diff --git a/composable_kernel/example/48_pool3d_fwd/pool3d_fwd_common.hpp b/projects/composablekernel/example/48_pool3d_fwd/pool3d_fwd_common.hpp similarity index 100% rename from composable_kernel/example/48_pool3d_fwd/pool3d_fwd_common.hpp rename to projects/composablekernel/example/48_pool3d_fwd/pool3d_fwd_common.hpp diff --git a/composable_kernel/example/48_pool3d_fwd/pool3d_fwd_fp16.cpp b/projects/composablekernel/example/48_pool3d_fwd/pool3d_fwd_fp16.cpp similarity index 100% rename from composable_kernel/example/48_pool3d_fwd/pool3d_fwd_fp16.cpp rename to projects/composablekernel/example/48_pool3d_fwd/pool3d_fwd_fp16.cpp diff --git a/composable_kernel/example/49_maxpool2d_bwd/CMakeLists.txt b/projects/composablekernel/example/49_maxpool2d_bwd/CMakeLists.txt similarity index 100% rename from composable_kernel/example/49_maxpool2d_bwd/CMakeLists.txt rename to projects/composablekernel/example/49_maxpool2d_bwd/CMakeLists.txt diff --git a/composable_kernel/example/49_maxpool2d_bwd/maxpool2d_bwd_bf16.cpp b/projects/composablekernel/example/49_maxpool2d_bwd/maxpool2d_bwd_bf16.cpp similarity index 100% rename from composable_kernel/example/49_maxpool2d_bwd/maxpool2d_bwd_bf16.cpp rename to projects/composablekernel/example/49_maxpool2d_bwd/maxpool2d_bwd_bf16.cpp diff --git a/composable_kernel/example/49_maxpool2d_bwd/maxpool2d_bwd_common.hpp b/projects/composablekernel/example/49_maxpool2d_bwd/maxpool2d_bwd_common.hpp similarity index 100% rename from composable_kernel/example/49_maxpool2d_bwd/maxpool2d_bwd_common.hpp rename to projects/composablekernel/example/49_maxpool2d_bwd/maxpool2d_bwd_common.hpp diff --git a/composable_kernel/example/49_maxpool2d_bwd/maxpool2d_bwd_fp16.cpp b/projects/composablekernel/example/49_maxpool2d_bwd/maxpool2d_bwd_fp16.cpp similarity index 100% rename from composable_kernel/example/49_maxpool2d_bwd/maxpool2d_bwd_fp16.cpp rename to projects/composablekernel/example/49_maxpool2d_bwd/maxpool2d_bwd_fp16.cpp diff --git a/composable_kernel/example/49_maxpool2d_bwd/maxpool2d_bwd_fp32.cpp b/projects/composablekernel/example/49_maxpool2d_bwd/maxpool2d_bwd_fp32.cpp similarity index 100% rename from composable_kernel/example/49_maxpool2d_bwd/maxpool2d_bwd_fp32.cpp rename to projects/composablekernel/example/49_maxpool2d_bwd/maxpool2d_bwd_fp32.cpp diff --git a/composable_kernel/example/50_put_element/CMakeLists.txt b/projects/composablekernel/example/50_put_element/CMakeLists.txt similarity index 100% rename from composable_kernel/example/50_put_element/CMakeLists.txt rename to projects/composablekernel/example/50_put_element/CMakeLists.txt diff --git a/composable_kernel/example/50_put_element/put_element_fp16.cpp b/projects/composablekernel/example/50_put_element/put_element_fp16.cpp similarity index 100% rename from composable_kernel/example/50_put_element/put_element_fp16.cpp rename to projects/composablekernel/example/50_put_element/put_element_fp16.cpp diff --git a/composable_kernel/example/51_avgpool3d_bwd/CMakeLists.txt b/projects/composablekernel/example/51_avgpool3d_bwd/CMakeLists.txt similarity index 100% rename from composable_kernel/example/51_avgpool3d_bwd/CMakeLists.txt rename to projects/composablekernel/example/51_avgpool3d_bwd/CMakeLists.txt diff --git a/composable_kernel/example/51_avgpool3d_bwd/avgpool3d_bwd_bf16.cpp b/projects/composablekernel/example/51_avgpool3d_bwd/avgpool3d_bwd_bf16.cpp similarity index 100% rename from composable_kernel/example/51_avgpool3d_bwd/avgpool3d_bwd_bf16.cpp rename to projects/composablekernel/example/51_avgpool3d_bwd/avgpool3d_bwd_bf16.cpp diff --git a/composable_kernel/example/51_avgpool3d_bwd/avgpool3d_bwd_common.hpp b/projects/composablekernel/example/51_avgpool3d_bwd/avgpool3d_bwd_common.hpp similarity index 100% rename from composable_kernel/example/51_avgpool3d_bwd/avgpool3d_bwd_common.hpp rename to projects/composablekernel/example/51_avgpool3d_bwd/avgpool3d_bwd_common.hpp diff --git a/composable_kernel/example/51_avgpool3d_bwd/avgpool3d_bwd_fp16.cpp b/projects/composablekernel/example/51_avgpool3d_bwd/avgpool3d_bwd_fp16.cpp similarity index 100% rename from composable_kernel/example/51_avgpool3d_bwd/avgpool3d_bwd_fp16.cpp rename to projects/composablekernel/example/51_avgpool3d_bwd/avgpool3d_bwd_fp16.cpp diff --git a/composable_kernel/example/51_avgpool3d_bwd/avgpool3d_bwd_fp32.cpp b/projects/composablekernel/example/51_avgpool3d_bwd/avgpool3d_bwd_fp32.cpp similarity index 100% rename from composable_kernel/example/51_avgpool3d_bwd/avgpool3d_bwd_fp32.cpp rename to projects/composablekernel/example/51_avgpool3d_bwd/avgpool3d_bwd_fp32.cpp diff --git a/composable_kernel/example/52_im2col_col2im/CMakeLists.txt b/projects/composablekernel/example/52_im2col_col2im/CMakeLists.txt similarity index 100% rename from composable_kernel/example/52_im2col_col2im/CMakeLists.txt rename to projects/composablekernel/example/52_im2col_col2im/CMakeLists.txt diff --git a/composable_kernel/example/52_im2col_col2im/column_to_image_f32.cpp b/projects/composablekernel/example/52_im2col_col2im/column_to_image_f32.cpp similarity index 100% rename from composable_kernel/example/52_im2col_col2im/column_to_image_f32.cpp rename to projects/composablekernel/example/52_im2col_col2im/column_to_image_f32.cpp diff --git a/composable_kernel/example/52_im2col_col2im/common.hpp b/projects/composablekernel/example/52_im2col_col2im/common.hpp similarity index 100% rename from composable_kernel/example/52_im2col_col2im/common.hpp rename to projects/composablekernel/example/52_im2col_col2im/common.hpp diff --git a/composable_kernel/example/52_im2col_col2im/image_to_column_f32.cpp b/projects/composablekernel/example/52_im2col_col2im/image_to_column_f32.cpp similarity index 100% rename from composable_kernel/example/52_im2col_col2im/image_to_column_f32.cpp rename to projects/composablekernel/example/52_im2col_col2im/image_to_column_f32.cpp diff --git a/composable_kernel/example/53_layernorm2d_bwd/CMakeLists.txt b/projects/composablekernel/example/53_layernorm2d_bwd/CMakeLists.txt similarity index 100% rename from composable_kernel/example/53_layernorm2d_bwd/CMakeLists.txt rename to projects/composablekernel/example/53_layernorm2d_bwd/CMakeLists.txt diff --git a/composable_kernel/example/53_layernorm2d_bwd/layernorm2d_bwd_fp32.cpp b/projects/composablekernel/example/53_layernorm2d_bwd/layernorm2d_bwd_fp32.cpp similarity index 100% rename from composable_kernel/example/53_layernorm2d_bwd/layernorm2d_bwd_fp32.cpp rename to projects/composablekernel/example/53_layernorm2d_bwd/layernorm2d_bwd_fp32.cpp diff --git a/composable_kernel/example/54_groupnorm_bwd/CMakeLists.txt b/projects/composablekernel/example/54_groupnorm_bwd/CMakeLists.txt similarity index 100% rename from composable_kernel/example/54_groupnorm_bwd/CMakeLists.txt rename to projects/composablekernel/example/54_groupnorm_bwd/CMakeLists.txt diff --git a/composable_kernel/example/54_groupnorm_bwd/groupnorm_bwd_fp32.cpp b/projects/composablekernel/example/54_groupnorm_bwd/groupnorm_bwd_fp32.cpp similarity index 100% rename from composable_kernel/example/54_groupnorm_bwd/groupnorm_bwd_fp32.cpp rename to projects/composablekernel/example/54_groupnorm_bwd/groupnorm_bwd_fp32.cpp diff --git a/composable_kernel/example/59_grouped_gemm_multi_ABD/CMakeLists.txt b/projects/composablekernel/example/59_grouped_gemm_multi_ABD/CMakeLists.txt similarity index 100% rename from composable_kernel/example/59_grouped_gemm_multi_ABD/CMakeLists.txt rename to projects/composablekernel/example/59_grouped_gemm_multi_ABD/CMakeLists.txt diff --git a/composable_kernel/example/59_grouped_gemm_multi_ABD/grouped_gemm_multi_abd_xdl_fixed_nk_bias_bf16_i8.cpp b/projects/composablekernel/example/59_grouped_gemm_multi_ABD/grouped_gemm_multi_abd_xdl_fixed_nk_bias_bf16_i8.cpp similarity index 100% rename from composable_kernel/example/59_grouped_gemm_multi_ABD/grouped_gemm_multi_abd_xdl_fixed_nk_bias_bf16_i8.cpp rename to projects/composablekernel/example/59_grouped_gemm_multi_ABD/grouped_gemm_multi_abd_xdl_fixed_nk_bias_bf16_i8.cpp diff --git a/composable_kernel/example/59_grouped_gemm_multi_ABD/grouped_gemm_multi_abd_xdl_fixed_nk_bias_fp16.cpp b/projects/composablekernel/example/59_grouped_gemm_multi_ABD/grouped_gemm_multi_abd_xdl_fixed_nk_bias_fp16.cpp similarity index 100% rename from composable_kernel/example/59_grouped_gemm_multi_ABD/grouped_gemm_multi_abd_xdl_fixed_nk_bias_fp16.cpp rename to projects/composablekernel/example/59_grouped_gemm_multi_ABD/grouped_gemm_multi_abd_xdl_fixed_nk_bias_fp16.cpp diff --git a/composable_kernel/example/60_gemm_multi_ABD/CMakeLists.txt b/projects/composablekernel/example/60_gemm_multi_ABD/CMakeLists.txt similarity index 100% rename from composable_kernel/example/60_gemm_multi_ABD/CMakeLists.txt rename to projects/composablekernel/example/60_gemm_multi_ABD/CMakeLists.txt diff --git a/composable_kernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_bias_fastgelu_bf16_i8.cpp b/projects/composablekernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_bias_fastgelu_bf16_i8.cpp similarity index 100% rename from composable_kernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_bias_fastgelu_bf16_i8.cpp rename to projects/composablekernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_bias_fastgelu_bf16_i8.cpp diff --git a/composable_kernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_fastgelu_bf16_i8.cpp b/projects/composablekernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_fastgelu_bf16_i8.cpp similarity index 100% rename from composable_kernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_fastgelu_bf16_i8.cpp rename to projects/composablekernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_fastgelu_bf16_i8.cpp diff --git a/composable_kernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_fp16.cpp b/projects/composablekernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_fp16.cpp rename to projects/composablekernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_fp16.cpp diff --git a/composable_kernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_multiply_bias_fastgelu_bf16_i8.cpp b/projects/composablekernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_multiply_bias_fastgelu_bf16_i8.cpp similarity index 100% rename from composable_kernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_multiply_bias_fastgelu_bf16_i8.cpp rename to projects/composablekernel/example/60_gemm_multi_ABD/gemm_multi_ABD_xdl_multiply_bias_fastgelu_bf16_i8.cpp diff --git a/composable_kernel/example/61_contraction_multi_ABD/CMakeLists.txt b/projects/composablekernel/example/61_contraction_multi_ABD/CMakeLists.txt similarity index 100% rename from composable_kernel/example/61_contraction_multi_ABD/CMakeLists.txt rename to projects/composablekernel/example/61_contraction_multi_ABD/CMakeLists.txt diff --git a/composable_kernel/example/61_contraction_multi_ABD/contraction_multi_ABD_xdl_fp16.cpp b/projects/composablekernel/example/61_contraction_multi_ABD/contraction_multi_ABD_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/61_contraction_multi_ABD/contraction_multi_ABD_xdl_fp16.cpp rename to projects/composablekernel/example/61_contraction_multi_ABD/contraction_multi_ABD_xdl_fp16.cpp diff --git a/composable_kernel/example/61_contraction_multi_ABD/contraction_multi_ABD_xdl_fp8.cpp b/projects/composablekernel/example/61_contraction_multi_ABD/contraction_multi_ABD_xdl_fp8.cpp similarity index 100% rename from composable_kernel/example/61_contraction_multi_ABD/contraction_multi_ABD_xdl_fp8.cpp rename to projects/composablekernel/example/61_contraction_multi_ABD/contraction_multi_ABD_xdl_fp8.cpp diff --git a/composable_kernel/example/62_convnd_activ/CMakeLists.txt b/projects/composablekernel/example/62_convnd_activ/CMakeLists.txt similarity index 100% rename from composable_kernel/example/62_convnd_activ/CMakeLists.txt rename to projects/composablekernel/example/62_convnd_activ/CMakeLists.txt diff --git a/composable_kernel/example/62_convnd_activ/binary/CMakeLists.txt b/projects/composablekernel/example/62_convnd_activ/binary/CMakeLists.txt similarity index 100% rename from composable_kernel/example/62_convnd_activ/binary/CMakeLists.txt rename to projects/composablekernel/example/62_convnd_activ/binary/CMakeLists.txt diff --git a/composable_kernel/example/62_convnd_activ/binary/convnd_bwd_data_xdl_bilinear_residual_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/binary/convnd_bwd_data_xdl_bilinear_residual_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/binary/convnd_bwd_data_xdl_bilinear_residual_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/binary/convnd_bwd_data_xdl_bilinear_residual_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/binary/convnd_bwd_weight_xdl_bilinear_residual_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/binary/convnd_bwd_weight_xdl_bilinear_residual_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/binary/convnd_bwd_weight_xdl_bilinear_residual_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/binary/convnd_bwd_weight_xdl_bilinear_residual_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/binary/convnd_fwd_xdl_bilinear_residual_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/binary/convnd_fwd_xdl_bilinear_residual_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/binary/convnd_fwd_xdl_bilinear_residual_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/binary/convnd_fwd_xdl_bilinear_residual_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/convinvscale/CMakeLists.txt b/projects/composablekernel/example/62_convnd_activ/convinvscale/CMakeLists.txt similarity index 100% rename from composable_kernel/example/62_convnd_activ/convinvscale/CMakeLists.txt rename to projects/composablekernel/example/62_convnd_activ/convinvscale/CMakeLists.txt diff --git a/composable_kernel/example/62_convnd_activ/convinvscale/convnd_fwd_convinvscale_common.hpp b/projects/composablekernel/example/62_convnd_activ/convinvscale/convnd_fwd_convinvscale_common.hpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convinvscale/convnd_fwd_convinvscale_common.hpp rename to projects/composablekernel/example/62_convnd_activ/convinvscale/convnd_fwd_convinvscale_common.hpp diff --git a/composable_kernel/example/62_convnd_activ/convinvscale/convnd_fwd_xdl_convinvscale_fp8.cpp b/projects/composablekernel/example/62_convnd_activ/convinvscale/convnd_fwd_xdl_convinvscale_fp8.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convinvscale/convnd_fwd_xdl_convinvscale_fp8.cpp rename to projects/composablekernel/example/62_convnd_activ/convinvscale/convnd_fwd_xdl_convinvscale_fp8.cpp diff --git a/composable_kernel/example/62_convnd_activ/convinvscale/run_convnd_fwd_convinvscale_example.inc b/projects/composablekernel/example/62_convnd_activ/convinvscale/run_convnd_fwd_convinvscale_example.inc similarity index 100% rename from composable_kernel/example/62_convnd_activ/convinvscale/run_convnd_fwd_convinvscale_example.inc rename to projects/composablekernel/example/62_convnd_activ/convinvscale/run_convnd_fwd_convinvscale_example.inc diff --git a/composable_kernel/example/62_convnd_activ/convnd_fwd_xdl_scaleadd_scaleadd_relu_bcasted_bias_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/convnd_fwd_xdl_scaleadd_scaleadd_relu_bcasted_bias_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convnd_fwd_xdl_scaleadd_scaleadd_relu_bcasted_bias_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/convnd_fwd_xdl_scaleadd_scaleadd_relu_bcasted_bias_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/convnd_fwd_xdl_scaleadd_scaleadd_relu_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/convnd_fwd_xdl_scaleadd_scaleadd_relu_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convnd_fwd_xdl_scaleadd_scaleadd_relu_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/convnd_fwd_xdl_scaleadd_scaleadd_relu_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/convscale/CMakeLists.txt b/projects/composablekernel/example/62_convnd_activ/convscale/CMakeLists.txt similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale/CMakeLists.txt rename to projects/composablekernel/example/62_convnd_activ/convscale/CMakeLists.txt diff --git a/composable_kernel/example/62_convnd_activ/convscale/convnd_fwd_convscale_common.hpp b/projects/composablekernel/example/62_convnd_activ/convscale/convnd_fwd_convscale_common.hpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale/convnd_fwd_convscale_common.hpp rename to projects/composablekernel/example/62_convnd_activ/convscale/convnd_fwd_convscale_common.hpp diff --git a/composable_kernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_bf8.cpp b/projects/composablekernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_bf8.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_bf8.cpp rename to projects/composablekernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_bf8.cpp diff --git a/composable_kernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_bf8_fp8.cpp b/projects/composablekernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_bf8_fp8.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_bf8_fp8.cpp rename to projects/composablekernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_bf8_fp8.cpp diff --git a/composable_kernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_fp8.cpp b/projects/composablekernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_fp8.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_fp8.cpp rename to projects/composablekernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_fp8.cpp diff --git a/composable_kernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_fp8_bf8.cpp b/projects/composablekernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_fp8_bf8.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_fp8_bf8.cpp rename to projects/composablekernel/example/62_convnd_activ/convscale/convnd_fwd_xdl_convscale_fp8_bf8.cpp diff --git a/composable_kernel/example/62_convnd_activ/convscale/run_convnd_fwd_convscale_example.inc b/projects/composablekernel/example/62_convnd_activ/convscale/run_convnd_fwd_convscale_example.inc similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale/run_convnd_fwd_convscale_example.inc rename to projects/composablekernel/example/62_convnd_activ/convscale/run_convnd_fwd_convscale_example.inc diff --git a/composable_kernel/example/62_convnd_activ/convscale_add/CMakeLists.txt b/projects/composablekernel/example/62_convnd_activ/convscale_add/CMakeLists.txt similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale_add/CMakeLists.txt rename to projects/composablekernel/example/62_convnd_activ/convscale_add/CMakeLists.txt diff --git a/composable_kernel/example/62_convnd_activ/convscale_add/convnd_fwd_convscale_add_common.hpp b/projects/composablekernel/example/62_convnd_activ/convscale_add/convnd_fwd_convscale_add_common.hpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale_add/convnd_fwd_convscale_add_common.hpp rename to projects/composablekernel/example/62_convnd_activ/convscale_add/convnd_fwd_convscale_add_common.hpp diff --git a/composable_kernel/example/62_convnd_activ/convscale_add/convnd_fwd_xdl_convscale_add_fp8.cpp b/projects/composablekernel/example/62_convnd_activ/convscale_add/convnd_fwd_xdl_convscale_add_fp8.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale_add/convnd_fwd_xdl_convscale_add_fp8.cpp rename to projects/composablekernel/example/62_convnd_activ/convscale_add/convnd_fwd_xdl_convscale_add_fp8.cpp diff --git a/composable_kernel/example/62_convnd_activ/convscale_add/run_convnd_fwd_convscale_add_example.inc b/projects/composablekernel/example/62_convnd_activ/convscale_add/run_convnd_fwd_convscale_add_example.inc similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale_add/run_convnd_fwd_convscale_add_example.inc rename to projects/composablekernel/example/62_convnd_activ/convscale_add/run_convnd_fwd_convscale_add_example.inc diff --git a/composable_kernel/example/62_convnd_activ/convscale_reduce/CMakeLists.txt b/projects/composablekernel/example/62_convnd_activ/convscale_reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale_reduce/CMakeLists.txt rename to projects/composablekernel/example/62_convnd_activ/convscale_reduce/CMakeLists.txt diff --git a/composable_kernel/example/62_convnd_activ/convscale_reduce/convnd_fwd_convscale_reduce_common.hpp b/projects/composablekernel/example/62_convnd_activ/convscale_reduce/convnd_fwd_convscale_reduce_common.hpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale_reduce/convnd_fwd_convscale_reduce_common.hpp rename to projects/composablekernel/example/62_convnd_activ/convscale_reduce/convnd_fwd_convscale_reduce_common.hpp diff --git a/composable_kernel/example/62_convnd_activ/convscale_reduce/convnd_fwd_xdl_convscale_amax_fp8.cpp b/projects/composablekernel/example/62_convnd_activ/convscale_reduce/convnd_fwd_xdl_convscale_amax_fp8.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale_reduce/convnd_fwd_xdl_convscale_amax_fp8.cpp rename to projects/composablekernel/example/62_convnd_activ/convscale_reduce/convnd_fwd_xdl_convscale_amax_fp8.cpp diff --git a/composable_kernel/example/62_convnd_activ/convscale_reduce/convnd_fwd_xdl_convscale_relu_amax_fp8.cpp b/projects/composablekernel/example/62_convnd_activ/convscale_reduce/convnd_fwd_xdl_convscale_relu_amax_fp8.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale_reduce/convnd_fwd_xdl_convscale_relu_amax_fp8.cpp rename to projects/composablekernel/example/62_convnd_activ/convscale_reduce/convnd_fwd_xdl_convscale_relu_amax_fp8.cpp diff --git a/composable_kernel/example/62_convnd_activ/convscale_reduce/run_convnd_fwd_example.inc b/projects/composablekernel/example/62_convnd_activ/convscale_reduce/run_convnd_fwd_example.inc similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale_reduce/run_convnd_fwd_example.inc rename to projects/composablekernel/example/62_convnd_activ/convscale_reduce/run_convnd_fwd_example.inc diff --git a/composable_kernel/example/62_convnd_activ/convscale_relu/CMakeLists.txt b/projects/composablekernel/example/62_convnd_activ/convscale_relu/CMakeLists.txt similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale_relu/CMakeLists.txt rename to projects/composablekernel/example/62_convnd_activ/convscale_relu/CMakeLists.txt diff --git a/composable_kernel/example/62_convnd_activ/convscale_relu/convnd_fwd_convscale_relu_common.hpp b/projects/composablekernel/example/62_convnd_activ/convscale_relu/convnd_fwd_convscale_relu_common.hpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale_relu/convnd_fwd_convscale_relu_common.hpp rename to projects/composablekernel/example/62_convnd_activ/convscale_relu/convnd_fwd_convscale_relu_common.hpp diff --git a/composable_kernel/example/62_convnd_activ/convscale_relu/convnd_fwd_xdl_convscale_relu_fp8.cpp b/projects/composablekernel/example/62_convnd_activ/convscale_relu/convnd_fwd_xdl_convscale_relu_fp8.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale_relu/convnd_fwd_xdl_convscale_relu_fp8.cpp rename to projects/composablekernel/example/62_convnd_activ/convscale_relu/convnd_fwd_xdl_convscale_relu_fp8.cpp diff --git a/composable_kernel/example/62_convnd_activ/convscale_relu/run_convnd_fwd_convscale_relu_example.inc b/projects/composablekernel/example/62_convnd_activ/convscale_relu/run_convnd_fwd_convscale_relu_example.inc similarity index 100% rename from composable_kernel/example/62_convnd_activ/convscale_relu/run_convnd_fwd_convscale_relu_example.inc rename to projects/composablekernel/example/62_convnd_activ/convscale_relu/run_convnd_fwd_convscale_relu_example.inc diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/CMakeLists.txt b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/CMakeLists.txt similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/CMakeLists.txt rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/CMakeLists.txt diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_activ_dynamic_unary_common.hpp b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_activ_dynamic_unary_common.hpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_activ_dynamic_unary_common.hpp rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_activ_dynamic_unary_common.hpp diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_abs_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_abs_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_abs_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_abs_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_clippedrelu_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_clippedrelu_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_clippedrelu_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_clippedrelu_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_elu_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_elu_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_elu_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_elu_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_leakyrelu_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_leakyrelu_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_leakyrelu_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_leakyrelu_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_logistic_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_logistic_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_logistic_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_logistic_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_passthrough_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_passthrough_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_passthrough_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_passthrough_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_pow_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_pow_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_pow_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_pow_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_relu_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_relu_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_relu_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_relu_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_sigmoid_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_sigmoid_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_sigmoid_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_sigmoid_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_softrelu_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_softrelu_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_softrelu_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_softrelu_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_swish_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_swish_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_swish_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_swish_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_tanh_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_tanh_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_tanh_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/dynamic_unary/convnd_fwd_xdl_dynamic_tanh_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/multi_AB/CMakeLists.txt b/projects/composablekernel/example/62_convnd_activ/multi_AB/CMakeLists.txt similarity index 100% rename from composable_kernel/example/62_convnd_activ/multi_AB/CMakeLists.txt rename to projects/composablekernel/example/62_convnd_activ/multi_AB/CMakeLists.txt diff --git a/composable_kernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_bf16.cpp b/projects/composablekernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_bf16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_bf16.cpp rename to projects/composablekernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_bf16.cpp diff --git a/composable_kernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_fp32.cpp b/projects/composablekernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_fp32.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_fp32.cpp rename to projects/composablekernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_fp32.cpp diff --git a/composable_kernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_int8.cpp b/projects/composablekernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_int8.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_int8.cpp rename to projects/composablekernel/example/62_convnd_activ/multi_AB/conv_fwd_xdl_scaleadd_ab_int8.cpp diff --git a/composable_kernel/example/62_convnd_activ/multi_AB/convnd_fwd_activ_multi_ab_common.hpp b/projects/composablekernel/example/62_convnd_activ/multi_AB/convnd_fwd_activ_multi_ab_common.hpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/multi_AB/convnd_fwd_activ_multi_ab_common.hpp rename to projects/composablekernel/example/62_convnd_activ/multi_AB/convnd_fwd_activ_multi_ab_common.hpp diff --git a/composable_kernel/example/62_convnd_activ/run_convnd_activ_dynamic_example.inc b/projects/composablekernel/example/62_convnd_activ/run_convnd_activ_dynamic_example.inc similarity index 100% rename from composable_kernel/example/62_convnd_activ/run_convnd_activ_dynamic_example.inc rename to projects/composablekernel/example/62_convnd_activ/run_convnd_activ_dynamic_example.inc diff --git a/composable_kernel/example/62_convnd_activ/run_convnd_activ_example.inc b/projects/composablekernel/example/62_convnd_activ/run_convnd_activ_example.inc similarity index 100% rename from composable_kernel/example/62_convnd_activ/run_convnd_activ_example.inc rename to projects/composablekernel/example/62_convnd_activ/run_convnd_activ_example.inc diff --git a/composable_kernel/example/62_convnd_activ/unary/CMakeLists.txt b/projects/composablekernel/example/62_convnd_activ/unary/CMakeLists.txt similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/CMakeLists.txt rename to projects/composablekernel/example/62_convnd_activ/unary/CMakeLists.txt diff --git a/composable_kernel/example/62_convnd_activ/unary/convnd_fwd_activ_unary_common.hpp b/projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_activ_unary_common.hpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/convnd_fwd_activ_unary_common.hpp rename to projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_activ_unary_common.hpp diff --git a/composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_abs_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_abs_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_abs_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_abs_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_clippedrelu_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_clippedrelu_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_clippedrelu_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_clippedrelu_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_elu_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_elu_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_elu_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_elu_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_leakyrelu_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_leakyrelu_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_leakyrelu_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_leakyrelu_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_logistic_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_logistic_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_logistic_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_logistic_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_passthrough_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_passthrough_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_passthrough_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_passthrough_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_pow_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_pow_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_pow_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_pow_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_relu_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_relu_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_relu_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_relu_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_sigmoid_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_sigmoid_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_sigmoid_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_sigmoid_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_softrelu_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_softrelu_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_softrelu_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_softrelu_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_swish_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_swish_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_swish_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_swish_fp16.cpp diff --git a/composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_tanh_fp16.cpp b/projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_tanh_fp16.cpp similarity index 100% rename from composable_kernel/example/62_convnd_activ/unary/convnd_fwd_xdl_tanh_fp16.cpp rename to projects/composablekernel/example/62_convnd_activ/unary/convnd_fwd_xdl_tanh_fp16.cpp diff --git a/composable_kernel/example/63_layernorm4d_fwd/CMakeLists.txt b/projects/composablekernel/example/63_layernorm4d_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/example/63_layernorm4d_fwd/CMakeLists.txt rename to projects/composablekernel/example/63_layernorm4d_fwd/CMakeLists.txt diff --git a/composable_kernel/example/63_layernorm4d_fwd/common.hpp b/projects/composablekernel/example/63_layernorm4d_fwd/common.hpp similarity index 100% rename from composable_kernel/example/63_layernorm4d_fwd/common.hpp rename to projects/composablekernel/example/63_layernorm4d_fwd/common.hpp diff --git a/composable_kernel/example/63_layernorm4d_fwd/layernorm4d_fwd_fp16.cpp b/projects/composablekernel/example/63_layernorm4d_fwd/layernorm4d_fwd_fp16.cpp similarity index 100% rename from composable_kernel/example/63_layernorm4d_fwd/layernorm4d_fwd_fp16.cpp rename to projects/composablekernel/example/63_layernorm4d_fwd/layernorm4d_fwd_fp16.cpp diff --git a/composable_kernel/example/63_layernorm4d_fwd/layernorm4d_fwd_splitk_fp16.cpp b/projects/composablekernel/example/63_layernorm4d_fwd/layernorm4d_fwd_splitk_fp16.cpp similarity index 100% rename from composable_kernel/example/63_layernorm4d_fwd/layernorm4d_fwd_splitk_fp16.cpp rename to projects/composablekernel/example/63_layernorm4d_fwd/layernorm4d_fwd_splitk_fp16.cpp diff --git a/composable_kernel/example/63_layernorm4d_fwd/run_layernorm4d_fwd_example.inc b/projects/composablekernel/example/63_layernorm4d_fwd/run_layernorm4d_fwd_example.inc similarity index 100% rename from composable_kernel/example/63_layernorm4d_fwd/run_layernorm4d_fwd_example.inc rename to projects/composablekernel/example/63_layernorm4d_fwd/run_layernorm4d_fwd_example.inc diff --git a/composable_kernel/example/64_fpAintB_gemm/CMakeLists.txt b/projects/composablekernel/example/64_fpAintB_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/64_fpAintB_gemm/CMakeLists.txt rename to projects/composablekernel/example/64_fpAintB_gemm/CMakeLists.txt diff --git a/composable_kernel/example/64_fpAintB_gemm/common.hpp b/projects/composablekernel/example/64_fpAintB_gemm/common.hpp similarity index 100% rename from composable_kernel/example/64_fpAintB_gemm/common.hpp rename to projects/composablekernel/example/64_fpAintB_gemm/common.hpp diff --git a/composable_kernel/example/64_fpAintB_gemm/fp16int8_gemm_wmma.cpp b/projects/composablekernel/example/64_fpAintB_gemm/fp16int8_gemm_wmma.cpp similarity index 100% rename from composable_kernel/example/64_fpAintB_gemm/fp16int8_gemm_wmma.cpp rename to projects/composablekernel/example/64_fpAintB_gemm/fp16int8_gemm_wmma.cpp diff --git a/composable_kernel/example/64_fpAintB_gemm/run_gemm_example.inc b/projects/composablekernel/example/64_fpAintB_gemm/run_gemm_example.inc similarity index 100% rename from composable_kernel/example/64_fpAintB_gemm/run_gemm_example.inc rename to projects/composablekernel/example/64_fpAintB_gemm/run_gemm_example.inc diff --git a/composable_kernel/example/65_gemm_multiply_multiply/CMakeLists.txt b/projects/composablekernel/example/65_gemm_multiply_multiply/CMakeLists.txt similarity index 100% rename from composable_kernel/example/65_gemm_multiply_multiply/CMakeLists.txt rename to projects/composablekernel/example/65_gemm_multiply_multiply/CMakeLists.txt diff --git a/composable_kernel/example/65_gemm_multiply_multiply/gemm_add_add_xdl_fp16.cpp b/projects/composablekernel/example/65_gemm_multiply_multiply/gemm_add_add_xdl_fp16.cpp similarity index 100% rename from composable_kernel/example/65_gemm_multiply_multiply/gemm_add_add_xdl_fp16.cpp rename to projects/composablekernel/example/65_gemm_multiply_multiply/gemm_add_add_xdl_fp16.cpp diff --git a/composable_kernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp16_bpreshuffle.cpp b/projects/composablekernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp16_bpreshuffle.cpp similarity index 100% rename from composable_kernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp16_bpreshuffle.cpp rename to projects/composablekernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp16_bpreshuffle.cpp diff --git a/composable_kernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp8.cpp b/projects/composablekernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp8.cpp similarity index 100% rename from composable_kernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp8.cpp rename to projects/composablekernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp8.cpp diff --git a/composable_kernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp8_ab_scale.cpp b/projects/composablekernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp8_ab_scale.cpp similarity index 100% rename from composable_kernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp8_ab_scale.cpp rename to projects/composablekernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp8_ab_scale.cpp diff --git a/composable_kernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp8_bpreshuffle.cpp b/projects/composablekernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp8_bpreshuffle.cpp similarity index 100% rename from composable_kernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp8_bpreshuffle.cpp rename to projects/composablekernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_fp8_bpreshuffle.cpp diff --git a/composable_kernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_int8.cpp b/projects/composablekernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_int8.cpp similarity index 100% rename from composable_kernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_int8.cpp rename to projects/composablekernel/example/65_gemm_multiply_multiply/gemm_multiply_multiply_xdl_int8.cpp diff --git a/composable_kernel/example/65_gemm_multiply_multiply/moe_gemm1_xdl_fp8.cpp b/projects/composablekernel/example/65_gemm_multiply_multiply/moe_gemm1_xdl_fp8.cpp similarity index 100% rename from composable_kernel/example/65_gemm_multiply_multiply/moe_gemm1_xdl_fp8.cpp rename to projects/composablekernel/example/65_gemm_multiply_multiply/moe_gemm1_xdl_fp8.cpp diff --git a/composable_kernel/example/65_gemm_multiply_multiply/moe_gemm1_xdl_pk_i4.cpp b/projects/composablekernel/example/65_gemm_multiply_multiply/moe_gemm1_xdl_pk_i4.cpp similarity index 100% rename from composable_kernel/example/65_gemm_multiply_multiply/moe_gemm1_xdl_pk_i4.cpp rename to projects/composablekernel/example/65_gemm_multiply_multiply/moe_gemm1_xdl_pk_i4.cpp diff --git a/composable_kernel/example/65_gemm_multiply_multiply/moe_gemm2_xdl_fp8.cpp b/projects/composablekernel/example/65_gemm_multiply_multiply/moe_gemm2_xdl_fp8.cpp similarity index 100% rename from composable_kernel/example/65_gemm_multiply_multiply/moe_gemm2_xdl_fp8.cpp rename to projects/composablekernel/example/65_gemm_multiply_multiply/moe_gemm2_xdl_fp8.cpp diff --git a/composable_kernel/example/65_gemm_multiply_multiply/moe_gemm2_xdl_pk_i4.cpp b/projects/composablekernel/example/65_gemm_multiply_multiply/moe_gemm2_xdl_pk_i4.cpp similarity index 100% rename from composable_kernel/example/65_gemm_multiply_multiply/moe_gemm2_xdl_pk_i4.cpp rename to projects/composablekernel/example/65_gemm_multiply_multiply/moe_gemm2_xdl_pk_i4.cpp diff --git a/composable_kernel/example/66_complex_contraction_bilinear/CMakeLists.txt b/projects/composablekernel/example/66_complex_contraction_bilinear/CMakeLists.txt similarity index 100% rename from composable_kernel/example/66_complex_contraction_bilinear/CMakeLists.txt rename to projects/composablekernel/example/66_complex_contraction_bilinear/CMakeLists.txt diff --git a/composable_kernel/example/66_complex_contraction_bilinear/README.md b/projects/composablekernel/example/66_complex_contraction_bilinear/README.md similarity index 100% rename from composable_kernel/example/66_complex_contraction_bilinear/README.md rename to projects/composablekernel/example/66_complex_contraction_bilinear/README.md diff --git a/composable_kernel/example/66_complex_contraction_bilinear/common_instances.hpp b/projects/composablekernel/example/66_complex_contraction_bilinear/common_instances.hpp similarity index 100% rename from composable_kernel/example/66_complex_contraction_bilinear/common_instances.hpp rename to projects/composablekernel/example/66_complex_contraction_bilinear/common_instances.hpp diff --git a/composable_kernel/example/66_complex_contraction_bilinear/complex_contraction_bilinear_xdl_fp32.cpp b/projects/composablekernel/example/66_complex_contraction_bilinear/complex_contraction_bilinear_xdl_fp32.cpp similarity index 100% rename from composable_kernel/example/66_complex_contraction_bilinear/complex_contraction_bilinear_xdl_fp32.cpp rename to projects/composablekernel/example/66_complex_contraction_bilinear/complex_contraction_bilinear_xdl_fp32.cpp diff --git a/composable_kernel/example/66_complex_contraction_bilinear/complex_contraction_bilinear_xdl_fp64.cpp b/projects/composablekernel/example/66_complex_contraction_bilinear/complex_contraction_bilinear_xdl_fp64.cpp similarity index 100% rename from composable_kernel/example/66_complex_contraction_bilinear/complex_contraction_bilinear_xdl_fp64.cpp rename to projects/composablekernel/example/66_complex_contraction_bilinear/complex_contraction_bilinear_xdl_fp64.cpp diff --git a/composable_kernel/example/66_complex_contraction_bilinear/run_complex_contraction_bilinear_example.inc b/projects/composablekernel/example/66_complex_contraction_bilinear/run_complex_contraction_bilinear_example.inc similarity index 100% rename from composable_kernel/example/66_complex_contraction_bilinear/run_complex_contraction_bilinear_example.inc rename to projects/composablekernel/example/66_complex_contraction_bilinear/run_complex_contraction_bilinear_example.inc diff --git a/composable_kernel/example/67_gemm_microscaling/CMakeLists.txt b/projects/composablekernel/example/67_gemm_microscaling/CMakeLists.txt similarity index 100% rename from composable_kernel/example/67_gemm_microscaling/CMakeLists.txt rename to projects/composablekernel/example/67_gemm_microscaling/CMakeLists.txt diff --git a/composable_kernel/example/67_gemm_microscaling/README.md b/projects/composablekernel/example/67_gemm_microscaling/README.md similarity index 100% rename from composable_kernel/example/67_gemm_microscaling/README.md rename to projects/composablekernel/example/67_gemm_microscaling/README.md diff --git a/composable_kernel/example/67_gemm_microscaling/gemm_mx_bf8.cpp b/projects/composablekernel/example/67_gemm_microscaling/gemm_mx_bf8.cpp similarity index 100% rename from composable_kernel/example/67_gemm_microscaling/gemm_mx_bf8.cpp rename to projects/composablekernel/example/67_gemm_microscaling/gemm_mx_bf8.cpp diff --git a/composable_kernel/example/67_gemm_microscaling/gemm_mx_common.hpp b/projects/composablekernel/example/67_gemm_microscaling/gemm_mx_common.hpp similarity index 100% rename from composable_kernel/example/67_gemm_microscaling/gemm_mx_common.hpp rename to projects/composablekernel/example/67_gemm_microscaling/gemm_mx_common.hpp diff --git a/composable_kernel/example/67_gemm_microscaling/gemm_mx_fp8.cpp b/projects/composablekernel/example/67_gemm_microscaling/gemm_mx_fp8.cpp similarity index 100% rename from composable_kernel/example/67_gemm_microscaling/gemm_mx_fp8.cpp rename to projects/composablekernel/example/67_gemm_microscaling/gemm_mx_fp8.cpp diff --git a/composable_kernel/example/CMakeLists.txt b/projects/composablekernel/example/CMakeLists.txt similarity index 100% rename from composable_kernel/example/CMakeLists.txt rename to projects/composablekernel/example/CMakeLists.txt diff --git a/composable_kernel/example/README.md b/projects/composablekernel/example/README.md similarity index 100% rename from composable_kernel/example/README.md rename to projects/composablekernel/example/README.md diff --git a/composable_kernel/example/ck_tile/01_fmha/CMakeLists.txt b/projects/composablekernel/example/ck_tile/01_fmha/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/01_fmha/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/01_fmha/README.md b/projects/composablekernel/example/ck_tile/01_fmha/README.md similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/README.md rename to projects/composablekernel/example/ck_tile/01_fmha/README.md diff --git a/composable_kernel/example/ck_tile/01_fmha/bias.hpp b/projects/composablekernel/example/ck_tile/01_fmha/bias.hpp similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/bias.hpp rename to projects/composablekernel/example/ck_tile/01_fmha/bias.hpp diff --git a/Tensile/Tensile/BuildCommands/__init__.py b/projects/composablekernel/example/ck_tile/01_fmha/codegen/__init__.py similarity index 100% rename from Tensile/Tensile/BuildCommands/__init__.py rename to projects/composablekernel/example/ck_tile/01_fmha/codegen/__init__.py diff --git a/composable_kernel/example/ck_tile/01_fmha/codegen/cmake_config.py b/projects/composablekernel/example/ck_tile/01_fmha/codegen/cmake_config.py similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/codegen/cmake_config.py rename to projects/composablekernel/example/ck_tile/01_fmha/codegen/cmake_config.py diff --git a/composable_kernel/example/ck_tile/01_fmha/codegen/cpp_symbol_map.py b/projects/composablekernel/example/ck_tile/01_fmha/codegen/cpp_symbol_map.py similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/codegen/cpp_symbol_map.py rename to projects/composablekernel/example/ck_tile/01_fmha/codegen/cpp_symbol_map.py diff --git a/Tensile/Tensile/Tests/__init__.py b/projects/composablekernel/example/ck_tile/01_fmha/codegen/ops/__init__.py similarity index 100% rename from Tensile/Tensile/Tests/__init__.py rename to projects/composablekernel/example/ck_tile/01_fmha/codegen/ops/__init__.py diff --git a/composable_kernel/example/ck_tile/01_fmha/codegen/ops/fmha_bwd.py b/projects/composablekernel/example/ck_tile/01_fmha/codegen/ops/fmha_bwd.py similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/codegen/ops/fmha_bwd.py rename to projects/composablekernel/example/ck_tile/01_fmha/codegen/ops/fmha_bwd.py diff --git a/composable_kernel/example/ck_tile/01_fmha/codegen/ops/fmha_fwd.py b/projects/composablekernel/example/ck_tile/01_fmha/codegen/ops/fmha_fwd.py similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/codegen/ops/fmha_fwd.py rename to projects/composablekernel/example/ck_tile/01_fmha/codegen/ops/fmha_fwd.py diff --git a/composable_kernel/example/ck_tile/01_fmha/codegen/ops/fmha_fwd_appendkv.py b/projects/composablekernel/example/ck_tile/01_fmha/codegen/ops/fmha_fwd_appendkv.py similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/codegen/ops/fmha_fwd_appendkv.py rename to projects/composablekernel/example/ck_tile/01_fmha/codegen/ops/fmha_fwd_appendkv.py diff --git a/composable_kernel/example/ck_tile/01_fmha/codegen/ops/fmha_fwd_splitkv.py b/projects/composablekernel/example/ck_tile/01_fmha/codegen/ops/fmha_fwd_splitkv.py similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/codegen/ops/fmha_fwd_splitkv.py rename to projects/composablekernel/example/ck_tile/01_fmha/codegen/ops/fmha_fwd_splitkv.py diff --git a/composable_kernel/example/ck_tile/01_fmha/fmha_bwd.cpp b/projects/composablekernel/example/ck_tile/01_fmha/fmha_bwd.cpp similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/fmha_bwd.cpp rename to projects/composablekernel/example/ck_tile/01_fmha/fmha_bwd.cpp diff --git a/composable_kernel/example/ck_tile/01_fmha/fmha_bwd.hpp b/projects/composablekernel/example/ck_tile/01_fmha/fmha_bwd.hpp similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/fmha_bwd.hpp rename to projects/composablekernel/example/ck_tile/01_fmha/fmha_bwd.hpp diff --git a/composable_kernel/example/ck_tile/01_fmha/fmha_fwd.cpp b/projects/composablekernel/example/ck_tile/01_fmha/fmha_fwd.cpp similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/fmha_fwd.cpp rename to projects/composablekernel/example/ck_tile/01_fmha/fmha_fwd.cpp diff --git a/composable_kernel/example/ck_tile/01_fmha/fmha_fwd.hpp b/projects/composablekernel/example/ck_tile/01_fmha/fmha_fwd.hpp similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/fmha_fwd.hpp rename to projects/composablekernel/example/ck_tile/01_fmha/fmha_fwd.hpp diff --git a/composable_kernel/example/ck_tile/01_fmha/generate.py b/projects/composablekernel/example/ck_tile/01_fmha/generate.py similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/generate.py rename to projects/composablekernel/example/ck_tile/01_fmha/generate.py diff --git a/composable_kernel/example/ck_tile/01_fmha/mask.hpp b/projects/composablekernel/example/ck_tile/01_fmha/mask.hpp similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/mask.hpp rename to projects/composablekernel/example/ck_tile/01_fmha/mask.hpp diff --git a/composable_kernel/example/ck_tile/01_fmha/misc/gamc.png b/projects/composablekernel/example/ck_tile/01_fmha/misc/gamc.png similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/misc/gamc.png rename to projects/composablekernel/example/ck_tile/01_fmha/misc/gamc.png diff --git a/composable_kernel/example/ck_tile/01_fmha/rotary.hpp b/projects/composablekernel/example/ck_tile/01_fmha/rotary.hpp similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/rotary.hpp rename to projects/composablekernel/example/ck_tile/01_fmha/rotary.hpp diff --git a/composable_kernel/example/ck_tile/01_fmha/script/benchmark_bwd.sh b/projects/composablekernel/example/ck_tile/01_fmha/script/benchmark_bwd.sh similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/script/benchmark_bwd.sh rename to projects/composablekernel/example/ck_tile/01_fmha/script/benchmark_bwd.sh diff --git a/composable_kernel/example/ck_tile/01_fmha/script/benchmark_fwd.sh b/projects/composablekernel/example/ck_tile/01_fmha/script/benchmark_fwd.sh similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/script/benchmark_fwd.sh rename to projects/composablekernel/example/ck_tile/01_fmha/script/benchmark_fwd.sh diff --git a/composable_kernel/example/ck_tile/01_fmha/script/run_full_test.sh b/projects/composablekernel/example/ck_tile/01_fmha/script/run_full_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/script/run_full_test.sh rename to projects/composablekernel/example/ck_tile/01_fmha/script/run_full_test.sh diff --git a/composable_kernel/example/ck_tile/01_fmha/script/smoke_test_bwd.sh b/projects/composablekernel/example/ck_tile/01_fmha/script/smoke_test_bwd.sh similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/script/smoke_test_bwd.sh rename to projects/composablekernel/example/ck_tile/01_fmha/script/smoke_test_bwd.sh diff --git a/composable_kernel/example/ck_tile/01_fmha/script/smoke_test_fwd.sh b/projects/composablekernel/example/ck_tile/01_fmha/script/smoke_test_fwd.sh similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/script/smoke_test_fwd.sh rename to projects/composablekernel/example/ck_tile/01_fmha/script/smoke_test_fwd.sh diff --git a/composable_kernel/example/ck_tile/01_fmha/utils.hpp b/projects/composablekernel/example/ck_tile/01_fmha/utils.hpp similarity index 100% rename from composable_kernel/example/ck_tile/01_fmha/utils.hpp rename to projects/composablekernel/example/ck_tile/01_fmha/utils.hpp diff --git a/composable_kernel/example/ck_tile/02_layernorm2d/CMakeLists.txt b/projects/composablekernel/example/ck_tile/02_layernorm2d/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/02_layernorm2d/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/02_layernorm2d/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/02_layernorm2d/README.md b/projects/composablekernel/example/ck_tile/02_layernorm2d/README.md similarity index 100% rename from composable_kernel/example/ck_tile/02_layernorm2d/README.md rename to projects/composablekernel/example/ck_tile/02_layernorm2d/README.md diff --git a/composable_kernel/example/ck_tile/02_layernorm2d/generate.py b/projects/composablekernel/example/ck_tile/02_layernorm2d/generate.py similarity index 100% rename from composable_kernel/example/ck_tile/02_layernorm2d/generate.py rename to projects/composablekernel/example/ck_tile/02_layernorm2d/generate.py diff --git a/composable_kernel/example/ck_tile/02_layernorm2d/layernorm2d_fwd.cpp b/projects/composablekernel/example/ck_tile/02_layernorm2d/layernorm2d_fwd.cpp similarity index 100% rename from composable_kernel/example/ck_tile/02_layernorm2d/layernorm2d_fwd.cpp rename to projects/composablekernel/example/ck_tile/02_layernorm2d/layernorm2d_fwd.cpp diff --git a/composable_kernel/example/ck_tile/02_layernorm2d/layernorm2d_fwd.hpp b/projects/composablekernel/example/ck_tile/02_layernorm2d/layernorm2d_fwd.hpp similarity index 100% rename from composable_kernel/example/ck_tile/02_layernorm2d/layernorm2d_fwd.hpp rename to projects/composablekernel/example/ck_tile/02_layernorm2d/layernorm2d_fwd.hpp diff --git a/composable_kernel/example/ck_tile/02_layernorm2d/misc/dquant.png b/projects/composablekernel/example/ck_tile/02_layernorm2d/misc/dquant.png similarity index 100% rename from composable_kernel/example/ck_tile/02_layernorm2d/misc/dquant.png rename to projects/composablekernel/example/ck_tile/02_layernorm2d/misc/dquant.png diff --git a/composable_kernel/example/ck_tile/02_layernorm2d/misc/pnorm.png b/projects/composablekernel/example/ck_tile/02_layernorm2d/misc/pnorm.png similarity index 100% rename from composable_kernel/example/ck_tile/02_layernorm2d/misc/pnorm.png rename to projects/composablekernel/example/ck_tile/02_layernorm2d/misc/pnorm.png diff --git a/composable_kernel/example/ck_tile/02_layernorm2d/script/perf_test.sh b/projects/composablekernel/example/ck_tile/02_layernorm2d/script/perf_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/02_layernorm2d/script/perf_test.sh rename to projects/composablekernel/example/ck_tile/02_layernorm2d/script/perf_test.sh diff --git a/composable_kernel/example/ck_tile/02_layernorm2d/script/smoke_test.sh b/projects/composablekernel/example/ck_tile/02_layernorm2d/script/smoke_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/02_layernorm2d/script/smoke_test.sh rename to projects/composablekernel/example/ck_tile/02_layernorm2d/script/smoke_test.sh diff --git a/composable_kernel/example/ck_tile/03_gemm/CMakeLists.txt b/projects/composablekernel/example/ck_tile/03_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/03_gemm/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/03_gemm/README.md b/projects/composablekernel/example/ck_tile/03_gemm/README.md similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/README.md rename to projects/composablekernel/example/ck_tile/03_gemm/README.md diff --git a/composable_kernel/example/ck_tile/03_gemm/gemm_basic.cpp b/projects/composablekernel/example/ck_tile/03_gemm/gemm_basic.cpp similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/gemm_basic.cpp rename to projects/composablekernel/example/ck_tile/03_gemm/gemm_basic.cpp diff --git a/composable_kernel/example/ck_tile/03_gemm/gemm_utils.hpp b/projects/composablekernel/example/ck_tile/03_gemm/gemm_utils.hpp similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/gemm_utils.hpp rename to projects/composablekernel/example/ck_tile/03_gemm/gemm_utils.hpp diff --git a/composable_kernel/example/ck_tile/03_gemm/run_gemm_example.inc b/projects/composablekernel/example/ck_tile/03_gemm/run_gemm_example.inc similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/run_gemm_example.inc rename to projects/composablekernel/example/ck_tile/03_gemm/run_gemm_example.inc diff --git a/composable_kernel/example/ck_tile/03_gemm/script/benchmark_basic_bf16.sh b/projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_basic_bf16.sh similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/script/benchmark_basic_bf16.sh rename to projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_basic_bf16.sh diff --git a/composable_kernel/example/ck_tile/03_gemm/script/benchmark_basic_bf8.sh b/projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_basic_bf8.sh similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/script/benchmark_basic_bf8.sh rename to projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_basic_bf8.sh diff --git a/composable_kernel/example/ck_tile/03_gemm/script/benchmark_basic_fp16.sh b/projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_basic_fp16.sh similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/script/benchmark_basic_fp16.sh rename to projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_basic_fp16.sh diff --git a/composable_kernel/example/ck_tile/03_gemm/script/benchmark_basic_fp8.sh b/projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_basic_fp8.sh similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/script/benchmark_basic_fp8.sh rename to projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_basic_fp8.sh diff --git a/composable_kernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_bf16.sh b/projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_bf16.sh similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_bf16.sh rename to projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_bf16.sh diff --git a/composable_kernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_bf8.sh b/projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_bf8.sh similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_bf8.sh rename to projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_bf8.sh diff --git a/composable_kernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_fp16.sh b/projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_fp16.sh similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_fp16.sh rename to projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_fp16.sh diff --git a/composable_kernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_fp8.sh b/projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_fp8.sh similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_fp8.sh rename to projects/composablekernel/example/ck_tile/03_gemm/script/benchmark_mem_pipeline_fp8.sh diff --git a/composable_kernel/example/ck_tile/03_gemm/script/run_full_test.sh b/projects/composablekernel/example/ck_tile/03_gemm/script/run_full_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/script/run_full_test.sh rename to projects/composablekernel/example/ck_tile/03_gemm/script/run_full_test.sh diff --git a/composable_kernel/example/ck_tile/03_gemm/script/smoke_test_basic.sh b/projects/composablekernel/example/ck_tile/03_gemm/script/smoke_test_basic.sh similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/script/smoke_test_basic.sh rename to projects/composablekernel/example/ck_tile/03_gemm/script/smoke_test_basic.sh diff --git a/composable_kernel/example/ck_tile/03_gemm/script/smoke_test_mem_pipeline.sh b/projects/composablekernel/example/ck_tile/03_gemm/script/smoke_test_mem_pipeline.sh similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/script/smoke_test_mem_pipeline.sh rename to projects/composablekernel/example/ck_tile/03_gemm/script/smoke_test_mem_pipeline.sh diff --git a/composable_kernel/example/ck_tile/03_gemm/stript.sh b/projects/composablekernel/example/ck_tile/03_gemm/stript.sh similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/stript.sh rename to projects/composablekernel/example/ck_tile/03_gemm/stript.sh diff --git a/composable_kernel/example/ck_tile/03_gemm/universal_gemm.cpp b/projects/composablekernel/example/ck_tile/03_gemm/universal_gemm.cpp similarity index 100% rename from composable_kernel/example/ck_tile/03_gemm/universal_gemm.cpp rename to projects/composablekernel/example/ck_tile/03_gemm/universal_gemm.cpp diff --git a/composable_kernel/example/ck_tile/04_img2col/CMakeLists.txt b/projects/composablekernel/example/ck_tile/04_img2col/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/04_img2col/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/04_img2col/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/04_img2col/README.md b/projects/composablekernel/example/ck_tile/04_img2col/README.md similarity index 100% rename from composable_kernel/example/ck_tile/04_img2col/README.md rename to projects/composablekernel/example/ck_tile/04_img2col/README.md diff --git a/composable_kernel/example/ck_tile/04_img2col/image_to_column.cpp b/projects/composablekernel/example/ck_tile/04_img2col/image_to_column.cpp similarity index 100% rename from composable_kernel/example/ck_tile/04_img2col/image_to_column.cpp rename to projects/composablekernel/example/ck_tile/04_img2col/image_to_column.cpp diff --git a/composable_kernel/example/ck_tile/04_img2col/image_to_column.hpp b/projects/composablekernel/example/ck_tile/04_img2col/image_to_column.hpp similarity index 100% rename from composable_kernel/example/ck_tile/04_img2col/image_to_column.hpp rename to projects/composablekernel/example/ck_tile/04_img2col/image_to_column.hpp diff --git a/composable_kernel/example/ck_tile/05_reduce/CMakeLists.txt b/projects/composablekernel/example/ck_tile/05_reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/05_reduce/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/05_reduce/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/05_reduce/reduce.cpp b/projects/composablekernel/example/ck_tile/05_reduce/reduce.cpp similarity index 100% rename from composable_kernel/example/ck_tile/05_reduce/reduce.cpp rename to projects/composablekernel/example/ck_tile/05_reduce/reduce.cpp diff --git a/composable_kernel/example/ck_tile/05_reduce/reduce.hpp b/projects/composablekernel/example/ck_tile/05_reduce/reduce.hpp similarity index 100% rename from composable_kernel/example/ck_tile/05_reduce/reduce.hpp rename to projects/composablekernel/example/ck_tile/05_reduce/reduce.hpp diff --git a/composable_kernel/example/ck_tile/06_permute/CMakeLists.txt b/projects/composablekernel/example/ck_tile/06_permute/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/06_permute/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/06_permute/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/06_permute/README.md b/projects/composablekernel/example/ck_tile/06_permute/README.md similarity index 100% rename from composable_kernel/example/ck_tile/06_permute/README.md rename to projects/composablekernel/example/ck_tile/06_permute/README.md diff --git a/composable_kernel/example/ck_tile/06_permute/alternative_impl/matrix_core_swizzle.cpp b/projects/composablekernel/example/ck_tile/06_permute/alternative_impl/matrix_core_swizzle.cpp similarity index 100% rename from composable_kernel/example/ck_tile/06_permute/alternative_impl/matrix_core_swizzle.cpp rename to projects/composablekernel/example/ck_tile/06_permute/alternative_impl/matrix_core_swizzle.cpp diff --git a/composable_kernel/example/ck_tile/06_permute/alternative_impl/matrix_core_swizzle.hpp b/projects/composablekernel/example/ck_tile/06_permute/alternative_impl/matrix_core_swizzle.hpp similarity index 100% rename from composable_kernel/example/ck_tile/06_permute/alternative_impl/matrix_core_swizzle.hpp rename to projects/composablekernel/example/ck_tile/06_permute/alternative_impl/matrix_core_swizzle.hpp diff --git a/composable_kernel/example/ck_tile/06_permute/alternative_impl/matrix_core_swizzle_kernel.hpp b/projects/composablekernel/example/ck_tile/06_permute/alternative_impl/matrix_core_swizzle_kernel.hpp similarity index 100% rename from composable_kernel/example/ck_tile/06_permute/alternative_impl/matrix_core_swizzle_kernel.hpp rename to projects/composablekernel/example/ck_tile/06_permute/alternative_impl/matrix_core_swizzle_kernel.hpp diff --git a/composable_kernel/example/ck_tile/06_permute/permute.cpp b/projects/composablekernel/example/ck_tile/06_permute/permute.cpp similarity index 100% rename from composable_kernel/example/ck_tile/06_permute/permute.cpp rename to projects/composablekernel/example/ck_tile/06_permute/permute.cpp diff --git a/composable_kernel/example/ck_tile/06_permute/permute.hpp b/projects/composablekernel/example/ck_tile/06_permute/permute.hpp similarity index 100% rename from composable_kernel/example/ck_tile/06_permute/permute.hpp rename to projects/composablekernel/example/ck_tile/06_permute/permute.hpp diff --git a/composable_kernel/example/ck_tile/06_permute/script/smoke_test.sh b/projects/composablekernel/example/ck_tile/06_permute/script/smoke_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/06_permute/script/smoke_test.sh rename to projects/composablekernel/example/ck_tile/06_permute/script/smoke_test.sh diff --git a/composable_kernel/example/ck_tile/09_topk_softmax/CMakeLists.txt b/projects/composablekernel/example/ck_tile/09_topk_softmax/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/09_topk_softmax/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/09_topk_softmax/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/09_topk_softmax/README.md b/projects/composablekernel/example/ck_tile/09_topk_softmax/README.md similarity index 100% rename from composable_kernel/example/ck_tile/09_topk_softmax/README.md rename to projects/composablekernel/example/ck_tile/09_topk_softmax/README.md diff --git a/composable_kernel/example/ck_tile/09_topk_softmax/script/smoke_test.sh b/projects/composablekernel/example/ck_tile/09_topk_softmax/script/smoke_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/09_topk_softmax/script/smoke_test.sh rename to projects/composablekernel/example/ck_tile/09_topk_softmax/script/smoke_test.sh diff --git a/composable_kernel/example/ck_tile/09_topk_softmax/topk_softmax.cpp b/projects/composablekernel/example/ck_tile/09_topk_softmax/topk_softmax.cpp similarity index 100% rename from composable_kernel/example/ck_tile/09_topk_softmax/topk_softmax.cpp rename to projects/composablekernel/example/ck_tile/09_topk_softmax/topk_softmax.cpp diff --git a/composable_kernel/example/ck_tile/09_topk_softmax/topk_softmax_api.cpp b/projects/composablekernel/example/ck_tile/09_topk_softmax/topk_softmax_api.cpp similarity index 100% rename from composable_kernel/example/ck_tile/09_topk_softmax/topk_softmax_api.cpp rename to projects/composablekernel/example/ck_tile/09_topk_softmax/topk_softmax_api.cpp diff --git a/composable_kernel/example/ck_tile/09_topk_softmax/topk_softmax_api.hpp b/projects/composablekernel/example/ck_tile/09_topk_softmax/topk_softmax_api.hpp similarity index 100% rename from composable_kernel/example/ck_tile/09_topk_softmax/topk_softmax_api.hpp rename to projects/composablekernel/example/ck_tile/09_topk_softmax/topk_softmax_api.hpp diff --git a/composable_kernel/example/ck_tile/10_rmsnorm2d/CMakeLists.txt b/projects/composablekernel/example/ck_tile/10_rmsnorm2d/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/10_rmsnorm2d/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/10_rmsnorm2d/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/10_rmsnorm2d/README.md b/projects/composablekernel/example/ck_tile/10_rmsnorm2d/README.md similarity index 100% rename from composable_kernel/example/ck_tile/10_rmsnorm2d/README.md rename to projects/composablekernel/example/ck_tile/10_rmsnorm2d/README.md diff --git a/composable_kernel/example/ck_tile/10_rmsnorm2d/example_rmsnorm2d_fwd.cpp b/projects/composablekernel/example/ck_tile/10_rmsnorm2d/example_rmsnorm2d_fwd.cpp similarity index 100% rename from composable_kernel/example/ck_tile/10_rmsnorm2d/example_rmsnorm2d_fwd.cpp rename to projects/composablekernel/example/ck_tile/10_rmsnorm2d/example_rmsnorm2d_fwd.cpp diff --git a/composable_kernel/example/ck_tile/10_rmsnorm2d/generate.py b/projects/composablekernel/example/ck_tile/10_rmsnorm2d/generate.py similarity index 100% rename from composable_kernel/example/ck_tile/10_rmsnorm2d/generate.py rename to projects/composablekernel/example/ck_tile/10_rmsnorm2d/generate.py diff --git a/composable_kernel/example/ck_tile/10_rmsnorm2d/rmsnorm2d_fwd.cpp b/projects/composablekernel/example/ck_tile/10_rmsnorm2d/rmsnorm2d_fwd.cpp similarity index 100% rename from composable_kernel/example/ck_tile/10_rmsnorm2d/rmsnorm2d_fwd.cpp rename to projects/composablekernel/example/ck_tile/10_rmsnorm2d/rmsnorm2d_fwd.cpp diff --git a/composable_kernel/example/ck_tile/10_rmsnorm2d/rmsnorm2d_fwd.hpp b/projects/composablekernel/example/ck_tile/10_rmsnorm2d/rmsnorm2d_fwd.hpp similarity index 100% rename from composable_kernel/example/ck_tile/10_rmsnorm2d/rmsnorm2d_fwd.hpp rename to projects/composablekernel/example/ck_tile/10_rmsnorm2d/rmsnorm2d_fwd.hpp diff --git a/composable_kernel/example/ck_tile/10_rmsnorm2d/script/perf_test.sh b/projects/composablekernel/example/ck_tile/10_rmsnorm2d/script/perf_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/10_rmsnorm2d/script/perf_test.sh rename to projects/composablekernel/example/ck_tile/10_rmsnorm2d/script/perf_test.sh diff --git a/composable_kernel/example/ck_tile/10_rmsnorm2d/script/smoke_test.sh b/projects/composablekernel/example/ck_tile/10_rmsnorm2d/script/smoke_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/10_rmsnorm2d/script/smoke_test.sh rename to projects/composablekernel/example/ck_tile/10_rmsnorm2d/script/smoke_test.sh diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/CMakeLists.txt b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/README.md b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/README.md similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/README.md rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/README.md diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/add_rmsnorm2d_rdquant_fwd.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/add_rmsnorm2d_rdquant_fwd.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/add_rmsnorm2d_rdquant_fwd.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/add_rmsnorm2d_rdquant_fwd.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/add_rmsnorm2d_rdquant_fwd.hpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/add_rmsnorm2d_rdquant_fwd.hpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/add_rmsnorm2d_rdquant_fwd.hpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/add_rmsnorm2d_rdquant_fwd.hpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/example_add_rmsnorm2d_rdquant_fwd.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/example_add_rmsnorm2d_rdquant_fwd.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/example_add_rmsnorm2d_rdquant_fwd.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/example_add_rmsnorm2d_rdquant_fwd.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_api.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_api.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_api.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_api.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n1024_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n1024_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n1024_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n1024_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n1536_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n1536_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n1536_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n1536_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n2048_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n2048_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n2048_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n2048_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n256_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n256_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n256_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n256_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n3072_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n3072_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n3072_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n3072_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n4096_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n4096_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n4096_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n4096_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n512_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n512_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n512_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n512_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n64_n128_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n64_n128_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n64_n128_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n64_n128_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n768_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n768_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n768_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n768_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n8192_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n8192_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n8192_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n8192_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n8192_tp_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n8192_tp_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n8192_tp_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_bf16_n8192_tp_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n1024_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n1024_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n1024_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n1024_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n1536_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n1536_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n1536_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n1536_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n2048_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n2048_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n2048_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n2048_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n256_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n256_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n256_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n256_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n3072_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n3072_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n3072_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n3072_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n4096_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n4096_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n4096_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n4096_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n512_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n512_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n512_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n512_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n64_n128_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n64_n128_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n64_n128_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n64_n128_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n768_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n768_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n768_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n768_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n8192_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n8192_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n8192_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n8192_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n8192_tp_instance.cpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n8192_tp_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n8192_tp_instance.cpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_fp16_n8192_tp_instance.cpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_instance_common.hpp b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_instance_common.hpp similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_instance_common.hpp rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/instances/add_rmsnorm2d_rdquant_fwd_instance_common.hpp diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/script/perf_test.sh b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/script/perf_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/script/perf_test.sh rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/script/perf_test.sh diff --git a/composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/script/smoke_test.sh b/projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/script/smoke_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/11_add_rmsnorm2d_rdquant/script/smoke_test.sh rename to projects/composablekernel/example/ck_tile/11_add_rmsnorm2d_rdquant/script/smoke_test.sh diff --git a/composable_kernel/example/ck_tile/12_smoothquant/CMakeLists.txt b/projects/composablekernel/example/ck_tile/12_smoothquant/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/12_smoothquant/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/12_smoothquant/README.md b/projects/composablekernel/example/ck_tile/12_smoothquant/README.md similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/README.md rename to projects/composablekernel/example/ck_tile/12_smoothquant/README.md diff --git a/composable_kernel/example/ck_tile/12_smoothquant/example_smoothquant.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/example_smoothquant.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/example_smoothquant.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/example_smoothquant.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n1024_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n1024_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n1024_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n1024_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n1536_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n1536_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n1536_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n1536_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n2048_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n2048_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n2048_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n2048_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n256_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n256_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n256_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n256_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n3072_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n3072_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n3072_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n3072_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n4096_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n4096_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n4096_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n4096_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n4096_tp_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n4096_tp_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n4096_tp_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n4096_tp_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n512_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n512_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n512_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n512_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n64_n128_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n64_n128_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n64_n128_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n64_n128_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n768_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n768_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n768_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_bf16_n768_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n1024_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n1024_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n1024_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n1024_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n1536_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n1536_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n1536_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n1536_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n2048_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n2048_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n2048_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n2048_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n256_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n256_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n256_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n256_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n3072_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n3072_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n3072_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n3072_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n4096_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n4096_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n4096_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n4096_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n4096_tp_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n4096_tp_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n4096_tp_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n4096_tp_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n512_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n512_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n512_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n512_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n64_n128_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n64_n128_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n64_n128_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n64_n128_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n768_instance.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n768_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n768_instance.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fp16_n768_instance.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fwd_api.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fwd_api.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_fwd_api.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_fwd_api.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_instance_common.hpp b/projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_instance_common.hpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/instances/smoothquant_instance_common.hpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/instances/smoothquant_instance_common.hpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/script/perf_test.sh b/projects/composablekernel/example/ck_tile/12_smoothquant/script/perf_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/script/perf_test.sh rename to projects/composablekernel/example/ck_tile/12_smoothquant/script/perf_test.sh diff --git a/composable_kernel/example/ck_tile/12_smoothquant/script/smoke_test.sh b/projects/composablekernel/example/ck_tile/12_smoothquant/script/smoke_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/script/smoke_test.sh rename to projects/composablekernel/example/ck_tile/12_smoothquant/script/smoke_test.sh diff --git a/composable_kernel/example/ck_tile/12_smoothquant/smoothquant.cpp b/projects/composablekernel/example/ck_tile/12_smoothquant/smoothquant.cpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/smoothquant.cpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/smoothquant.cpp diff --git a/composable_kernel/example/ck_tile/12_smoothquant/smoothquant.hpp b/projects/composablekernel/example/ck_tile/12_smoothquant/smoothquant.hpp similarity index 100% rename from composable_kernel/example/ck_tile/12_smoothquant/smoothquant.hpp rename to projects/composablekernel/example/ck_tile/12_smoothquant/smoothquant.hpp diff --git a/composable_kernel/example/ck_tile/13_moe_sorting/CMakeLists.txt b/projects/composablekernel/example/ck_tile/13_moe_sorting/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/13_moe_sorting/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/13_moe_sorting/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/13_moe_sorting/README.md b/projects/composablekernel/example/ck_tile/13_moe_sorting/README.md similarity index 100% rename from composable_kernel/example/ck_tile/13_moe_sorting/README.md rename to projects/composablekernel/example/ck_tile/13_moe_sorting/README.md diff --git a/composable_kernel/example/ck_tile/13_moe_sorting/moe_sorting.cpp b/projects/composablekernel/example/ck_tile/13_moe_sorting/moe_sorting.cpp similarity index 100% rename from composable_kernel/example/ck_tile/13_moe_sorting/moe_sorting.cpp rename to projects/composablekernel/example/ck_tile/13_moe_sorting/moe_sorting.cpp diff --git a/composable_kernel/example/ck_tile/13_moe_sorting/moe_sorting_api.cpp b/projects/composablekernel/example/ck_tile/13_moe_sorting/moe_sorting_api.cpp similarity index 100% rename from composable_kernel/example/ck_tile/13_moe_sorting/moe_sorting_api.cpp rename to projects/composablekernel/example/ck_tile/13_moe_sorting/moe_sorting_api.cpp diff --git a/composable_kernel/example/ck_tile/13_moe_sorting/moe_sorting_api.hpp b/projects/composablekernel/example/ck_tile/13_moe_sorting/moe_sorting_api.hpp similarity index 100% rename from composable_kernel/example/ck_tile/13_moe_sorting/moe_sorting_api.hpp rename to projects/composablekernel/example/ck_tile/13_moe_sorting/moe_sorting_api.hpp diff --git a/composable_kernel/example/ck_tile/13_moe_sorting/script/smoke_test.sh b/projects/composablekernel/example/ck_tile/13_moe_sorting/script/smoke_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/13_moe_sorting/script/smoke_test.sh rename to projects/composablekernel/example/ck_tile/13_moe_sorting/script/smoke_test.sh diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/CMakeLists.txt b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/README.md b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/README.md similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/README.md rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/README.md diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n1024_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n1024_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n1024_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n1024_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n1536_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n1536_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n1536_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n1536_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n2048_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n2048_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n2048_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n2048_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n256_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n256_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n256_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n256_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n3072_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n3072_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n3072_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n3072_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n4096_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n4096_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n4096_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n4096_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n4096_tp_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n4096_tp_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n4096_tp_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n4096_tp_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n512_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n512_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n512_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n512_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n64_n128_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n64_n128_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n64_n128_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n64_n128_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n768_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n768_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n768_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_bf16_n768_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n1024_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n1024_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n1024_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n1024_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n1536_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n1536_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n1536_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n1536_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n2048_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n2048_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n2048_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n2048_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n256_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n256_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n256_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n256_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n3072_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n3072_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n3072_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n3072_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n4096_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n4096_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n4096_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n4096_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n4096_tp_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n4096_tp_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n4096_tp_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n4096_tp_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n512_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n512_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n512_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n512_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n64_n128_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n64_n128_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n64_n128_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n64_n128_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n768_instance.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n768_instance.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n768_instance.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fp16_n768_instance.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fwd_api.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fwd_api.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fwd_api.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_fwd_api.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_instance_common.hpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_instance_common.hpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_instance_common.hpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/instances/moe_smoothquant_instance_common.hpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/misc/moe-sm.png b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/misc/moe-sm.png similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/misc/moe-sm.png rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/misc/moe-sm.png diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/moe_smoothquant.cpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/moe_smoothquant.cpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/moe_smoothquant.cpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/moe_smoothquant.cpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/moe_smoothquant.hpp b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/moe_smoothquant.hpp similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/moe_smoothquant.hpp rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/moe_smoothquant.hpp diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/script/perf_test.sh b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/script/perf_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/script/perf_test.sh rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/script/perf_test.sh diff --git a/composable_kernel/example/ck_tile/14_moe_smoothquant/script/smoke_test.sh b/projects/composablekernel/example/ck_tile/14_moe_smoothquant/script/smoke_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/14_moe_smoothquant/script/smoke_test.sh rename to projects/composablekernel/example/ck_tile/14_moe_smoothquant/script/smoke_test.sh diff --git a/composable_kernel/example/ck_tile/15_fused_moe/CMakeLists.txt b/projects/composablekernel/example/ck_tile/15_fused_moe/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/15_fused_moe/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/15_fused_moe/README.md b/projects/composablekernel/example/ck_tile/15_fused_moe/README.md similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/README.md rename to projects/composablekernel/example/ck_tile/15_fused_moe/README.md diff --git a/composable_kernel/example/ck_tile/15_fused_moe/fused_moe.hpp b/projects/composablekernel/example/ck_tile/15_fused_moe/fused_moe.hpp similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/fused_moe.hpp rename to projects/composablekernel/example/ck_tile/15_fused_moe/fused_moe.hpp diff --git a/composable_kernel/example/ck_tile/15_fused_moe/fused_moegemm.hpp b/projects/composablekernel/example/ck_tile/15_fused_moe/fused_moegemm.hpp similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/fused_moegemm.hpp rename to projects/composablekernel/example/ck_tile/15_fused_moe/fused_moegemm.hpp diff --git a/composable_kernel/example/ck_tile/15_fused_moe/fused_moesorting.hpp b/projects/composablekernel/example/ck_tile/15_fused_moe/fused_moesorting.hpp similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/fused_moesorting.hpp rename to projects/composablekernel/example/ck_tile/15_fused_moe/fused_moesorting.hpp diff --git a/composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moe_api.cpp b/projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moe_api.cpp similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moe_api.cpp rename to projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moe_api.cpp diff --git a/composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_api.cpp b/projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_api.cpp similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_api.cpp rename to projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_api.cpp diff --git a/composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_api_internal.hpp b/projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_api_internal.hpp similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_api_internal.hpp rename to projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_api_internal.hpp diff --git a/composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_api_traits.hpp b/projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_api_traits.hpp similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_api_traits.hpp rename to projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_api_traits.hpp diff --git a/composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_bf16_m32.cpp b/projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_bf16_m32.cpp similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_bf16_m32.cpp rename to projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_bf16_m32.cpp diff --git a/composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_fp16_m32.cpp b/projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_fp16_m32.cpp similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_fp16_m32.cpp rename to projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moegemm_fp16_m32.cpp diff --git a/composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moesorting_api.cpp b/projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moesorting_api.cpp similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/instances/fused_moesorting_api.cpp rename to projects/composablekernel/example/ck_tile/15_fused_moe/instances/fused_moesorting_api.cpp diff --git a/composable_kernel/example/ck_tile/15_fused_moe/main.cpp b/projects/composablekernel/example/ck_tile/15_fused_moe/main.cpp similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/main.cpp rename to projects/composablekernel/example/ck_tile/15_fused_moe/main.cpp diff --git a/composable_kernel/example/ck_tile/15_fused_moe/misc/moe-0.png b/projects/composablekernel/example/ck_tile/15_fused_moe/misc/moe-0.png similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/misc/moe-0.png rename to projects/composablekernel/example/ck_tile/15_fused_moe/misc/moe-0.png diff --git a/composable_kernel/example/ck_tile/15_fused_moe/misc/moe-1.png b/projects/composablekernel/example/ck_tile/15_fused_moe/misc/moe-1.png similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/misc/moe-1.png rename to projects/composablekernel/example/ck_tile/15_fused_moe/misc/moe-1.png diff --git a/composable_kernel/example/ck_tile/15_fused_moe/misc/moe-2.png b/projects/composablekernel/example/ck_tile/15_fused_moe/misc/moe-2.png similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/misc/moe-2.png rename to projects/composablekernel/example/ck_tile/15_fused_moe/misc/moe-2.png diff --git a/composable_kernel/example/ck_tile/15_fused_moe/misc/moe-3.png b/projects/composablekernel/example/ck_tile/15_fused_moe/misc/moe-3.png similarity index 100% rename from composable_kernel/example/ck_tile/15_fused_moe/misc/moe-3.png rename to projects/composablekernel/example/ck_tile/15_fused_moe/misc/moe-3.png diff --git a/composable_kernel/example/ck_tile/16_batched_gemm/CMakeLists.txt b/projects/composablekernel/example/ck_tile/16_batched_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/16_batched_gemm/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/16_batched_gemm/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/16_batched_gemm/README.md b/projects/composablekernel/example/ck_tile/16_batched_gemm/README.md similarity index 100% rename from composable_kernel/example/ck_tile/16_batched_gemm/README.md rename to projects/composablekernel/example/ck_tile/16_batched_gemm/README.md diff --git a/composable_kernel/example/ck_tile/16_batched_gemm/batched_gemm.cpp b/projects/composablekernel/example/ck_tile/16_batched_gemm/batched_gemm.cpp similarity index 100% rename from composable_kernel/example/ck_tile/16_batched_gemm/batched_gemm.cpp rename to projects/composablekernel/example/ck_tile/16_batched_gemm/batched_gemm.cpp diff --git a/composable_kernel/example/ck_tile/16_batched_gemm/batched_gemm.hpp b/projects/composablekernel/example/ck_tile/16_batched_gemm/batched_gemm.hpp similarity index 100% rename from composable_kernel/example/ck_tile/16_batched_gemm/batched_gemm.hpp rename to projects/composablekernel/example/ck_tile/16_batched_gemm/batched_gemm.hpp diff --git a/composable_kernel/example/ck_tile/16_batched_gemm/run_batched_gemm_example.inc b/projects/composablekernel/example/ck_tile/16_batched_gemm/run_batched_gemm_example.inc similarity index 100% rename from composable_kernel/example/ck_tile/16_batched_gemm/run_batched_gemm_example.inc rename to projects/composablekernel/example/ck_tile/16_batched_gemm/run_batched_gemm_example.inc diff --git a/composable_kernel/example/ck_tile/17_grouped_gemm/CMakeLists.txt b/projects/composablekernel/example/ck_tile/17_grouped_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/17_grouped_gemm/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/17_grouped_gemm/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/17_grouped_gemm/README.md b/projects/composablekernel/example/ck_tile/17_grouped_gemm/README.md similarity index 100% rename from composable_kernel/example/ck_tile/17_grouped_gemm/README.md rename to projects/composablekernel/example/ck_tile/17_grouped_gemm/README.md diff --git a/composable_kernel/example/ck_tile/17_grouped_gemm/grouped_gemm.cpp b/projects/composablekernel/example/ck_tile/17_grouped_gemm/grouped_gemm.cpp similarity index 100% rename from composable_kernel/example/ck_tile/17_grouped_gemm/grouped_gemm.cpp rename to projects/composablekernel/example/ck_tile/17_grouped_gemm/grouped_gemm.cpp diff --git a/composable_kernel/example/ck_tile/17_grouped_gemm/grouped_gemm.hpp b/projects/composablekernel/example/ck_tile/17_grouped_gemm/grouped_gemm.hpp similarity index 100% rename from composable_kernel/example/ck_tile/17_grouped_gemm/grouped_gemm.hpp rename to projects/composablekernel/example/ck_tile/17_grouped_gemm/grouped_gemm.hpp diff --git a/composable_kernel/example/ck_tile/17_grouped_gemm/run_grouped_gemm_example.inc b/projects/composablekernel/example/ck_tile/17_grouped_gemm/run_grouped_gemm_example.inc similarity index 100% rename from composable_kernel/example/ck_tile/17_grouped_gemm/run_grouped_gemm_example.inc rename to projects/composablekernel/example/ck_tile/17_grouped_gemm/run_grouped_gemm_example.inc diff --git a/composable_kernel/example/ck_tile/18_flatmm/CMakeLists.txt b/projects/composablekernel/example/ck_tile/18_flatmm/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/18_flatmm/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/18_flatmm/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/18_flatmm/README.md b/projects/composablekernel/example/ck_tile/18_flatmm/README.md similarity index 100% rename from composable_kernel/example/ck_tile/18_flatmm/README.md rename to projects/composablekernel/example/ck_tile/18_flatmm/README.md diff --git a/composable_kernel/example/ck_tile/18_flatmm/flatmm_basic.cpp b/projects/composablekernel/example/ck_tile/18_flatmm/flatmm_basic.cpp similarity index 100% rename from composable_kernel/example/ck_tile/18_flatmm/flatmm_basic.cpp rename to projects/composablekernel/example/ck_tile/18_flatmm/flatmm_basic.cpp diff --git a/composable_kernel/example/ck_tile/18_flatmm/flatmm_basic.hpp b/projects/composablekernel/example/ck_tile/18_flatmm/flatmm_basic.hpp similarity index 100% rename from composable_kernel/example/ck_tile/18_flatmm/flatmm_basic.hpp rename to projects/composablekernel/example/ck_tile/18_flatmm/flatmm_basic.hpp diff --git a/composable_kernel/example/ck_tile/18_flatmm/run_flatmm_example.inc b/projects/composablekernel/example/ck_tile/18_flatmm/run_flatmm_example.inc similarity index 100% rename from composable_kernel/example/ck_tile/18_flatmm/run_flatmm_example.inc rename to projects/composablekernel/example/ck_tile/18_flatmm/run_flatmm_example.inc diff --git a/composable_kernel/example/ck_tile/18_flatmm/script/smoke_test_basic.sh b/projects/composablekernel/example/ck_tile/18_flatmm/script/smoke_test_basic.sh similarity index 100% rename from composable_kernel/example/ck_tile/18_flatmm/script/smoke_test_basic.sh rename to projects/composablekernel/example/ck_tile/18_flatmm/script/smoke_test_basic.sh diff --git a/composable_kernel/example/ck_tile/35_batched_transpose/CMakeLists.txt b/projects/composablekernel/example/ck_tile/35_batched_transpose/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/35_batched_transpose/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/35_batched_transpose/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/35_batched_transpose/README.md b/projects/composablekernel/example/ck_tile/35_batched_transpose/README.md similarity index 100% rename from composable_kernel/example/ck_tile/35_batched_transpose/README.md rename to projects/composablekernel/example/ck_tile/35_batched_transpose/README.md diff --git a/composable_kernel/example/ck_tile/35_batched_transpose/batched_transpose_api.cpp b/projects/composablekernel/example/ck_tile/35_batched_transpose/batched_transpose_api.cpp similarity index 100% rename from composable_kernel/example/ck_tile/35_batched_transpose/batched_transpose_api.cpp rename to projects/composablekernel/example/ck_tile/35_batched_transpose/batched_transpose_api.cpp diff --git a/composable_kernel/example/ck_tile/35_batched_transpose/batched_transpose_example.cpp b/projects/composablekernel/example/ck_tile/35_batched_transpose/batched_transpose_example.cpp similarity index 100% rename from composable_kernel/example/ck_tile/35_batched_transpose/batched_transpose_example.cpp rename to projects/composablekernel/example/ck_tile/35_batched_transpose/batched_transpose_example.cpp diff --git a/composable_kernel/example/ck_tile/35_batched_transpose/batched_transpose_example.hpp b/projects/composablekernel/example/ck_tile/35_batched_transpose/batched_transpose_example.hpp similarity index 100% rename from composable_kernel/example/ck_tile/35_batched_transpose/batched_transpose_example.hpp rename to projects/composablekernel/example/ck_tile/35_batched_transpose/batched_transpose_example.hpp diff --git a/composable_kernel/example/ck_tile/35_batched_transpose/script/smoke_test.sh b/projects/composablekernel/example/ck_tile/35_batched_transpose/script/smoke_test.sh similarity index 100% rename from composable_kernel/example/ck_tile/35_batched_transpose/script/smoke_test.sh rename to projects/composablekernel/example/ck_tile/35_batched_transpose/script/smoke_test.sh diff --git a/composable_kernel/example/ck_tile/CMakeLists.txt b/projects/composablekernel/example/ck_tile/CMakeLists.txt similarity index 100% rename from composable_kernel/example/ck_tile/CMakeLists.txt rename to projects/composablekernel/example/ck_tile/CMakeLists.txt diff --git a/composable_kernel/example/ck_tile/remod.py b/projects/composablekernel/example/ck_tile/remod.py similarity index 100% rename from composable_kernel/example/ck_tile/remod.py rename to projects/composablekernel/example/ck_tile/remod.py diff --git a/composable_kernel/include/ck/README.md b/projects/composablekernel/include/ck/README.md similarity index 100% rename from composable_kernel/include/ck/README.md rename to projects/composablekernel/include/ck/README.md diff --git a/composable_kernel/include/ck/ck.hpp b/projects/composablekernel/include/ck/ck.hpp similarity index 100% rename from composable_kernel/include/ck/ck.hpp rename to projects/composablekernel/include/ck/ck.hpp diff --git a/composable_kernel/include/ck/config.h.in b/projects/composablekernel/include/ck/config.h.in similarity index 100% rename from composable_kernel/include/ck/config.h.in rename to projects/composablekernel/include/ck/config.h.in diff --git a/composable_kernel/include/ck/filesystem.hpp b/projects/composablekernel/include/ck/filesystem.hpp similarity index 100% rename from composable_kernel/include/ck/filesystem.hpp rename to projects/composablekernel/include/ck/filesystem.hpp diff --git a/composable_kernel/include/ck/host_utility/device_prop.hpp b/projects/composablekernel/include/ck/host_utility/device_prop.hpp similarity index 100% rename from composable_kernel/include/ck/host_utility/device_prop.hpp rename to projects/composablekernel/include/ck/host_utility/device_prop.hpp diff --git a/composable_kernel/include/ck/host_utility/flush_cache.hpp b/projects/composablekernel/include/ck/host_utility/flush_cache.hpp similarity index 100% rename from composable_kernel/include/ck/host_utility/flush_cache.hpp rename to projects/composablekernel/include/ck/host_utility/flush_cache.hpp diff --git a/composable_kernel/include/ck/host_utility/hip_check_error.hpp b/projects/composablekernel/include/ck/host_utility/hip_check_error.hpp similarity index 100% rename from composable_kernel/include/ck/host_utility/hip_check_error.hpp rename to projects/composablekernel/include/ck/host_utility/hip_check_error.hpp diff --git a/composable_kernel/include/ck/host_utility/io.hpp b/projects/composablekernel/include/ck/host_utility/io.hpp similarity index 100% rename from composable_kernel/include/ck/host_utility/io.hpp rename to projects/composablekernel/include/ck/host_utility/io.hpp diff --git a/composable_kernel/include/ck/host_utility/kernel_launch.hpp b/projects/composablekernel/include/ck/host_utility/kernel_launch.hpp similarity index 100% rename from composable_kernel/include/ck/host_utility/kernel_launch.hpp rename to projects/composablekernel/include/ck/host_utility/kernel_launch.hpp diff --git a/composable_kernel/include/ck/host_utility/stream_utility.hpp b/projects/composablekernel/include/ck/host_utility/stream_utility.hpp similarity index 100% rename from composable_kernel/include/ck/host_utility/stream_utility.hpp rename to projects/composablekernel/include/ck/host_utility/stream_utility.hpp diff --git a/composable_kernel/include/ck/library/utility/algorithm.hpp b/projects/composablekernel/include/ck/library/utility/algorithm.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/algorithm.hpp rename to projects/composablekernel/include/ck/library/utility/algorithm.hpp diff --git a/composable_kernel/include/ck/library/utility/check_err.hpp b/projects/composablekernel/include/ck/library/utility/check_err.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/check_err.hpp rename to projects/composablekernel/include/ck/library/utility/check_err.hpp diff --git a/composable_kernel/include/ck/library/utility/conv_common.hpp b/projects/composablekernel/include/ck/library/utility/conv_common.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/conv_common.hpp rename to projects/composablekernel/include/ck/library/utility/conv_common.hpp diff --git a/composable_kernel/include/ck/library/utility/convolution_host_tensor_descriptor_helper.hpp b/projects/composablekernel/include/ck/library/utility/convolution_host_tensor_descriptor_helper.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/convolution_host_tensor_descriptor_helper.hpp rename to projects/composablekernel/include/ck/library/utility/convolution_host_tensor_descriptor_helper.hpp diff --git a/composable_kernel/include/ck/library/utility/convolution_parameter.hpp b/projects/composablekernel/include/ck/library/utility/convolution_parameter.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/convolution_parameter.hpp rename to projects/composablekernel/include/ck/library/utility/convolution_parameter.hpp diff --git a/composable_kernel/include/ck/library/utility/device_memory.hpp b/projects/composablekernel/include/ck/library/utility/device_memory.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/device_memory.hpp rename to projects/composablekernel/include/ck/library/utility/device_memory.hpp diff --git a/composable_kernel/include/ck/library/utility/fill.hpp b/projects/composablekernel/include/ck/library/utility/fill.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/fill.hpp rename to projects/composablekernel/include/ck/library/utility/fill.hpp diff --git a/composable_kernel/include/ck/library/utility/host_common_util.hpp b/projects/composablekernel/include/ck/library/utility/host_common_util.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/host_common_util.hpp rename to projects/composablekernel/include/ck/library/utility/host_common_util.hpp diff --git a/composable_kernel/include/ck/library/utility/host_gemm.hpp b/projects/composablekernel/include/ck/library/utility/host_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/host_gemm.hpp rename to projects/composablekernel/include/ck/library/utility/host_gemm.hpp diff --git a/composable_kernel/include/ck/library/utility/host_tensor.hpp b/projects/composablekernel/include/ck/library/utility/host_tensor.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/host_tensor.hpp rename to projects/composablekernel/include/ck/library/utility/host_tensor.hpp diff --git a/composable_kernel/include/ck/library/utility/host_tensor_generator.hpp b/projects/composablekernel/include/ck/library/utility/host_tensor_generator.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/host_tensor_generator.hpp rename to projects/composablekernel/include/ck/library/utility/host_tensor_generator.hpp diff --git a/composable_kernel/include/ck/library/utility/iterator.hpp b/projects/composablekernel/include/ck/library/utility/iterator.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/iterator.hpp rename to projects/composablekernel/include/ck/library/utility/iterator.hpp diff --git a/composable_kernel/include/ck/library/utility/literals.hpp b/projects/composablekernel/include/ck/library/utility/literals.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/literals.hpp rename to projects/composablekernel/include/ck/library/utility/literals.hpp diff --git a/composable_kernel/include/ck/library/utility/numeric.hpp b/projects/composablekernel/include/ck/library/utility/numeric.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/numeric.hpp rename to projects/composablekernel/include/ck/library/utility/numeric.hpp diff --git a/composable_kernel/include/ck/library/utility/ranges.hpp b/projects/composablekernel/include/ck/library/utility/ranges.hpp similarity index 100% rename from composable_kernel/include/ck/library/utility/ranges.hpp rename to projects/composablekernel/include/ck/library/utility/ranges.hpp diff --git a/composable_kernel/include/ck/problem_transform/transform_forward_convolution3d_into_gemm_v4r4r4_ndhwc_kzyxc_ndhwk.hpp b/projects/composablekernel/include/ck/problem_transform/transform_forward_convolution3d_into_gemm_v4r4r4_ndhwc_kzyxc_ndhwk.hpp similarity index 100% rename from composable_kernel/include/ck/problem_transform/transform_forward_convolution3d_into_gemm_v4r4r4_ndhwc_kzyxc_ndhwk.hpp rename to projects/composablekernel/include/ck/problem_transform/transform_forward_convolution3d_into_gemm_v4r4r4_ndhwc_kzyxc_ndhwk.hpp diff --git a/composable_kernel/include/ck/stream_config.hpp b/projects/composablekernel/include/ck/stream_config.hpp similarity index 100% rename from composable_kernel/include/ck/stream_config.hpp rename to projects/composablekernel/include/ck/stream_config.hpp diff --git a/composable_kernel/include/ck/tensor/static_tensor.hpp b/projects/composablekernel/include/ck/tensor/static_tensor.hpp similarity index 100% rename from composable_kernel/include/ck/tensor/static_tensor.hpp rename to projects/composablekernel/include/ck/tensor/static_tensor.hpp diff --git a/composable_kernel/include/ck/tensor_description/cluster_descriptor.hpp b/projects/composablekernel/include/ck/tensor_description/cluster_descriptor.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_description/cluster_descriptor.hpp rename to projects/composablekernel/include/ck/tensor_description/cluster_descriptor.hpp diff --git a/composable_kernel/include/ck/tensor_description/multi_index_transform.hpp b/projects/composablekernel/include/ck/tensor_description/multi_index_transform.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_description/multi_index_transform.hpp rename to projects/composablekernel/include/ck/tensor_description/multi_index_transform.hpp diff --git a/composable_kernel/include/ck/tensor_description/multi_index_transform_helper.hpp b/projects/composablekernel/include/ck/tensor_description/multi_index_transform_helper.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_description/multi_index_transform_helper.hpp rename to projects/composablekernel/include/ck/tensor_description/multi_index_transform_helper.hpp diff --git a/composable_kernel/include/ck/tensor_description/tensor_adaptor.hpp b/projects/composablekernel/include/ck/tensor_description/tensor_adaptor.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_description/tensor_adaptor.hpp rename to projects/composablekernel/include/ck/tensor_description/tensor_adaptor.hpp diff --git a/composable_kernel/include/ck/tensor_description/tensor_descriptor.hpp b/projects/composablekernel/include/ck/tensor_description/tensor_descriptor.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_description/tensor_descriptor.hpp rename to projects/composablekernel/include/ck/tensor_description/tensor_descriptor.hpp diff --git a/composable_kernel/include/ck/tensor_description/tensor_descriptor_helper.hpp b/projects/composablekernel/include/ck/tensor_description/tensor_descriptor_helper.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_description/tensor_descriptor_helper.hpp rename to projects/composablekernel/include/ck/tensor_description/tensor_descriptor_helper.hpp diff --git a/composable_kernel/include/ck/tensor_description/tensor_space_filling_curve.hpp b/projects/composablekernel/include/ck/tensor_description/tensor_space_filling_curve.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_description/tensor_space_filling_curve.hpp rename to projects/composablekernel/include/ck/tensor_description/tensor_space_filling_curve.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dl_v2r3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dl_v2r3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dl_v2r3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dl_v2r3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dlops_v2r2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dlops_v2r2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dlops_v2r2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dlops_v2r2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dlops_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dlops_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dlops_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dlops_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dpp.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dpp.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dpp.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_dpp.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_mx_pipeline_xdlops_base.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_mx_pipeline_xdlops_base.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_mx_pipeline_xdlops_base.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_mx_pipeline_xdlops_base.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmma_selector.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmma_selector.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmma_selector.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmma_selector.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmmaops.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmmaops.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmmaops.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmmaops.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmmaops_base.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmmaops_base.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmmaops_base.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmmaops_base.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmmaops_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmmaops_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmmaops_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_wmmaops_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_ab_scale_selector.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_ab_scale_selector.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_ab_scale_selector.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_ab_scale_selector.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_dequant_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_dequant_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_dequant_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_dequant_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_dequant_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_dequant_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_dequant_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_dequant_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_gufusion_dequant_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_gufusion_dequant_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_gufusion_dequant_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_gufusion_dequant_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_gufusion_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_gufusion_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_gufusion_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_gufusion_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_selector.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_selector.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_selector.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_selector.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_v2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_v2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_v2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_v2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_preshuffle_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_scale_selector.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_scale_selector.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_scale_selector.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_b_scale_selector.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_base.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_base.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_base.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_base.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_mx_selector.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_mx_selector.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_mx_selector.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_mx_selector.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_selector.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_selector.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_selector.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_selector.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1_ab_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1_ab_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1_ab_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1_ab_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1_b_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1_b_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1_b_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1_b_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1_mx.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1_mx.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1_mx.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v1_mx.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v2_ab_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v2_ab_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v2_ab_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v2_ab_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v2_b_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v2_b_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v2_b_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v2_b_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v3_ab_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v3_ab_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v3_ab_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v3_ab_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v3_b_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v3_b_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v3_b_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v3_b_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v4.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v4.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v4.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v4.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v4_b_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v4_b_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v4_b_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v4_b_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v5.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v5.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v5.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_pipeline_xdlops_v5.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_smfmac_xdlops.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_smfmac_xdlops.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_smfmac_xdlops.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_smfmac_xdlops.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_wmma.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_wmma.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_wmma.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_wmma.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_xdlops.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_xdlops.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_xdlops.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_xdlops.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_xdlops_skip_b_lds.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_xdlops_skip_b_lds.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_xdlops_skip_b_lds.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_gemm_xdlops_skip_b_lds.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_softmax.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_softmax.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_softmax.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_softmax.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_tensor_slice_transfer_v5r1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_tensor_slice_transfer_v5r1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_tensor_slice_transfer_v5r1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_tensor_slice_transfer_v5r1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_welford.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_welford.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/blockwise_welford.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/blockwise_welford.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/reduction_functions_blockwise.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/reduction_functions_blockwise.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/reduction_functions_blockwise.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/reduction_functions_blockwise.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_direct_load.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_direct_load.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_direct_load.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_direct_load.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r1_dequant.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r1_dequant.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r1_dequant.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r1_dequant.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r1_gather.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r1_gather.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r1_gather.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r1_gather.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v4r2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r1r2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r1r2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r1r2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r1r2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v6r3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7r2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7r2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7r2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7r2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7r3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7r3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7r3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7r3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7r3_scatter.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7r3_scatter.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7r3_scatter.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/block/thread_group_tensor_slice_transfer_v7r3_scatter.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/conv_tensor_rearrange_op.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/conv_tensor_rearrange_op.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/conv_tensor_rearrange_op.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/conv_tensor_rearrange_op.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/convolution_backward_data_specialization.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/convolution_backward_data_specialization.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/convolution_backward_data_specialization.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/convolution_backward_data_specialization.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/convolution_backward_weight_specialization.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/convolution_backward_weight_specialization.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/convolution_backward_weight_specialization.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/convolution_backward_weight_specialization.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/convolution_forward_specialization.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/convolution_forward_specialization.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/convolution_forward_specialization.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/convolution_forward_specialization.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_avgpool_bwd.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_avgpool_bwd.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_avgpool_bwd.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_avgpool_bwd.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_base.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_base.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_base.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_base.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_contraction_multiple_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_contraction_multiple_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_contraction_multiple_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_contraction_multiple_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_e_permute.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_e_permute.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_e_permute.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_e_permute.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_multi_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_multi_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_multi_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_multi_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_multiple_d_gemm_multiple_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_multiple_d_gemm_multiple_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_multiple_d_gemm_multiple_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_multiple_d_gemm_multiple_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_softmax_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_softmax_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_softmax_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_softmax_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_softmax_gemm_permute.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_softmax_gemm_permute.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_softmax_gemm_permute.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batched_gemm_softmax_gemm_permute.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_batchnorm_backward.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batchnorm_backward.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_batchnorm_backward.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batchnorm_backward.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_batchnorm_forward.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batchnorm_forward.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_batchnorm_forward.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batchnorm_forward.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_batchnorm_infer.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batchnorm_infer.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_batchnorm_infer.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_batchnorm_infer.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_cgemm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_cgemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_cgemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_cgemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_contraction_multiple_abd.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_contraction_multiple_abd.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_contraction_multiple_abd.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_contraction_multiple_abd.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_contraction_multiple_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_contraction_multiple_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_contraction_multiple_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_contraction_multiple_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_conv_bwd_data.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_conv_bwd_data.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_conv_bwd_data.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_conv_bwd_data.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_conv_fwd.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_conv_fwd.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_conv_fwd.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_conv_fwd.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_conv_fwd_bias_activation.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_conv_fwd_bias_activation.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_conv_fwd_bias_activation.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_conv_fwd_bias_activation.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_conv_fwd_bias_activation_add.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_conv_fwd_bias_activation_add.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_conv_fwd_bias_activation_add.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_conv_fwd_bias_activation_add.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_conv_tensor_rearrange.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_conv_tensor_rearrange.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_conv_tensor_rearrange.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_conv_tensor_rearrange.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_elementwise.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_elementwise.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_elementwise.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_elementwise.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_elementwise_normalization.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_elementwise_normalization.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_elementwise_normalization.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_elementwise_normalization.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_elementwise_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_elementwise_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_elementwise_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_elementwise_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_bias_e_permute.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_bias_e_permute.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_bias_e_permute.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_bias_e_permute.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_dequantB.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_dequantB.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_dequantB.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_dequantB.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_abd.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_abd.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_abd.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_abd.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d_ab_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d_ab_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d_ab_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d_ab_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d_layernorm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d_layernorm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d_layernorm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d_layernorm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d_multiple_r.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d_multiple_r.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d_multiple_r.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_multiple_d_multiple_r.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_mx.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_mx.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_mx.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_mx.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_reduce.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_reduce.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_reduce.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_reduce.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_splitk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_splitk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_splitk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_splitk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_streamk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_streamk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_streamk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_streamk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_streamk_v2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_streamk_v2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_streamk_v2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_streamk_v2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_v2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_v2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_gemm_v2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_gemm_v2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_contraction_multiple_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_contraction_multiple_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_contraction_multiple_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_contraction_multiple_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_bwd_data_multiple_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_bwd_data_multiple_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_bwd_data_multiple_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_bwd_data_multiple_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_bwd_weight.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_bwd_weight.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_bwd_weight.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_bwd_weight.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_bwd_weight_multiple_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_bwd_weight_multiple_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_bwd_weight_multiple_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_bwd_weight_multiple_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_fwd.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_fwd.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_fwd.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_fwd.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_fwd_multiple_abd.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_fwd_multiple_abd.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_fwd_multiple_abd.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_fwd_multiple_abd.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_fwd_multiple_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_fwd_multiple_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_fwd_multiple_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_conv_fwd_multiple_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_fixed_nk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_fixed_nk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_fixed_nk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_fixed_nk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_multi_abd.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_multi_abd.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_multi_abd.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_multi_abd.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_multi_abd_fixed_nk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_multi_abd_fixed_nk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_multi_abd_fixed_nk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_multi_abd_fixed_nk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_softmax_gemm_permute.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_softmax_gemm_permute.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_softmax_gemm_permute.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_softmax_gemm_permute.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_splitk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_splitk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_splitk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_splitk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_tile_loop.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_tile_loop.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_tile_loop.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_grouped_gemm_tile_loop.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_max_pool_bwd.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_max_pool_bwd.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_max_pool_bwd.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_max_pool_bwd.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_multiple_reduce.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_multiple_reduce.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_multiple_reduce.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_multiple_reduce.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_normalization_bwd_data.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_normalization_bwd_data.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_normalization_bwd_data.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_normalization_bwd_data.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_normalization_bwd_gamma_beta.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_normalization_bwd_gamma_beta.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_normalization_bwd_gamma_beta.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_normalization_bwd_gamma_beta.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_normalization_fwd.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_normalization_fwd.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_normalization_fwd.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_normalization_fwd.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_permute.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_permute.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_permute.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_permute.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_pool_fwd.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_pool_fwd.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_pool_fwd.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_pool_fwd.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_put_element.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_put_element.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_put_element.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_put_element.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_reduce.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_reduce.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_reduce.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_reduce.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_reduce_multi_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_reduce_multi_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_reduce_multi_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_reduce_multi_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_softmax.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_softmax.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_softmax.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_softmax.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/device_splitk_contraction_multiple_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/device_splitk_contraction_multiple_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/device_splitk_contraction_multiple_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/device_splitk_contraction_multiple_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/gemm_specialization.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/gemm_specialization.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/gemm_specialization.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/gemm_specialization.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/helper.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/helper.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/helper.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/helper.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/codegen_device_grouped_conv_fwd_multiple_abd_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/codegen_device_grouped_conv_fwd_multiple_abd_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/codegen_device_grouped_conv_fwd_multiple_abd_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/codegen_device_grouped_conv_fwd_multiple_abd_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_avgpool2d_bwd_nhwc_nhwc.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_avgpool2d_bwd_nhwc_nhwc.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_avgpool2d_bwd_nhwc_nhwc.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_avgpool2d_bwd_nhwc_nhwc.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_avgpool3d_bwd_ndhwc_ndhwc.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_avgpool3d_bwd_ndhwc_ndhwc.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_avgpool3d_bwd_ndhwc_ndhwc.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_avgpool3d_bwd_ndhwc_ndhwc.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_contraction_multiple_d_wmma_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_contraction_multiple_d_wmma_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_contraction_multiple_d_wmma_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_contraction_multiple_d_wmma_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_contraction_multiple_d_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_contraction_multiple_d_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_contraction_multiple_d_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_contraction_multiple_d_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_e_permute_xdl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_e_permute_xdl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_e_permute_xdl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_e_permute_xdl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_gemm_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_gemm_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_gemm_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_gemm_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multi_d_xdl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multi_d_xdl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multi_d_xdl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multi_d_xdl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multiple_d_dl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multiple_d_dl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multiple_d_dl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multiple_d_dl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multiple_d_gemm_multiple_d_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multiple_d_gemm_multiple_d_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multiple_d_gemm_multiple_d_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multiple_d_gemm_multiple_d_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multiple_d_xdl_cshuffle_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multiple_d_xdl_cshuffle_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multiple_d_xdl_cshuffle_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_multiple_d_xdl_cshuffle_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_reduce_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_reduce_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_reduce_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_reduce_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_softmax_gemm_permute_wmma_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_softmax_gemm_permute_wmma_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_softmax_gemm_permute_wmma_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_softmax_gemm_permute_wmma_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_softmax_gemm_permute_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_softmax_gemm_permute_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_softmax_gemm_permute_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_softmax_gemm_permute_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_softmax_gemm_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_softmax_gemm_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_softmax_gemm_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_softmax_gemm_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_xdl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_xdl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_xdl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_xdl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_xdl_fpAintB_b_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_xdl_fpAintB_b_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_xdl_fpAintB_b_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batched_gemm_xdl_fpAintB_b_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batchnorm_backward_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batchnorm_backward_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batchnorm_backward_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batchnorm_backward_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batchnorm_forward_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batchnorm_forward_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batchnorm_forward_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batchnorm_forward_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batchnorm_forward_impl_obsolete.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batchnorm_forward_impl_obsolete.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_batchnorm_forward_impl_obsolete.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_batchnorm_forward_impl_obsolete.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_cgemm_4gemm_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_cgemm_4gemm_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_cgemm_4gemm_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_cgemm_4gemm_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_column_to_image_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_column_to_image_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_column_to_image_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_column_to_image_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_contraction_multiple_abd_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_contraction_multiple_abd_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_contraction_multiple_abd_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_contraction_multiple_abd_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_contraction_multiple_d_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_contraction_multiple_d_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_contraction_multiple_d_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_contraction_multiple_d_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_contraction_utils.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_contraction_utils.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_contraction_utils.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_contraction_utils.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_backward_weight_xdl_c_shuffle_nhwc_kyxc_nhwk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_backward_weight_xdl_c_shuffle_nhwc_kyxc_nhwk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_backward_weight_xdl_c_shuffle_nhwc_kyxc_nhwk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_backward_weight_xdl_c_shuffle_nhwc_kyxc_nhwk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_c_shuffle_bias_activation_add_nhwc_kyxc_nhwk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_c_shuffle_bias_activation_add_nhwc_kyxc_nhwk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_c_shuffle_bias_activation_add_nhwc_kyxc_nhwk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_c_shuffle_bias_activation_add_nhwc_kyxc_nhwk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_c_shuffle_bias_activation_nhwc_kyxc_nhwk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_c_shuffle_bias_activation_nhwc_kyxc_nhwk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_c_shuffle_bias_activation_nhwc_kyxc_nhwk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_c_shuffle_bias_activation_nhwc_kyxc_nhwk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_c_shuffle_nhwc_kyxc_nhwk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_c_shuffle_nhwc_kyxc_nhwk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_c_shuffle_nhwc_kyxc_nhwk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_c_shuffle_nhwc_kyxc_nhwk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv3d_fwd_naive_ndhwc_kzyxc_ndhwk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv3d_fwd_naive_ndhwc_kzyxc_ndhwk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv3d_fwd_naive_ndhwc_kzyxc_ndhwk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv3d_fwd_naive_ndhwc_kzyxc_ndhwk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv3d_fwd_xdl_ndhwc_kzyxc_ndhwk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv3d_fwd_xdl_ndhwc_kzyxc_ndhwk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_conv3d_fwd_xdl_ndhwc_kzyxc_ndhwk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_conv3d_fwd_xdl_ndhwc_kzyxc_ndhwk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_convnd_bwd_data_nwc_kxc_nwk_dl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_convnd_bwd_data_nwc_kxc_nwk_dl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_convnd_bwd_data_nwc_kxc_nwk_dl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_convnd_bwd_data_nwc_kxc_nwk_dl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_convnd_bwd_data_nwc_kxc_nwk_xdl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_convnd_bwd_data_nwc_kxc_nwk_xdl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_convnd_bwd_data_nwc_kxc_nwk_xdl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_convnd_bwd_data_nwc_kxc_nwk_xdl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_elementwise_dynamic_vector_dims_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_elementwise_dynamic_vector_dims_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_elementwise_dynamic_vector_dims_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_elementwise_dynamic_vector_dims_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_elementwise_normalization_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_elementwise_normalization_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_elementwise_normalization_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_elementwise_normalization_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_elementwise_scale_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_elementwise_scale_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_elementwise_scale_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_elementwise_scale_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_fpAintB_gemm_wmma.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_fpAintB_gemm_wmma.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_fpAintB_gemm_wmma.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_fpAintB_gemm_wmma.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_bias_add_reduce_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_bias_add_reduce_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_bias_add_reduce_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_bias_add_reduce_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_dl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_dl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_dl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_dl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_dpp.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_dpp.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_dpp.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_dpp.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_abd_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_abd_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_abd_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_abd_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_dl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_dl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_dl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_dl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_layernorm_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_layernorm_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_layernorm_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_layernorm_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_multiple_r_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_multiple_r_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_multiple_r_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_multiple_r_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_wmma_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_wmma_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_wmma_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_wmma_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_lds_direct_load.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_lds_direct_load.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_lds_direct_load.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_lds_direct_load.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_v3_ab_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_v3_ab_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_v3_ab_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_v3_ab_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_v3_b_preshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_v3_b_preshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_v3_b_preshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_multiple_d_xdl_cshuffle_v3_b_preshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_reduce_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_reduce_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_reduce_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_reduce_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_wmma.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_wmma.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_wmma.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_wmma.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_wmma_cshuffle_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_wmma_cshuffle_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_wmma_cshuffle_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_wmma_cshuffle_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_lds_direct_load.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_lds_direct_load.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_lds_direct_load.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_lds_direct_load.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_streamk_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_streamk_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_streamk_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_streamk_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3_b_preshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3_b_preshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3_b_preshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3_b_preshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3_b_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3_b_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3_b_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3_b_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3_mx.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3_mx.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3_mx.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3_mx.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3r1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3r1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3r1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_cshuffle_v3r1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_layernorm_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_layernorm_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_layernorm_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_layernorm_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_skip_b_lds.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_skip_b_lds.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_skip_b_lds.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_skip_b_lds.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_splitk_c_shuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_splitk_c_shuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_splitk_c_shuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_splitk_c_shuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_splitk_c_shuffle_lds_direct_load.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_splitk_c_shuffle_lds_direct_load.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_splitk_c_shuffle_lds_direct_load.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_splitk_c_shuffle_lds_direct_load.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_streamk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_streamk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_streamk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_streamk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_waveletmodel_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_waveletmodel_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_waveletmodel_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_gemm_xdl_waveletmodel_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_contraction_multiple_d_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_contraction_multiple_d_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_contraction_multiple_d_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_contraction_multiple_d_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_data_multiple_d_wmma_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_data_multiple_d_wmma_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_data_multiple_d_wmma_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_data_multiple_d_wmma_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_data_multiple_d_xdl_cshuffle_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_data_multiple_d_xdl_cshuffle_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_data_multiple_d_xdl_cshuffle_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_data_multiple_d_xdl_cshuffle_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_dl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_dl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_dl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_dl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_multiple_d_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_multiple_d_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_multiple_d_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_multiple_d_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_two_stage_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_two_stage_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_two_stage_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_two_stage_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_wmma_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_wmma_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_wmma_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_wmma_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_xdl_cshuffle_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_xdl_cshuffle_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_xdl_cshuffle_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_bwd_weight_xdl_cshuffle_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_dl_multiple_d_nhwc_kyxc_nhwk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_dl_multiple_d_nhwc_kyxc_nhwk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_dl_multiple_d_nhwc_kyxc_nhwk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_dl_multiple_d_nhwc_kyxc_nhwk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_dl_nhwc_kyxc_nhwk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_dl_nhwc_kyxc_nhwk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_dl_nhwc_kyxc_nhwk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_dl_nhwc_kyxc_nhwk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_abd_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_abd_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_abd_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_abd_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_abd_xdl_cshuffle_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_abd_xdl_cshuffle_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_abd_xdl_cshuffle_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_abd_xdl_cshuffle_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_multiple_r.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_multiple_r.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_multiple_r.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_multiple_r.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_multiple_r_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_multiple_r_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_multiple_r_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_multiple_r_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_wmma_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_wmma_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_wmma_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_wmma_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_xdl_large_tensor_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_xdl_large_tensor_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_xdl_large_tensor_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_fwd_multiple_d_xdl_large_tensor_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_utils.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_utils.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_utils.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_conv_utils.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multi_abd_xdl_fixed_nk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multi_abd_xdl_fixed_nk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multi_abd_xdl_fixed_nk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multi_abd_xdl_fixed_nk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multiple_d_dl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multiple_d_dl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multiple_d_dl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multiple_d_dl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multiple_d_splitk_xdl_cshuffle_two_stage.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multiple_d_splitk_xdl_cshuffle_two_stage.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multiple_d_splitk_xdl_cshuffle_two_stage.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multiple_d_splitk_xdl_cshuffle_two_stage.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multiple_d_xdl_cshuffle_tile_loop.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multiple_d_xdl_cshuffle_tile_loop.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multiple_d_xdl_cshuffle_tile_loop.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_multiple_d_xdl_cshuffle_tile_loop.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_softmax_gemm_permute_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_softmax_gemm_permute_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_softmax_gemm_permute_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_softmax_gemm_permute_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl_fixed_nk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl_fixed_nk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl_fixed_nk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl_fixed_nk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl_splitk_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl_splitk_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl_splitk_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_gemm_xdl_splitk_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_query_attention_forward_wmma.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_query_attention_forward_wmma.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_query_attention_forward_wmma.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_grouped_query_attention_forward_wmma.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_image_to_column_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_image_to_column_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_image_to_column_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_image_to_column_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_max_pool_bwd_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_max_pool_bwd_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_max_pool_bwd_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_max_pool_bwd_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_moe_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_moe_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_moe_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_moe_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_multi_query_attention_forward_wmma.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_multi_query_attention_forward_wmma.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_multi_query_attention_forward_wmma.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_multi_query_attention_forward_wmma.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_multiple_reduce_multiblock.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_multiple_reduce_multiblock.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_multiple_reduce_multiblock.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_multiple_reduce_multiblock.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_multiple_reduce_threadwise.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_multiple_reduce_threadwise.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_multiple_reduce_threadwise.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_multiple_reduce_threadwise.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_bwd_data_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_bwd_data_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_bwd_data_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_bwd_data_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_bwd_gamma_beta_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_bwd_gamma_beta_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_bwd_gamma_beta_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_bwd_gamma_beta_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_fwd_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_fwd_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_fwd_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_fwd_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_fwd_splitk_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_fwd_splitk_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_fwd_splitk_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_normalization_fwd_splitk_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_permute_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_permute_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_permute_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_permute_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_pool2d_fwd_nhwc_nhwc.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_pool2d_fwd_nhwc_nhwc.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_pool2d_fwd_nhwc_nhwc.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_pool2d_fwd_nhwc_nhwc.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_pool3d_fwd_ndhwc_ndhwc.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_pool3d_fwd_ndhwc_ndhwc.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_pool3d_fwd_ndhwc_ndhwc.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_pool3d_fwd_ndhwc_ndhwc.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_put_element_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_put_element_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_put_element_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_put_element_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_common.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_common.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_common.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_common.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_multiblock.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_multiblock.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_multiblock.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_multiblock.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_threadwise.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_threadwise.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_threadwise.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_threadwise.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_threadwise_multi_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_threadwise_multi_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_threadwise_multi_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_reduce_threadwise_multi_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_softmax_impl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_softmax_impl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_softmax_impl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_softmax_impl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_sparse_embeddings_forward_layernorm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_sparse_embeddings_forward_layernorm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_sparse_embeddings_forward_layernorm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_sparse_embeddings_forward_layernorm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_splitk_contraction_multiple_d_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_splitk_contraction_multiple_d_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/impl/device_splitk_contraction_multiple_d_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/impl/device_splitk_contraction_multiple_d_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/masking_specialization.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/masking_specialization.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/masking_specialization.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/masking_specialization.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/matrix_padder.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/matrix_padder.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/matrix_padder.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/matrix_padder.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/reduction_operator_mapping.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/reduction_operator_mapping.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/reduction_operator_mapping.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/reduction_operator_mapping.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/tensor_layout.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/tensor_layout.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/tensor_layout.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/tensor_layout.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/tensor_specialization.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/tensor_specialization.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/tensor_specialization.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/tensor_specialization.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/device/welford_helper.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/device/welford_helper.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/device/welford_helper.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/device/welford_helper.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/element/binary_element_wise_operation.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/element/binary_element_wise_operation.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/element/binary_element_wise_operation.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/element/binary_element_wise_operation.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/element/combined_element_wise_operation.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/element/combined_element_wise_operation.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/element/combined_element_wise_operation.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/element/combined_element_wise_operation.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/element/element_wise_operation.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/element/element_wise_operation.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/element/element_wise_operation.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/element/element_wise_operation.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/element/quantization_operation.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/element/quantization_operation.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/element/quantization_operation.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/element/quantization_operation.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/element/unary_element_wise_operation.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/element/unary_element_wise_operation.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/element/unary_element_wise_operation.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/element/unary_element_wise_operation.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_batchnorm_forward.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_batchnorm_forward.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_batchnorm_forward.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_batchnorm_forward.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_reduce_second_half_batchnorm_backward_final.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_reduce_second_half_batchnorm_backward_final.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_reduce_second_half_batchnorm_backward_final.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_reduce_second_half_batchnorm_backward_final.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_welford_first_half.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_welford_first_half.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_welford_first_half.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_welford_first_half.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_welford_second_half_batchnorm_forward_final_obsolete.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_welford_second_half_batchnorm_forward_final_obsolete.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_welford_second_half_batchnorm_forward_final_obsolete.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_welford_second_half_batchnorm_forward_final_obsolete.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_welford_second_half_multiblock_reduce_first_half.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_welford_second_half_multiblock_reduce_first_half.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_welford_second_half_multiblock_reduce_first_half.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/batchnorm_multiblock/gridwise_multiblock_welford_second_half_multiblock_reduce_first_half.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/block_to_ctile_map.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/block_to_ctile_map.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/block_to_ctile_map.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/block_to_ctile_map.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gemm_layernorm/gridwise_gemm_multiple_d_welford_first_half_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gemm_layernorm/gridwise_gemm_multiple_d_welford_first_half_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gemm_layernorm/gridwise_gemm_multiple_d_welford_first_half_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gemm_layernorm/gridwise_gemm_multiple_d_welford_first_half_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gemm_layernorm/gridwise_welford_second_half_layernorm2d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gemm_layernorm/gridwise_welford_second_half_layernorm2d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gemm_layernorm/gridwise_welford_second_half_layernorm2d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gemm_layernorm/gridwise_welford_second_half_layernorm2d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_multiple_reduction_multiblock.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_multiple_reduction_multiblock.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_multiple_reduction_multiblock.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_multiple_reduction_multiblock.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_multiple_reduction_threadwise.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_multiple_reduction_threadwise.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_multiple_reduction_threadwise.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_multiple_reduction_threadwise.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_reduction_multiblock.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_reduction_multiblock.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_reduction_multiblock.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_reduction_multiblock.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_reduction_threadwise.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_reduction_threadwise.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_reduction_threadwise.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_reduction_threadwise.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_reduction_threadwise_multi_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_reduction_threadwise_multi_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_reduction_threadwise_multi_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_2d_reduction_threadwise_multi_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_gemm_xdl_cshuffle_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_gemm_xdl_cshuffle_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_gemm_xdl_cshuffle_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_gemm_xdl_cshuffle_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_multiple_d_gemm_multiple_d_xdl_cshuffle_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_multiple_d_gemm_multiple_d_xdl_cshuffle_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_multiple_d_gemm_multiple_d_xdl_cshuffle_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_multiple_d_gemm_multiple_d_xdl_cshuffle_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_multiple_d_softmax_gemm_xdl_cshuffle_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_multiple_d_softmax_gemm_xdl_cshuffle_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_multiple_d_softmax_gemm_xdl_cshuffle_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_multiple_d_softmax_gemm_xdl_cshuffle_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_softmax_gemm_wmma_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_softmax_gemm_wmma_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_softmax_gemm_wmma_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_softmax_gemm_wmma_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_softmax_gemm_xdl_cshuffle_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_softmax_gemm_xdl_cshuffle_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_softmax_gemm_xdl_cshuffle_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batched_gemm_softmax_gemm_xdl_cshuffle_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batchnorm_backward_blockwise_welford.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batchnorm_backward_blockwise_welford.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batchnorm_backward_blockwise_welford.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batchnorm_backward_blockwise_welford.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batchnorm_forward_blockwise_welford.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batchnorm_forward_blockwise_welford.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_batchnorm_forward_blockwise_welford.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_batchnorm_forward_blockwise_welford.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_elementwise_1d_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_elementwise_1d_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_elementwise_1d_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_elementwise_1d_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_elementwise_2d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_elementwise_2d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_elementwise_2d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_elementwise_2d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_elementwise_layernorm_welford_variance.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_elementwise_layernorm_welford_variance.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_elementwise_layernorm_welford_variance.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_elementwise_layernorm_welford_variance.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_fpAintB_gemm_wmma.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_fpAintB_gemm_wmma.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_fpAintB_gemm_wmma.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_fpAintB_gemm_wmma.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_bias_add_reduce_xdl_cshuffle_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_bias_add_reduce_xdl_cshuffle_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_bias_add_reduce_xdl_cshuffle_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_bias_add_reduce_xdl_cshuffle_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_dl_multiple_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_dl_multiple_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_dl_multiple_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_dl_multiple_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_dl_v1r3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_dl_v1r3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_dl_v1r3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_dl_v1r3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_dpp.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_dpp.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_dpp.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_dpp.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_abd_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_abd_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_abd_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_abd_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_multiple_r_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_multiple_r_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_multiple_r_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_multiple_r_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_wmma_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_wmma_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_wmma_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_wmma_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_xdl_cshuffle_lds_direct_load.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_xdl_cshuffle_lds_direct_load.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_xdl_cshuffle_lds_direct_load.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_xdl_cshuffle_lds_direct_load.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_xdl_splitk_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_xdl_splitk_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_xdl_splitk_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_multiple_d_xdl_splitk_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_selector.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_selector.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_selector.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_selector.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v4_direct_load.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v4_direct_load.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v4_direct_load.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_pipeline_v4_direct_load.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_reduce_xdl_cshuffle_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_reduce_xdl_cshuffle_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_reduce_xdl_cshuffle_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_reduce_xdl_cshuffle_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_split_k_multiple_d_xdl_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_split_k_multiple_d_xdl_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_split_k_multiple_d_xdl_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_split_k_multiple_d_xdl_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_split_k_multiple_d_xdl_cshuffle_v2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_split_k_multiple_d_xdl_cshuffle_v2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_split_k_multiple_d_xdl_cshuffle_v2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_split_k_multiple_d_xdl_cshuffle_v2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_waveletmodel.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_waveletmodel.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_waveletmodel.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_waveletmodel.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_wmma.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_wmma.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_wmma.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_wmma.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_wmma_cshuffle_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_wmma_cshuffle_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_wmma_cshuffle_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_wmma_cshuffle_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_conv_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_conv_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_conv_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_conv_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_streamk_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_streamk_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_streamk_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_streamk_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_b_preshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_b_preshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_b_preshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_b_preshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_b_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_b_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_b_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_b_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_abd.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_abd.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_abd.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_abd.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_d_ab_scale.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_d_ab_scale.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_d_ab_scale.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_d_ab_scale.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_d_b_preshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_d_b_preshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_d_b_preshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_multi_d_b_preshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_mx.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_mx.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_mx.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_cshuffle_v3_mx.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_layernorm_cshuffle_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_layernorm_cshuffle_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_layernorm_cshuffle_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_layernorm_cshuffle_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_waveletmodel_cshuffle.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_waveletmodel_cshuffle.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_waveletmodel_cshuffle.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdl_waveletmodel_cshuffle.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_bwd_weight.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_bwd_weight.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_bwd_weight.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_bwd_weight.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_skip_b_lds_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_skip_b_lds_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_skip_b_lds_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_skip_b_lds_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_splitk_lds_direct_load.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_splitk_lds_direct_load.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_splitk_lds_direct_load.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_splitk_lds_direct_load.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_streamk.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_streamk.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_streamk.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_streamk.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v2r3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v2r3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v2r3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v2r3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v2r4.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v2r4.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v2r4.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v2r4.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v2r4r2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v2r4r2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v2r4r2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v2r4r2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v3r1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v3r1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v3r1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v3r1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v3r2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v3r2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v3r2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v3r2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v3r3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v3r3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v3r3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_gemm_xdlops_v3r3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_moe_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_moe_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_moe_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_moe_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_permute.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_permute.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_permute.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_permute.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_put_element_1d.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_put_element_1d.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_put_element_1d.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_put_element_1d.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_set_buffer_value.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_set_buffer_value.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_set_buffer_value.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_set_buffer_value.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_set_multiple_buffer_value.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_set_multiple_buffer_value.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_set_multiple_buffer_value.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_set_multiple_buffer_value.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_softmax.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_softmax.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_softmax.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_softmax.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_sparse_embeddings_forward_layernorm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_sparse_embeddings_forward_layernorm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_sparse_embeddings_forward_layernorm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_sparse_embeddings_forward_layernorm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_sparse_embeddings_forward_layernorm_builtins.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_sparse_embeddings_forward_layernorm_builtins.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_sparse_embeddings_forward_layernorm_builtins.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_sparse_embeddings_forward_layernorm_builtins.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_tensor_rearrange.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_tensor_rearrange.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/gridwise_tensor_rearrange.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/gridwise_tensor_rearrange.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_bwd_data.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_bwd_data.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_bwd_data.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_bwd_data.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_bwd_gamma_beta.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_bwd_gamma_beta.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_bwd_gamma_beta.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_bwd_gamma_beta.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_naive_variance.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_naive_variance.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_naive_variance.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_naive_variance.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_selector.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_selector.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_selector.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_selector.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_splitk_1st.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_splitk_1st.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_splitk_1st.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_splitk_1st.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_splitk_2nd.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_splitk_2nd.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_splitk_2nd.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_splitk_2nd.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_welford_variance.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_welford_variance.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_welford_variance.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/grid/normalization/gridwise_normalization_welford_variance.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/reduction_functions_threadwise.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/reduction_functions_threadwise.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/reduction_functions_threadwise.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/reduction_functions_threadwise.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_contraction_dl.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_contraction_dl.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_contraction_dl.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_contraction_dl.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_gemm_dlops_v3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_gemm_dlops_v3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_gemm_dlops_v3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_gemm_dlops_v3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_set.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_set.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_set.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_set.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_util.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_util.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_util.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_util.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r1_dequant.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r1_dequant.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r1_dequant.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r1_dequant.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r1_gather.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r1_gather.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r1_gather.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r1_gather.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v3r2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v4r1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v4r1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v4r1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v4r1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v5r1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v5r1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v5r1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v5r1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r1.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r1.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r1r2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r1r2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r1r2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r1r2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v6r3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7r2.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7r2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7r2.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7r2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7r3.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7r3.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7r3.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7r3.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7r3_scatter.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7r3_scatter.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7r3_scatter.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer_v7r3_scatter.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_welford.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_welford.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/thread/threadwise_welford.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/thread/threadwise_welford.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/warp/dpp_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/warp/dpp_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/warp/dpp_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/warp/dpp_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/warp/smfmac_xdlops_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/warp/smfmac_xdlops_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/warp/smfmac_xdlops_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/warp/smfmac_xdlops_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/warp/wmma_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/warp/wmma_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/warp/wmma_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/warp/wmma_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/gpu/warp/xdlops_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/gpu/warp/xdlops_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/gpu/warp/xdlops_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/gpu/warp/xdlops_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/operator_transform/transform_contraction_to_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_contraction_to_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/operator_transform/transform_contraction_to_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_contraction_to_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/operator_transform/transform_contraction_to_gemm_arraybase.hpp b/projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_contraction_to_gemm_arraybase.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/operator_transform/transform_contraction_to_gemm_arraybase.hpp rename to projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_contraction_to_gemm_arraybase.hpp diff --git a/composable_kernel/include/ck/tensor_operation/operator_transform/transform_conv_bwd_data_to_gemm_v1.hpp b/projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_conv_bwd_data_to_gemm_v1.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/operator_transform/transform_conv_bwd_data_to_gemm_v1.hpp rename to projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_conv_bwd_data_to_gemm_v1.hpp diff --git a/composable_kernel/include/ck/tensor_operation/operator_transform/transform_conv_bwd_weight_to_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_conv_bwd_weight_to_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/operator_transform/transform_conv_bwd_weight_to_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_conv_bwd_weight_to_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/operator_transform/transform_conv_bwd_weight_to_gemm_v2.hpp b/projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_conv_bwd_weight_to_gemm_v2.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/operator_transform/transform_conv_bwd_weight_to_gemm_v2.hpp rename to projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_conv_bwd_weight_to_gemm_v2.hpp diff --git a/composable_kernel/include/ck/tensor_operation/operator_transform/transform_conv_fwd_to_gemm.hpp b/projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_conv_fwd_to_gemm.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/operator_transform/transform_conv_fwd_to_gemm.hpp rename to projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_conv_fwd_to_gemm.hpp diff --git a/composable_kernel/include/ck/tensor_operation/operator_transform/transform_conv_ngchw_to_nhwgc.hpp b/projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_conv_ngchw_to_nhwgc.hpp similarity index 100% rename from composable_kernel/include/ck/tensor_operation/operator_transform/transform_conv_ngchw_to_nhwgc.hpp rename to projects/composablekernel/include/ck/tensor_operation/operator_transform/transform_conv_ngchw_to_nhwgc.hpp diff --git a/composable_kernel/include/ck/utility/amd_address_space.hpp b/projects/composablekernel/include/ck/utility/amd_address_space.hpp similarity index 100% rename from composable_kernel/include/ck/utility/amd_address_space.hpp rename to projects/composablekernel/include/ck/utility/amd_address_space.hpp diff --git a/composable_kernel/include/ck/utility/amd_buffer_addressing.hpp b/projects/composablekernel/include/ck/utility/amd_buffer_addressing.hpp similarity index 100% rename from composable_kernel/include/ck/utility/amd_buffer_addressing.hpp rename to projects/composablekernel/include/ck/utility/amd_buffer_addressing.hpp diff --git a/composable_kernel/include/ck/utility/amd_buffer_addressing_builtins.hpp b/projects/composablekernel/include/ck/utility/amd_buffer_addressing_builtins.hpp similarity index 100% rename from composable_kernel/include/ck/utility/amd_buffer_addressing_builtins.hpp rename to projects/composablekernel/include/ck/utility/amd_buffer_addressing_builtins.hpp diff --git a/composable_kernel/include/ck/utility/amd_ck_fp8.hpp b/projects/composablekernel/include/ck/utility/amd_ck_fp8.hpp similarity index 100% rename from composable_kernel/include/ck/utility/amd_ck_fp8.hpp rename to projects/composablekernel/include/ck/utility/amd_ck_fp8.hpp diff --git a/composable_kernel/include/ck/utility/amd_gemm_dpp.hpp b/projects/composablekernel/include/ck/utility/amd_gemm_dpp.hpp similarity index 100% rename from composable_kernel/include/ck/utility/amd_gemm_dpp.hpp rename to projects/composablekernel/include/ck/utility/amd_gemm_dpp.hpp diff --git a/composable_kernel/include/ck/utility/amd_inline_asm.hpp b/projects/composablekernel/include/ck/utility/amd_inline_asm.hpp similarity index 100% rename from composable_kernel/include/ck/utility/amd_inline_asm.hpp rename to projects/composablekernel/include/ck/utility/amd_inline_asm.hpp diff --git a/composable_kernel/include/ck/utility/amd_lds.hpp b/projects/composablekernel/include/ck/utility/amd_lds.hpp similarity index 100% rename from composable_kernel/include/ck/utility/amd_lds.hpp rename to projects/composablekernel/include/ck/utility/amd_lds.hpp diff --git a/composable_kernel/include/ck/utility/amd_smfmac.hpp b/projects/composablekernel/include/ck/utility/amd_smfmac.hpp similarity index 100% rename from composable_kernel/include/ck/utility/amd_smfmac.hpp rename to projects/composablekernel/include/ck/utility/amd_smfmac.hpp diff --git a/composable_kernel/include/ck/utility/amd_wave_read_first_lane.hpp b/projects/composablekernel/include/ck/utility/amd_wave_read_first_lane.hpp similarity index 100% rename from composable_kernel/include/ck/utility/amd_wave_read_first_lane.hpp rename to projects/composablekernel/include/ck/utility/amd_wave_read_first_lane.hpp diff --git a/composable_kernel/include/ck/utility/amd_wmma.hpp b/projects/composablekernel/include/ck/utility/amd_wmma.hpp similarity index 100% rename from composable_kernel/include/ck/utility/amd_wmma.hpp rename to projects/composablekernel/include/ck/utility/amd_wmma.hpp diff --git a/composable_kernel/include/ck/utility/amd_xdlops.hpp b/projects/composablekernel/include/ck/utility/amd_xdlops.hpp similarity index 100% rename from composable_kernel/include/ck/utility/amd_xdlops.hpp rename to projects/composablekernel/include/ck/utility/amd_xdlops.hpp diff --git a/composable_kernel/include/ck/utility/array.hpp b/projects/composablekernel/include/ck/utility/array.hpp similarity index 100% rename from composable_kernel/include/ck/utility/array.hpp rename to projects/composablekernel/include/ck/utility/array.hpp diff --git a/composable_kernel/include/ck/utility/array_multi_index.hpp b/projects/composablekernel/include/ck/utility/array_multi_index.hpp similarity index 100% rename from composable_kernel/include/ck/utility/array_multi_index.hpp rename to projects/composablekernel/include/ck/utility/array_multi_index.hpp diff --git a/composable_kernel/include/ck/utility/blkgemmpipe_scheduler.hpp b/projects/composablekernel/include/ck/utility/blkgemmpipe_scheduler.hpp similarity index 100% rename from composable_kernel/include/ck/utility/blkgemmpipe_scheduler.hpp rename to projects/composablekernel/include/ck/utility/blkgemmpipe_scheduler.hpp diff --git a/composable_kernel/include/ck/utility/c_style_pointer_cast.hpp b/projects/composablekernel/include/ck/utility/c_style_pointer_cast.hpp similarity index 100% rename from composable_kernel/include/ck/utility/c_style_pointer_cast.hpp rename to projects/composablekernel/include/ck/utility/c_style_pointer_cast.hpp diff --git a/composable_kernel/include/ck/utility/common_header.hpp b/projects/composablekernel/include/ck/utility/common_header.hpp similarity index 100% rename from composable_kernel/include/ck/utility/common_header.hpp rename to projects/composablekernel/include/ck/utility/common_header.hpp diff --git a/composable_kernel/include/ck/utility/container_element_picker.hpp b/projects/composablekernel/include/ck/utility/container_element_picker.hpp similarity index 100% rename from composable_kernel/include/ck/utility/container_element_picker.hpp rename to projects/composablekernel/include/ck/utility/container_element_picker.hpp diff --git a/composable_kernel/include/ck/utility/container_helper.hpp b/projects/composablekernel/include/ck/utility/container_helper.hpp similarity index 100% rename from composable_kernel/include/ck/utility/container_helper.hpp rename to projects/composablekernel/include/ck/utility/container_helper.hpp diff --git a/composable_kernel/include/ck/utility/data_type.hpp b/projects/composablekernel/include/ck/utility/data_type.hpp similarity index 100% rename from composable_kernel/include/ck/utility/data_type.hpp rename to projects/composablekernel/include/ck/utility/data_type.hpp diff --git a/composable_kernel/include/ck/utility/debug.hpp b/projects/composablekernel/include/ck/utility/debug.hpp similarity index 100% rename from composable_kernel/include/ck/utility/debug.hpp rename to projects/composablekernel/include/ck/utility/debug.hpp diff --git a/composable_kernel/include/ck/utility/dtype_fp64.hpp b/projects/composablekernel/include/ck/utility/dtype_fp64.hpp similarity index 100% rename from composable_kernel/include/ck/utility/dtype_fp64.hpp rename to projects/composablekernel/include/ck/utility/dtype_fp64.hpp diff --git a/composable_kernel/include/ck/utility/dtype_vector.hpp b/projects/composablekernel/include/ck/utility/dtype_vector.hpp similarity index 100% rename from composable_kernel/include/ck/utility/dtype_vector.hpp rename to projects/composablekernel/include/ck/utility/dtype_vector.hpp diff --git a/composable_kernel/include/ck/utility/dynamic_buffer.hpp b/projects/composablekernel/include/ck/utility/dynamic_buffer.hpp similarity index 100% rename from composable_kernel/include/ck/utility/dynamic_buffer.hpp rename to projects/composablekernel/include/ck/utility/dynamic_buffer.hpp diff --git a/composable_kernel/include/ck/utility/e8m0.hpp b/projects/composablekernel/include/ck/utility/e8m0.hpp similarity index 100% rename from composable_kernel/include/ck/utility/e8m0.hpp rename to projects/composablekernel/include/ck/utility/e8m0.hpp diff --git a/composable_kernel/include/ck/utility/enable_if.hpp b/projects/composablekernel/include/ck/utility/enable_if.hpp similarity index 100% rename from composable_kernel/include/ck/utility/enable_if.hpp rename to projects/composablekernel/include/ck/utility/enable_if.hpp diff --git a/composable_kernel/include/ck/utility/env.hpp b/projects/composablekernel/include/ck/utility/env.hpp similarity index 100% rename from composable_kernel/include/ck/utility/env.hpp rename to projects/composablekernel/include/ck/utility/env.hpp diff --git a/composable_kernel/include/ck/utility/f8_utils.hpp b/projects/composablekernel/include/ck/utility/f8_utils.hpp similarity index 100% rename from composable_kernel/include/ck/utility/f8_utils.hpp rename to projects/composablekernel/include/ck/utility/f8_utils.hpp diff --git a/composable_kernel/include/ck/utility/flush_icache.hpp b/projects/composablekernel/include/ck/utility/flush_icache.hpp similarity index 100% rename from composable_kernel/include/ck/utility/flush_icache.hpp rename to projects/composablekernel/include/ck/utility/flush_icache.hpp diff --git a/composable_kernel/include/ck/utility/functional.hpp b/projects/composablekernel/include/ck/utility/functional.hpp similarity index 100% rename from composable_kernel/include/ck/utility/functional.hpp rename to projects/composablekernel/include/ck/utility/functional.hpp diff --git a/composable_kernel/include/ck/utility/functional2.hpp b/projects/composablekernel/include/ck/utility/functional2.hpp similarity index 100% rename from composable_kernel/include/ck/utility/functional2.hpp rename to projects/composablekernel/include/ck/utility/functional2.hpp diff --git a/composable_kernel/include/ck/utility/functional3.hpp b/projects/composablekernel/include/ck/utility/functional3.hpp similarity index 100% rename from composable_kernel/include/ck/utility/functional3.hpp rename to projects/composablekernel/include/ck/utility/functional3.hpp diff --git a/composable_kernel/include/ck/utility/functional4.hpp b/projects/composablekernel/include/ck/utility/functional4.hpp similarity index 100% rename from composable_kernel/include/ck/utility/functional4.hpp rename to projects/composablekernel/include/ck/utility/functional4.hpp diff --git a/composable_kernel/include/ck/utility/generic_memory_space_atomic.hpp b/projects/composablekernel/include/ck/utility/generic_memory_space_atomic.hpp similarity index 100% rename from composable_kernel/include/ck/utility/generic_memory_space_atomic.hpp rename to projects/composablekernel/include/ck/utility/generic_memory_space_atomic.hpp diff --git a/composable_kernel/include/ck/utility/get_id.hpp b/projects/composablekernel/include/ck/utility/get_id.hpp similarity index 100% rename from composable_kernel/include/ck/utility/get_id.hpp rename to projects/composablekernel/include/ck/utility/get_id.hpp diff --git a/composable_kernel/include/ck/utility/get_shift.hpp b/projects/composablekernel/include/ck/utility/get_shift.hpp similarity index 100% rename from composable_kernel/include/ck/utility/get_shift.hpp rename to projects/composablekernel/include/ck/utility/get_shift.hpp diff --git a/composable_kernel/include/ck/utility/ignore.hpp b/projects/composablekernel/include/ck/utility/ignore.hpp similarity index 100% rename from composable_kernel/include/ck/utility/ignore.hpp rename to projects/composablekernel/include/ck/utility/ignore.hpp diff --git a/composable_kernel/include/ck/utility/inner_product.hpp b/projects/composablekernel/include/ck/utility/inner_product.hpp similarity index 100% rename from composable_kernel/include/ck/utility/inner_product.hpp rename to projects/composablekernel/include/ck/utility/inner_product.hpp diff --git a/composable_kernel/include/ck/utility/inner_product_dpp8.hpp b/projects/composablekernel/include/ck/utility/inner_product_dpp8.hpp similarity index 100% rename from composable_kernel/include/ck/utility/inner_product_dpp8.hpp rename to projects/composablekernel/include/ck/utility/inner_product_dpp8.hpp diff --git a/composable_kernel/include/ck/utility/integral_constant.hpp b/projects/composablekernel/include/ck/utility/integral_constant.hpp similarity index 100% rename from composable_kernel/include/ck/utility/integral_constant.hpp rename to projects/composablekernel/include/ck/utility/integral_constant.hpp diff --git a/composable_kernel/include/ck/utility/is_detected.hpp b/projects/composablekernel/include/ck/utility/is_detected.hpp similarity index 100% rename from composable_kernel/include/ck/utility/is_detected.hpp rename to projects/composablekernel/include/ck/utility/is_detected.hpp diff --git a/composable_kernel/include/ck/utility/is_known_at_compile_time.hpp b/projects/composablekernel/include/ck/utility/is_known_at_compile_time.hpp similarity index 100% rename from composable_kernel/include/ck/utility/is_known_at_compile_time.hpp rename to projects/composablekernel/include/ck/utility/is_known_at_compile_time.hpp diff --git a/composable_kernel/include/ck/utility/loop_scheduler.hpp b/projects/composablekernel/include/ck/utility/loop_scheduler.hpp similarity index 100% rename from composable_kernel/include/ck/utility/loop_scheduler.hpp rename to projects/composablekernel/include/ck/utility/loop_scheduler.hpp diff --git a/composable_kernel/include/ck/utility/magic_division.hpp b/projects/composablekernel/include/ck/utility/magic_division.hpp similarity index 100% rename from composable_kernel/include/ck/utility/magic_division.hpp rename to projects/composablekernel/include/ck/utility/magic_division.hpp diff --git a/composable_kernel/include/ck/utility/math.hpp b/projects/composablekernel/include/ck/utility/math.hpp similarity index 100% rename from composable_kernel/include/ck/utility/math.hpp rename to projects/composablekernel/include/ck/utility/math.hpp diff --git a/composable_kernel/include/ck/utility/math_v2.hpp b/projects/composablekernel/include/ck/utility/math_v2.hpp similarity index 100% rename from composable_kernel/include/ck/utility/math_v2.hpp rename to projects/composablekernel/include/ck/utility/math_v2.hpp diff --git a/composable_kernel/include/ck/utility/multi_index.hpp b/projects/composablekernel/include/ck/utility/multi_index.hpp similarity index 100% rename from composable_kernel/include/ck/utility/multi_index.hpp rename to projects/composablekernel/include/ck/utility/multi_index.hpp diff --git a/composable_kernel/include/ck/utility/mxf4_utils.hpp b/projects/composablekernel/include/ck/utility/mxf4_utils.hpp similarity index 100% rename from composable_kernel/include/ck/utility/mxf4_utils.hpp rename to projects/composablekernel/include/ck/utility/mxf4_utils.hpp diff --git a/composable_kernel/include/ck/utility/mxf6_utils.hpp b/projects/composablekernel/include/ck/utility/mxf6_utils.hpp similarity index 100% rename from composable_kernel/include/ck/utility/mxf6_utils.hpp rename to projects/composablekernel/include/ck/utility/mxf6_utils.hpp diff --git a/composable_kernel/include/ck/utility/mxf8_utils.hpp b/projects/composablekernel/include/ck/utility/mxf8_utils.hpp similarity index 100% rename from composable_kernel/include/ck/utility/mxf8_utils.hpp rename to projects/composablekernel/include/ck/utility/mxf8_utils.hpp diff --git a/composable_kernel/include/ck/utility/mxfp_utils.hpp b/projects/composablekernel/include/ck/utility/mxfp_utils.hpp similarity index 100% rename from composable_kernel/include/ck/utility/mxfp_utils.hpp rename to projects/composablekernel/include/ck/utility/mxfp_utils.hpp diff --git a/composable_kernel/include/ck/utility/number.hpp b/projects/composablekernel/include/ck/utility/number.hpp similarity index 100% rename from composable_kernel/include/ck/utility/number.hpp rename to projects/composablekernel/include/ck/utility/number.hpp diff --git a/composable_kernel/include/ck/utility/numeric_limits.hpp b/projects/composablekernel/include/ck/utility/numeric_limits.hpp similarity index 100% rename from composable_kernel/include/ck/utility/numeric_limits.hpp rename to projects/composablekernel/include/ck/utility/numeric_limits.hpp diff --git a/composable_kernel/include/ck/utility/numeric_utils.hpp b/projects/composablekernel/include/ck/utility/numeric_utils.hpp similarity index 100% rename from composable_kernel/include/ck/utility/numeric_utils.hpp rename to projects/composablekernel/include/ck/utility/numeric_utils.hpp diff --git a/composable_kernel/include/ck/utility/random_gen.hpp b/projects/composablekernel/include/ck/utility/random_gen.hpp similarity index 100% rename from composable_kernel/include/ck/utility/random_gen.hpp rename to projects/composablekernel/include/ck/utility/random_gen.hpp diff --git a/composable_kernel/include/ck/utility/reduction_common.hpp b/projects/composablekernel/include/ck/utility/reduction_common.hpp similarity index 100% rename from composable_kernel/include/ck/utility/reduction_common.hpp rename to projects/composablekernel/include/ck/utility/reduction_common.hpp diff --git a/composable_kernel/include/ck/utility/reduction_enums.hpp b/projects/composablekernel/include/ck/utility/reduction_enums.hpp similarity index 100% rename from composable_kernel/include/ck/utility/reduction_enums.hpp rename to projects/composablekernel/include/ck/utility/reduction_enums.hpp diff --git a/composable_kernel/include/ck/utility/reduction_functions_accumulate.hpp b/projects/composablekernel/include/ck/utility/reduction_functions_accumulate.hpp similarity index 100% rename from composable_kernel/include/ck/utility/reduction_functions_accumulate.hpp rename to projects/composablekernel/include/ck/utility/reduction_functions_accumulate.hpp diff --git a/composable_kernel/include/ck/utility/reduction_operator.hpp b/projects/composablekernel/include/ck/utility/reduction_operator.hpp similarity index 100% rename from composable_kernel/include/ck/utility/reduction_operator.hpp rename to projects/composablekernel/include/ck/utility/reduction_operator.hpp diff --git a/composable_kernel/include/ck/utility/scaled_type_convert.hpp b/projects/composablekernel/include/ck/utility/scaled_type_convert.hpp similarity index 100% rename from composable_kernel/include/ck/utility/scaled_type_convert.hpp rename to projects/composablekernel/include/ck/utility/scaled_type_convert.hpp diff --git a/composable_kernel/include/ck/utility/sequence.hpp b/projects/composablekernel/include/ck/utility/sequence.hpp similarity index 100% rename from composable_kernel/include/ck/utility/sequence.hpp rename to projects/composablekernel/include/ck/utility/sequence.hpp diff --git a/composable_kernel/include/ck/utility/sequence_helper.hpp b/projects/composablekernel/include/ck/utility/sequence_helper.hpp similarity index 100% rename from composable_kernel/include/ck/utility/sequence_helper.hpp rename to projects/composablekernel/include/ck/utility/sequence_helper.hpp diff --git a/composable_kernel/include/ck/utility/span.hpp b/projects/composablekernel/include/ck/utility/span.hpp similarity index 100% rename from composable_kernel/include/ck/utility/span.hpp rename to projects/composablekernel/include/ck/utility/span.hpp diff --git a/composable_kernel/include/ck/utility/static_buffer.hpp b/projects/composablekernel/include/ck/utility/static_buffer.hpp similarity index 100% rename from composable_kernel/include/ck/utility/static_buffer.hpp rename to projects/composablekernel/include/ck/utility/static_buffer.hpp diff --git a/composable_kernel/include/ck/utility/statically_indexed_array.hpp b/projects/composablekernel/include/ck/utility/statically_indexed_array.hpp similarity index 100% rename from composable_kernel/include/ck/utility/statically_indexed_array.hpp rename to projects/composablekernel/include/ck/utility/statically_indexed_array.hpp diff --git a/composable_kernel/include/ck/utility/statically_indexed_array_multi_index.hpp b/projects/composablekernel/include/ck/utility/statically_indexed_array_multi_index.hpp similarity index 100% rename from composable_kernel/include/ck/utility/statically_indexed_array_multi_index.hpp rename to projects/composablekernel/include/ck/utility/statically_indexed_array_multi_index.hpp diff --git a/composable_kernel/include/ck/utility/synchronization.hpp b/projects/composablekernel/include/ck/utility/synchronization.hpp similarity index 100% rename from composable_kernel/include/ck/utility/synchronization.hpp rename to projects/composablekernel/include/ck/utility/synchronization.hpp diff --git a/composable_kernel/include/ck/utility/thread_group.hpp b/projects/composablekernel/include/ck/utility/thread_group.hpp similarity index 100% rename from composable_kernel/include/ck/utility/thread_group.hpp rename to projects/composablekernel/include/ck/utility/thread_group.hpp diff --git a/composable_kernel/include/ck/utility/transpose_vectors.hpp b/projects/composablekernel/include/ck/utility/transpose_vectors.hpp similarity index 100% rename from composable_kernel/include/ck/utility/transpose_vectors.hpp rename to projects/composablekernel/include/ck/utility/transpose_vectors.hpp diff --git a/composable_kernel/include/ck/utility/tuple.hpp b/projects/composablekernel/include/ck/utility/tuple.hpp similarity index 100% rename from composable_kernel/include/ck/utility/tuple.hpp rename to projects/composablekernel/include/ck/utility/tuple.hpp diff --git a/composable_kernel/include/ck/utility/tuple_helper.hpp b/projects/composablekernel/include/ck/utility/tuple_helper.hpp similarity index 100% rename from composable_kernel/include/ck/utility/tuple_helper.hpp rename to projects/composablekernel/include/ck/utility/tuple_helper.hpp diff --git a/composable_kernel/include/ck/utility/type.hpp b/projects/composablekernel/include/ck/utility/type.hpp similarity index 100% rename from composable_kernel/include/ck/utility/type.hpp rename to projects/composablekernel/include/ck/utility/type.hpp diff --git a/composable_kernel/include/ck/utility/type_convert.hpp b/projects/composablekernel/include/ck/utility/type_convert.hpp similarity index 100% rename from composable_kernel/include/ck/utility/type_convert.hpp rename to projects/composablekernel/include/ck/utility/type_convert.hpp diff --git a/composable_kernel/include/ck/utility/workgroup_barrier.hpp b/projects/composablekernel/include/ck/utility/workgroup_barrier.hpp similarity index 100% rename from composable_kernel/include/ck/utility/workgroup_barrier.hpp rename to projects/composablekernel/include/ck/utility/workgroup_barrier.hpp diff --git a/composable_kernel/include/ck/utility/workgroup_synchronization.hpp b/projects/composablekernel/include/ck/utility/workgroup_synchronization.hpp similarity index 100% rename from composable_kernel/include/ck/utility/workgroup_synchronization.hpp rename to projects/composablekernel/include/ck/utility/workgroup_synchronization.hpp diff --git a/composable_kernel/include/ck/version.h.in b/projects/composablekernel/include/ck/version.h.in similarity index 100% rename from composable_kernel/include/ck/version.h.in rename to projects/composablekernel/include/ck/version.h.in diff --git a/composable_kernel/include/ck/wrapper/layout.hpp b/projects/composablekernel/include/ck/wrapper/layout.hpp similarity index 100% rename from composable_kernel/include/ck/wrapper/layout.hpp rename to projects/composablekernel/include/ck/wrapper/layout.hpp diff --git a/composable_kernel/include/ck/wrapper/operations/copy.hpp b/projects/composablekernel/include/ck/wrapper/operations/copy.hpp similarity index 100% rename from composable_kernel/include/ck/wrapper/operations/copy.hpp rename to projects/composablekernel/include/ck/wrapper/operations/copy.hpp diff --git a/composable_kernel/include/ck/wrapper/operations/gemm.hpp b/projects/composablekernel/include/ck/wrapper/operations/gemm.hpp similarity index 100% rename from composable_kernel/include/ck/wrapper/operations/gemm.hpp rename to projects/composablekernel/include/ck/wrapper/operations/gemm.hpp diff --git a/composable_kernel/include/ck/wrapper/tensor.hpp b/projects/composablekernel/include/ck/wrapper/tensor.hpp similarity index 100% rename from composable_kernel/include/ck/wrapper/tensor.hpp rename to projects/composablekernel/include/ck/wrapper/tensor.hpp diff --git a/composable_kernel/include/ck/wrapper/traits/blockwise_gemm_xdl_traits.hpp b/projects/composablekernel/include/ck/wrapper/traits/blockwise_gemm_xdl_traits.hpp similarity index 100% rename from composable_kernel/include/ck/wrapper/traits/blockwise_gemm_xdl_traits.hpp rename to projects/composablekernel/include/ck/wrapper/traits/blockwise_gemm_xdl_traits.hpp diff --git a/composable_kernel/include/ck/wrapper/utils/kernel_utils.hpp b/projects/composablekernel/include/ck/wrapper/utils/kernel_utils.hpp similarity index 100% rename from composable_kernel/include/ck/wrapper/utils/kernel_utils.hpp rename to projects/composablekernel/include/ck/wrapper/utils/kernel_utils.hpp diff --git a/composable_kernel/include/ck/wrapper/utils/layout_utils.hpp b/projects/composablekernel/include/ck/wrapper/utils/layout_utils.hpp similarity index 100% rename from composable_kernel/include/ck/wrapper/utils/layout_utils.hpp rename to projects/composablekernel/include/ck/wrapper/utils/layout_utils.hpp diff --git a/composable_kernel/include/ck/wrapper/utils/tensor_partition.hpp b/projects/composablekernel/include/ck/wrapper/utils/tensor_partition.hpp similarity index 100% rename from composable_kernel/include/ck/wrapper/utils/tensor_partition.hpp rename to projects/composablekernel/include/ck/wrapper/utils/tensor_partition.hpp diff --git a/composable_kernel/include/ck/wrapper/utils/tensor_utils.hpp b/projects/composablekernel/include/ck/wrapper/utils/tensor_utils.hpp similarity index 100% rename from composable_kernel/include/ck/wrapper/utils/tensor_utils.hpp rename to projects/composablekernel/include/ck/wrapper/utils/tensor_utils.hpp diff --git a/composable_kernel/include/ck_tile/README.md b/projects/composablekernel/include/ck_tile/README.md similarity index 100% rename from composable_kernel/include/ck_tile/README.md rename to projects/composablekernel/include/ck_tile/README.md diff --git a/composable_kernel/include/ck_tile/core.hpp b/projects/composablekernel/include/ck_tile/core.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core.hpp rename to projects/composablekernel/include/ck_tile/core.hpp diff --git a/composable_kernel/include/ck_tile/core/README.md b/projects/composablekernel/include/ck_tile/core/README.md similarity index 100% rename from composable_kernel/include/ck_tile/core/README.md rename to projects/composablekernel/include/ck_tile/core/README.md diff --git a/composable_kernel/include/ck_tile/core/algorithm/cluster_descriptor.hpp b/projects/composablekernel/include/ck_tile/core/algorithm/cluster_descriptor.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/algorithm/cluster_descriptor.hpp rename to projects/composablekernel/include/ck_tile/core/algorithm/cluster_descriptor.hpp diff --git a/composable_kernel/include/ck_tile/core/algorithm/coordinate_transform.hpp b/projects/composablekernel/include/ck_tile/core/algorithm/coordinate_transform.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/algorithm/coordinate_transform.hpp rename to projects/composablekernel/include/ck_tile/core/algorithm/coordinate_transform.hpp diff --git a/composable_kernel/include/ck_tile/core/algorithm/indexing_adaptor.hpp b/projects/composablekernel/include/ck_tile/core/algorithm/indexing_adaptor.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/algorithm/indexing_adaptor.hpp rename to projects/composablekernel/include/ck_tile/core/algorithm/indexing_adaptor.hpp diff --git a/composable_kernel/include/ck_tile/core/algorithm/space_filling_curve.hpp b/projects/composablekernel/include/ck_tile/core/algorithm/space_filling_curve.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/algorithm/space_filling_curve.hpp rename to projects/composablekernel/include/ck_tile/core/algorithm/space_filling_curve.hpp diff --git a/composable_kernel/include/ck_tile/core/algorithm/static_encoding_pattern.hpp b/projects/composablekernel/include/ck_tile/core/algorithm/static_encoding_pattern.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/algorithm/static_encoding_pattern.hpp rename to projects/composablekernel/include/ck_tile/core/algorithm/static_encoding_pattern.hpp diff --git a/composable_kernel/include/ck_tile/core/arch/amd_buffer_addressing.hpp b/projects/composablekernel/include/ck_tile/core/arch/amd_buffer_addressing.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/arch/amd_buffer_addressing.hpp rename to projects/composablekernel/include/ck_tile/core/arch/amd_buffer_addressing.hpp diff --git a/composable_kernel/include/ck_tile/core/arch/amd_buffer_addressing_builtins.hpp b/projects/composablekernel/include/ck_tile/core/arch/amd_buffer_addressing_builtins.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/arch/amd_buffer_addressing_builtins.hpp rename to projects/composablekernel/include/ck_tile/core/arch/amd_buffer_addressing_builtins.hpp diff --git a/composable_kernel/include/ck_tile/core/arch/arch.hpp b/projects/composablekernel/include/ck_tile/core/arch/arch.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/arch/arch.hpp rename to projects/composablekernel/include/ck_tile/core/arch/arch.hpp diff --git a/composable_kernel/include/ck_tile/core/arch/generic_memory_space_atomic.hpp b/projects/composablekernel/include/ck_tile/core/arch/generic_memory_space_atomic.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/arch/generic_memory_space_atomic.hpp rename to projects/composablekernel/include/ck_tile/core/arch/generic_memory_space_atomic.hpp diff --git a/composable_kernel/include/ck_tile/core/arch/utility.hpp b/projects/composablekernel/include/ck_tile/core/arch/utility.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/arch/utility.hpp rename to projects/composablekernel/include/ck_tile/core/arch/utility.hpp diff --git a/composable_kernel/include/ck_tile/core/config.hpp b/projects/composablekernel/include/ck_tile/core/config.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/config.hpp rename to projects/composablekernel/include/ck_tile/core/config.hpp diff --git a/composable_kernel/include/ck_tile/core/container/array.hpp b/projects/composablekernel/include/ck_tile/core/container/array.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/container/array.hpp rename to projects/composablekernel/include/ck_tile/core/container/array.hpp diff --git a/composable_kernel/include/ck_tile/core/container/container_helper.hpp b/projects/composablekernel/include/ck_tile/core/container/container_helper.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/container/container_helper.hpp rename to projects/composablekernel/include/ck_tile/core/container/container_helper.hpp diff --git a/composable_kernel/include/ck_tile/core/container/map.hpp b/projects/composablekernel/include/ck_tile/core/container/map.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/container/map.hpp rename to projects/composablekernel/include/ck_tile/core/container/map.hpp diff --git a/composable_kernel/include/ck_tile/core/container/meta_data_buffer.hpp b/projects/composablekernel/include/ck_tile/core/container/meta_data_buffer.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/container/meta_data_buffer.hpp rename to projects/composablekernel/include/ck_tile/core/container/meta_data_buffer.hpp diff --git a/composable_kernel/include/ck_tile/core/container/multi_index.hpp b/projects/composablekernel/include/ck_tile/core/container/multi_index.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/container/multi_index.hpp rename to projects/composablekernel/include/ck_tile/core/container/multi_index.hpp diff --git a/composable_kernel/include/ck_tile/core/container/sequence.hpp b/projects/composablekernel/include/ck_tile/core/container/sequence.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/container/sequence.hpp rename to projects/composablekernel/include/ck_tile/core/container/sequence.hpp diff --git a/composable_kernel/include/ck_tile/core/container/span.hpp b/projects/composablekernel/include/ck_tile/core/container/span.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/container/span.hpp rename to projects/composablekernel/include/ck_tile/core/container/span.hpp diff --git a/composable_kernel/include/ck_tile/core/container/statically_indexed_array.hpp b/projects/composablekernel/include/ck_tile/core/container/statically_indexed_array.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/container/statically_indexed_array.hpp rename to projects/composablekernel/include/ck_tile/core/container/statically_indexed_array.hpp diff --git a/composable_kernel/include/ck_tile/core/container/thread_buffer.hpp b/projects/composablekernel/include/ck_tile/core/container/thread_buffer.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/container/thread_buffer.hpp rename to projects/composablekernel/include/ck_tile/core/container/thread_buffer.hpp diff --git a/composable_kernel/include/ck_tile/core/container/tuple.hpp b/projects/composablekernel/include/ck_tile/core/container/tuple.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/container/tuple.hpp rename to projects/composablekernel/include/ck_tile/core/container/tuple.hpp diff --git a/composable_kernel/include/ck_tile/core/numeric/bfloat16.hpp b/projects/composablekernel/include/ck_tile/core/numeric/bfloat16.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/numeric/bfloat16.hpp rename to projects/composablekernel/include/ck_tile/core/numeric/bfloat16.hpp diff --git a/composable_kernel/include/ck_tile/core/numeric/float8.hpp b/projects/composablekernel/include/ck_tile/core/numeric/float8.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/numeric/float8.hpp rename to projects/composablekernel/include/ck_tile/core/numeric/float8.hpp diff --git a/composable_kernel/include/ck_tile/core/numeric/half.hpp b/projects/composablekernel/include/ck_tile/core/numeric/half.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/numeric/half.hpp rename to projects/composablekernel/include/ck_tile/core/numeric/half.hpp diff --git a/composable_kernel/include/ck_tile/core/numeric/int8.hpp b/projects/composablekernel/include/ck_tile/core/numeric/int8.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/numeric/int8.hpp rename to projects/composablekernel/include/ck_tile/core/numeric/int8.hpp diff --git a/composable_kernel/include/ck_tile/core/numeric/integer.hpp b/projects/composablekernel/include/ck_tile/core/numeric/integer.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/numeric/integer.hpp rename to projects/composablekernel/include/ck_tile/core/numeric/integer.hpp diff --git a/composable_kernel/include/ck_tile/core/numeric/integral_constant.hpp b/projects/composablekernel/include/ck_tile/core/numeric/integral_constant.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/numeric/integral_constant.hpp rename to projects/composablekernel/include/ck_tile/core/numeric/integral_constant.hpp diff --git a/composable_kernel/include/ck_tile/core/numeric/math.hpp b/projects/composablekernel/include/ck_tile/core/numeric/math.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/numeric/math.hpp rename to projects/composablekernel/include/ck_tile/core/numeric/math.hpp diff --git a/composable_kernel/include/ck_tile/core/numeric/null_type.hpp b/projects/composablekernel/include/ck_tile/core/numeric/null_type.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/numeric/null_type.hpp rename to projects/composablekernel/include/ck_tile/core/numeric/null_type.hpp diff --git a/composable_kernel/include/ck_tile/core/numeric/numeric.hpp b/projects/composablekernel/include/ck_tile/core/numeric/numeric.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/numeric/numeric.hpp rename to projects/composablekernel/include/ck_tile/core/numeric/numeric.hpp diff --git a/composable_kernel/include/ck_tile/core/numeric/pk_int4.hpp b/projects/composablekernel/include/ck_tile/core/numeric/pk_int4.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/numeric/pk_int4.hpp rename to projects/composablekernel/include/ck_tile/core/numeric/pk_int4.hpp diff --git a/composable_kernel/include/ck_tile/core/numeric/type_convert.hpp b/projects/composablekernel/include/ck_tile/core/numeric/type_convert.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/numeric/type_convert.hpp rename to projects/composablekernel/include/ck_tile/core/numeric/type_convert.hpp diff --git a/composable_kernel/include/ck_tile/core/numeric/vector_type.hpp b/projects/composablekernel/include/ck_tile/core/numeric/vector_type.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/numeric/vector_type.hpp rename to projects/composablekernel/include/ck_tile/core/numeric/vector_type.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/buffer_view.hpp b/projects/composablekernel/include/ck_tile/core/tensor/buffer_view.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/buffer_view.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/buffer_view.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/load_tile.hpp b/projects/composablekernel/include/ck_tile/core/tensor/load_tile.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/load_tile.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/load_tile.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/null_tensor.hpp b/projects/composablekernel/include/ck_tile/core/tensor/null_tensor.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/null_tensor.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/null_tensor.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/null_tile_window.hpp b/projects/composablekernel/include/ck_tile/core/tensor/null_tile_window.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/null_tile_window.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/null_tile_window.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/shuffle_tile.hpp b/projects/composablekernel/include/ck_tile/core/tensor/shuffle_tile.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/shuffle_tile.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/shuffle_tile.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/slice_tile.hpp b/projects/composablekernel/include/ck_tile/core/tensor/slice_tile.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/slice_tile.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/slice_tile.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/static_distributed_tensor.hpp b/projects/composablekernel/include/ck_tile/core/tensor/static_distributed_tensor.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/static_distributed_tensor.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/static_distributed_tensor.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/store_tile.hpp b/projects/composablekernel/include/ck_tile/core/tensor/store_tile.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/store_tile.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/store_tile.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/sweep_tile.hpp b/projects/composablekernel/include/ck_tile/core/tensor/sweep_tile.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/sweep_tile.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/sweep_tile.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/tensor_adaptor.hpp b/projects/composablekernel/include/ck_tile/core/tensor/tensor_adaptor.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/tensor_adaptor.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/tensor_adaptor.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/tensor_adaptor_coordinate.hpp b/projects/composablekernel/include/ck_tile/core/tensor/tensor_adaptor_coordinate.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/tensor_adaptor_coordinate.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/tensor_adaptor_coordinate.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/tensor_coordinate.hpp b/projects/composablekernel/include/ck_tile/core/tensor/tensor_coordinate.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/tensor_coordinate.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/tensor_coordinate.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/tensor_descriptor.hpp b/projects/composablekernel/include/ck_tile/core/tensor/tensor_descriptor.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/tensor_descriptor.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/tensor_descriptor.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/tensor_view.hpp b/projects/composablekernel/include/ck_tile/core/tensor/tensor_view.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/tensor_view.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/tensor_view.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/tile_distribution.hpp b/projects/composablekernel/include/ck_tile/core/tensor/tile_distribution.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/tile_distribution.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/tile_distribution.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/tile_distribution_encoding.hpp b/projects/composablekernel/include/ck_tile/core/tensor/tile_distribution_encoding.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/tile_distribution_encoding.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/tile_distribution_encoding.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/tile_elementwise.hpp b/projects/composablekernel/include/ck_tile/core/tensor/tile_elementwise.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/tile_elementwise.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/tile_elementwise.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/tile_window.hpp b/projects/composablekernel/include/ck_tile/core/tensor/tile_window.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/tile_window.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/tile_window.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/tile_window_linear.hpp b/projects/composablekernel/include/ck_tile/core/tensor/tile_window_linear.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/tile_window_linear.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/tile_window_linear.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/tile_window_utils.hpp b/projects/composablekernel/include/ck_tile/core/tensor/tile_window_utils.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/tile_window_utils.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/tile_window_utils.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/transpose_tile.hpp b/projects/composablekernel/include/ck_tile/core/tensor/transpose_tile.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/transpose_tile.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/transpose_tile.hpp diff --git a/composable_kernel/include/ck_tile/core/tensor/update_tile.hpp b/projects/composablekernel/include/ck_tile/core/tensor/update_tile.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/tensor/update_tile.hpp rename to projects/composablekernel/include/ck_tile/core/tensor/update_tile.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/bit_cast.hpp b/projects/composablekernel/include/ck_tile/core/utility/bit_cast.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/bit_cast.hpp rename to projects/composablekernel/include/ck_tile/core/utility/bit_cast.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/env.hpp b/projects/composablekernel/include/ck_tile/core/utility/env.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/env.hpp rename to projects/composablekernel/include/ck_tile/core/utility/env.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/functional.hpp b/projects/composablekernel/include/ck_tile/core/utility/functional.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/functional.hpp rename to projects/composablekernel/include/ck_tile/core/utility/functional.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/functional_with_tuple.hpp b/projects/composablekernel/include/ck_tile/core/utility/functional_with_tuple.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/functional_with_tuple.hpp rename to projects/composablekernel/include/ck_tile/core/utility/functional_with_tuple.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/ignore.hpp b/projects/composablekernel/include/ck_tile/core/utility/ignore.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/ignore.hpp rename to projects/composablekernel/include/ck_tile/core/utility/ignore.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/literals.hpp b/projects/composablekernel/include/ck_tile/core/utility/literals.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/literals.hpp rename to projects/composablekernel/include/ck_tile/core/utility/literals.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/magic_div.hpp b/projects/composablekernel/include/ck_tile/core/utility/magic_div.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/magic_div.hpp rename to projects/composablekernel/include/ck_tile/core/utility/magic_div.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/philox_rand.hpp b/projects/composablekernel/include/ck_tile/core/utility/philox_rand.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/philox_rand.hpp rename to projects/composablekernel/include/ck_tile/core/utility/philox_rand.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/random.hpp b/projects/composablekernel/include/ck_tile/core/utility/random.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/random.hpp rename to projects/composablekernel/include/ck_tile/core/utility/random.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/reduce_operator.hpp b/projects/composablekernel/include/ck_tile/core/utility/reduce_operator.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/reduce_operator.hpp rename to projects/composablekernel/include/ck_tile/core/utility/reduce_operator.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/static_counter.hpp b/projects/composablekernel/include/ck_tile/core/utility/static_counter.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/static_counter.hpp rename to projects/composablekernel/include/ck_tile/core/utility/static_counter.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/to_sequence.hpp b/projects/composablekernel/include/ck_tile/core/utility/to_sequence.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/to_sequence.hpp rename to projects/composablekernel/include/ck_tile/core/utility/to_sequence.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/transpose_vectors.hpp b/projects/composablekernel/include/ck_tile/core/utility/transpose_vectors.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/transpose_vectors.hpp rename to projects/composablekernel/include/ck_tile/core/utility/transpose_vectors.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/type_traits.hpp b/projects/composablekernel/include/ck_tile/core/utility/type_traits.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/type_traits.hpp rename to projects/composablekernel/include/ck_tile/core/utility/type_traits.hpp diff --git a/composable_kernel/include/ck_tile/core/utility/unary_element_function.hpp b/projects/composablekernel/include/ck_tile/core/utility/unary_element_function.hpp similarity index 100% rename from composable_kernel/include/ck_tile/core/utility/unary_element_function.hpp rename to projects/composablekernel/include/ck_tile/core/utility/unary_element_function.hpp diff --git a/composable_kernel/include/ck_tile/host.hpp b/projects/composablekernel/include/ck_tile/host.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host.hpp rename to projects/composablekernel/include/ck_tile/host.hpp diff --git a/composable_kernel/include/ck_tile/host/arg_parser.hpp b/projects/composablekernel/include/ck_tile/host/arg_parser.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/arg_parser.hpp rename to projects/composablekernel/include/ck_tile/host/arg_parser.hpp diff --git a/composable_kernel/include/ck_tile/host/check_err.hpp b/projects/composablekernel/include/ck_tile/host/check_err.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/check_err.hpp rename to projects/composablekernel/include/ck_tile/host/check_err.hpp diff --git a/composable_kernel/include/ck_tile/host/concat.hpp b/projects/composablekernel/include/ck_tile/host/concat.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/concat.hpp rename to projects/composablekernel/include/ck_tile/host/concat.hpp diff --git a/composable_kernel/include/ck_tile/host/convolution_host_tensor_descriptor_helper.hpp b/projects/composablekernel/include/ck_tile/host/convolution_host_tensor_descriptor_helper.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/convolution_host_tensor_descriptor_helper.hpp rename to projects/composablekernel/include/ck_tile/host/convolution_host_tensor_descriptor_helper.hpp diff --git a/composable_kernel/include/ck_tile/host/convolution_parameter.hpp b/projects/composablekernel/include/ck_tile/host/convolution_parameter.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/convolution_parameter.hpp rename to projects/composablekernel/include/ck_tile/host/convolution_parameter.hpp diff --git a/composable_kernel/include/ck_tile/host/device_memory.hpp b/projects/composablekernel/include/ck_tile/host/device_memory.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/device_memory.hpp rename to projects/composablekernel/include/ck_tile/host/device_memory.hpp diff --git a/composable_kernel/include/ck_tile/host/fill.hpp b/projects/composablekernel/include/ck_tile/host/fill.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/fill.hpp rename to projects/composablekernel/include/ck_tile/host/fill.hpp diff --git a/composable_kernel/include/ck_tile/host/hip_check_error.hpp b/projects/composablekernel/include/ck_tile/host/hip_check_error.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/hip_check_error.hpp rename to projects/composablekernel/include/ck_tile/host/hip_check_error.hpp diff --git a/composable_kernel/include/ck_tile/host/host_tensor.hpp b/projects/composablekernel/include/ck_tile/host/host_tensor.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/host_tensor.hpp rename to projects/composablekernel/include/ck_tile/host/host_tensor.hpp diff --git a/composable_kernel/include/ck_tile/host/joinable_thread.hpp b/projects/composablekernel/include/ck_tile/host/joinable_thread.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/joinable_thread.hpp rename to projects/composablekernel/include/ck_tile/host/joinable_thread.hpp diff --git a/composable_kernel/include/ck_tile/host/kernel_launch.hpp b/projects/composablekernel/include/ck_tile/host/kernel_launch.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/kernel_launch.hpp rename to projects/composablekernel/include/ck_tile/host/kernel_launch.hpp diff --git a/composable_kernel/include/ck_tile/host/ranges.hpp b/projects/composablekernel/include/ck_tile/host/ranges.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/ranges.hpp rename to projects/composablekernel/include/ck_tile/host/ranges.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_batched_dropout.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_batched_dropout.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_batched_dropout.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_batched_dropout.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_batched_elementwise.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_batched_elementwise.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_batched_elementwise.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_batched_elementwise.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_batched_gemm.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_batched_gemm.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_batched_gemm.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_batched_gemm.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_batched_masking.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_batched_masking.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_batched_masking.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_batched_masking.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_batched_rotary_position_embedding.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_batched_rotary_position_embedding.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_batched_rotary_position_embedding.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_batched_rotary_position_embedding.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_batched_softmax.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_batched_softmax.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_batched_softmax.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_batched_softmax.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_batched_transpose.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_batched_transpose.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_batched_transpose.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_batched_transpose.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_elementwise.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_elementwise.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_elementwise.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_elementwise.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_fused_moe.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_fused_moe.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_fused_moe.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_fused_moe.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_gemm.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_gemm.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_gemm.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_gemm.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_im2col.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_im2col.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_im2col.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_im2col.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_layernorm2d_fwd.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_layernorm2d_fwd.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_layernorm2d_fwd.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_layernorm2d_fwd.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_moe_sorting.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_moe_sorting.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_moe_sorting.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_moe_sorting.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_permute.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_permute.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_permute.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_permute.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_reduce.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_reduce.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_reduce.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_reduce.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_rmsnorm2d_fwd.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_rmsnorm2d_fwd.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_rmsnorm2d_fwd.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_rmsnorm2d_fwd.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_rowwise_quantization2d.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_rowwise_quantization2d.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_rowwise_quantization2d.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_rowwise_quantization2d.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_softmax.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_softmax.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_softmax.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_softmax.hpp diff --git a/composable_kernel/include/ck_tile/host/reference/reference_topk.hpp b/projects/composablekernel/include/ck_tile/host/reference/reference_topk.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/reference/reference_topk.hpp rename to projects/composablekernel/include/ck_tile/host/reference/reference_topk.hpp diff --git a/composable_kernel/include/ck_tile/host/stream_config.hpp b/projects/composablekernel/include/ck_tile/host/stream_config.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/stream_config.hpp rename to projects/composablekernel/include/ck_tile/host/stream_config.hpp diff --git a/composable_kernel/include/ck_tile/host/timer.hpp b/projects/composablekernel/include/ck_tile/host/timer.hpp similarity index 100% rename from composable_kernel/include/ck_tile/host/timer.hpp rename to projects/composablekernel/include/ck_tile/host/timer.hpp diff --git a/composable_kernel/include/ck_tile/ops/add_rmsnorm2d_rdquant.hpp b/projects/composablekernel/include/ck_tile/ops/add_rmsnorm2d_rdquant.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/add_rmsnorm2d_rdquant.hpp rename to projects/composablekernel/include/ck_tile/ops/add_rmsnorm2d_rdquant.hpp diff --git a/composable_kernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/kernel/add_rmsnorm2d_rdquant_fwd_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/kernel/add_rmsnorm2d_rdquant_fwd_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/kernel/add_rmsnorm2d_rdquant_fwd_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/kernel/add_rmsnorm2d_rdquant_fwd_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_one_pass.hpp b/projects/composablekernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_one_pass.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_one_pass.hpp rename to projects/composablekernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_one_pass.hpp diff --git a/composable_kernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_problem.hpp b/projects/composablekernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_three_pass.hpp b/projects/composablekernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_three_pass.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_three_pass.hpp rename to projects/composablekernel/include/ck_tile/ops/add_rmsnorm2d_rdquant/pipeline/add_rmsnorm2d_rdquant_fwd_pipeline_three_pass.hpp diff --git a/composable_kernel/include/ck_tile/ops/batched_transpose.hpp b/projects/composablekernel/include/ck_tile/ops/batched_transpose.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/batched_transpose.hpp rename to projects/composablekernel/include/ck_tile/ops/batched_transpose.hpp diff --git a/composable_kernel/include/ck_tile/ops/batched_transpose/kernel/batched_transpose_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/batched_transpose/kernel/batched_transpose_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/batched_transpose/kernel/batched_transpose_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/batched_transpose/kernel/batched_transpose_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/batched_transpose/pipeline/batched_transpose_pipeline.hpp b/projects/composablekernel/include/ck_tile/ops/batched_transpose/pipeline/batched_transpose_pipeline.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/batched_transpose/pipeline/batched_transpose_pipeline.hpp rename to projects/composablekernel/include/ck_tile/ops/batched_transpose/pipeline/batched_transpose_pipeline.hpp diff --git a/composable_kernel/include/ck_tile/ops/batched_transpose/pipeline/batched_transpose_policy.hpp b/projects/composablekernel/include/ck_tile/ops/batched_transpose/pipeline/batched_transpose_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/batched_transpose/pipeline/batched_transpose_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/batched_transpose/pipeline/batched_transpose_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/batched_transpose/pipeline/batched_transpose_problem.hpp b/projects/composablekernel/include/ck_tile/ops/batched_transpose/pipeline/batched_transpose_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/batched_transpose/pipeline/batched_transpose_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/batched_transpose/pipeline/batched_transpose_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/common.hpp b/projects/composablekernel/include/ck_tile/ops/common.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/common.hpp rename to projects/composablekernel/include/ck_tile/ops/common.hpp diff --git a/composable_kernel/include/ck_tile/ops/common/README.md b/projects/composablekernel/include/ck_tile/ops/common/README.md similarity index 100% rename from composable_kernel/include/ck_tile/ops/common/README.md rename to projects/composablekernel/include/ck_tile/ops/common/README.md diff --git a/composable_kernel/include/ck_tile/ops/common/generic_2d_block_shape.hpp b/projects/composablekernel/include/ck_tile/ops/common/generic_2d_block_shape.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/common/generic_2d_block_shape.hpp rename to projects/composablekernel/include/ck_tile/ops/common/generic_2d_block_shape.hpp diff --git a/composable_kernel/include/ck_tile/ops/common/tensor_layout.hpp b/projects/composablekernel/include/ck_tile/ops/common/tensor_layout.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/common/tensor_layout.hpp rename to projects/composablekernel/include/ck_tile/ops/common/tensor_layout.hpp diff --git a/composable_kernel/include/ck_tile/ops/common/utils.hpp b/projects/composablekernel/include/ck_tile/ops/common/utils.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/common/utils.hpp rename to projects/composablekernel/include/ck_tile/ops/common/utils.hpp diff --git a/composable_kernel/include/ck_tile/ops/elementwise.hpp b/projects/composablekernel/include/ck_tile/ops/elementwise.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/elementwise.hpp rename to projects/composablekernel/include/ck_tile/ops/elementwise.hpp diff --git a/composable_kernel/include/ck_tile/ops/elementwise/unary_element_wise_operation.hpp b/projects/composablekernel/include/ck_tile/ops/elementwise/unary_element_wise_operation.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/elementwise/unary_element_wise_operation.hpp rename to projects/composablekernel/include/ck_tile/ops/elementwise/unary_element_wise_operation.hpp diff --git a/composable_kernel/include/ck_tile/ops/epilogue.hpp b/projects/composablekernel/include/ck_tile/ops/epilogue.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/epilogue.hpp rename to projects/composablekernel/include/ck_tile/ops/epilogue.hpp diff --git a/composable_kernel/include/ck_tile/ops/epilogue/cshuffle_epilogue.hpp b/projects/composablekernel/include/ck_tile/ops/epilogue/cshuffle_epilogue.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/epilogue/cshuffle_epilogue.hpp rename to projects/composablekernel/include/ck_tile/ops/epilogue/cshuffle_epilogue.hpp diff --git a/composable_kernel/include/ck_tile/ops/epilogue/default_2d_and_dynamic_quant_epilogue.hpp b/projects/composablekernel/include/ck_tile/ops/epilogue/default_2d_and_dynamic_quant_epilogue.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/epilogue/default_2d_and_dynamic_quant_epilogue.hpp rename to projects/composablekernel/include/ck_tile/ops/epilogue/default_2d_and_dynamic_quant_epilogue.hpp diff --git a/composable_kernel/include/ck_tile/ops/epilogue/default_2d_epilogue.hpp b/projects/composablekernel/include/ck_tile/ops/epilogue/default_2d_epilogue.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/epilogue/default_2d_epilogue.hpp rename to projects/composablekernel/include/ck_tile/ops/epilogue/default_2d_epilogue.hpp diff --git a/composable_kernel/include/ck_tile/ops/epilogue/dynamic_quant_epilogue.hpp b/projects/composablekernel/include/ck_tile/ops/epilogue/dynamic_quant_epilogue.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/epilogue/dynamic_quant_epilogue.hpp rename to projects/composablekernel/include/ck_tile/ops/epilogue/dynamic_quant_epilogue.hpp diff --git a/composable_kernel/include/ck_tile/ops/flatmm.hpp b/projects/composablekernel/include/ck_tile/ops/flatmm.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm.hpp rename to projects/composablekernel/include/ck_tile/ops/flatmm.hpp diff --git a/composable_kernel/include/ck_tile/ops/flatmm/block/block_flatmm_asmem_bsmem_creg_v1.hpp b/projects/composablekernel/include/ck_tile/ops/flatmm/block/block_flatmm_asmem_bsmem_creg_v1.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/block/block_flatmm_asmem_bsmem_creg_v1.hpp rename to projects/composablekernel/include/ck_tile/ops/flatmm/block/block_flatmm_asmem_bsmem_creg_v1.hpp diff --git a/composable_kernel/include/ck_tile/ops/flatmm/block/block_flatmm_asmem_bsmem_creg_v1_custom_policy.hpp b/projects/composablekernel/include/ck_tile/ops/flatmm/block/block_flatmm_asmem_bsmem_creg_v1_custom_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/block/block_flatmm_asmem_bsmem_creg_v1_custom_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/flatmm/block/block_flatmm_asmem_bsmem_creg_v1_custom_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/flatmm/block/flatmm_32x512x128_1x4x1_16x16x32.hpp b/projects/composablekernel/include/ck_tile/ops/flatmm/block/flatmm_32x512x128_1x4x1_16x16x32.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/block/flatmm_32x512x128_1x4x1_16x16x32.hpp rename to projects/composablekernel/include/ck_tile/ops/flatmm/block/flatmm_32x512x128_1x4x1_16x16x32.hpp diff --git a/composable_kernel/include/ck_tile/ops/flatmm/block/flatmm_sn_32x128x512_1x4x1_16x16x32.hpp b/projects/composablekernel/include/ck_tile/ops/flatmm/block/flatmm_sn_32x128x512_1x4x1_16x16x32.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/block/flatmm_sn_32x128x512_1x4x1_16x16x32.hpp rename to projects/composablekernel/include/ck_tile/ops/flatmm/block/flatmm_sn_32x128x512_1x4x1_16x16x32.hpp diff --git a/composable_kernel/include/ck_tile/ops/flatmm/block/flatmm_sn_32x128x512_1x4x1_16x16x32_itl.hpp b/projects/composablekernel/include/ck_tile/ops/flatmm/block/flatmm_sn_32x128x512_1x4x1_16x16x32_itl.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/block/flatmm_sn_32x128x512_1x4x1_16x16x32_itl.hpp rename to projects/composablekernel/include/ck_tile/ops/flatmm/block/flatmm_sn_32x128x512_1x4x1_16x16x32_itl.hpp diff --git a/composable_kernel/include/ck_tile/ops/flatmm/block/flatmm_uk_config.hpp b/projects/composablekernel/include/ck_tile/ops/flatmm/block/flatmm_uk_config.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/block/flatmm_uk_config.hpp rename to projects/composablekernel/include/ck_tile/ops/flatmm/block/flatmm_uk_config.hpp diff --git a/composable_kernel/include/ck_tile/ops/flatmm/block/uk/README.md b/projects/composablekernel/include/ck_tile/ops/flatmm/block/uk/README.md similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/block/uk/README.md rename to projects/composablekernel/include/ck_tile/ops/flatmm/block/uk/README.md diff --git a/composable_kernel/include/ck_tile/ops/flatmm/block/uk/flatmm_sn_uk_gfx9_32x128x512_1x4x1_16x16x16.inc b/projects/composablekernel/include/ck_tile/ops/flatmm/block/uk/flatmm_sn_uk_gfx9_32x128x512_1x4x1_16x16x16.inc similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/block/uk/flatmm_sn_uk_gfx9_32x128x512_1x4x1_16x16x16.inc rename to projects/composablekernel/include/ck_tile/ops/flatmm/block/uk/flatmm_sn_uk_gfx9_32x128x512_1x4x1_16x16x16.inc diff --git a/composable_kernel/include/ck_tile/ops/flatmm/block/uk/flatmm_sn_uk_gfx9_32x128x512_1x4x1_16x16x16_itl.inc b/projects/composablekernel/include/ck_tile/ops/flatmm/block/uk/flatmm_sn_uk_gfx9_32x128x512_1x4x1_16x16x16_itl.inc similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/block/uk/flatmm_sn_uk_gfx9_32x128x512_1x4x1_16x16x16_itl.inc rename to projects/composablekernel/include/ck_tile/ops/flatmm/block/uk/flatmm_sn_uk_gfx9_32x128x512_1x4x1_16x16x16_itl.inc diff --git a/composable_kernel/include/ck_tile/ops/flatmm/block/uk/flatmm_uk_gfx9_32x512x128_1x1x1_16x16x16.inc b/projects/composablekernel/include/ck_tile/ops/flatmm/block/uk/flatmm_uk_gfx9_32x512x128_1x1x1_16x16x16.inc similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/block/uk/flatmm_uk_gfx9_32x512x128_1x1x1_16x16x16.inc rename to projects/composablekernel/include/ck_tile/ops/flatmm/block/uk/flatmm_uk_gfx9_32x512x128_1x1x1_16x16x16.inc diff --git a/composable_kernel/include/ck_tile/ops/flatmm/kernel/flatmm_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/flatmm/kernel/flatmm_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/kernel/flatmm_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/flatmm/kernel/flatmm_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp b/projects/composablekernel/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp rename to projects/composablekernel/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1.hpp diff --git a/composable_kernel/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1_policy.hpp b/projects/composablekernel/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/flatmm/pipeline/flatmm_pipeline_agmem_bgmem_creg_v1_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/flatmm/pipeline/tile_flatmm_shape.hpp b/projects/composablekernel/include/ck_tile/ops/flatmm/pipeline/tile_flatmm_shape.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/flatmm/pipeline/tile_flatmm_shape.hpp rename to projects/composablekernel/include/ck_tile/ops/flatmm/pipeline/tile_flatmm_shape.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha.hpp b/projects/composablekernel/include/ck_tile/ops/fmha.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/block/block_attention_bias_enum.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/block/block_attention_bias_enum.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/block/block_attention_bias_enum.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/block/block_attention_bias_enum.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/block/block_dropout.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/block/block_dropout.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/block/block_dropout.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/block/block_dropout.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/block/block_masking.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/block/block_masking.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/block/block_masking.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/block/block_masking.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/block/block_position_encoding.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/block/block_position_encoding.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/block/block_position_encoding.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/block/block_position_encoding.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/block/block_rotary_embedding.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/block/block_rotary_embedding.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/block/block_rotary_embedding.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/block/block_rotary_embedding.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/block/page_block_navigator.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/block/page_block_navigator.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/block/page_block_navigator.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/block/page_block_navigator.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/kernel/fmha_bwd_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/kernel/fmha_bwd_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/kernel/fmha_bwd_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/kernel/fmha_bwd_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_appendkv_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_appendkv_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_appendkv_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_appendkv_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_appendkv_tile_partitioner.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_appendkv_tile_partitioner.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_appendkv_tile_partitioner.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_appendkv_tile_partitioner.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_splitkv_combine_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_splitkv_combine_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_splitkv_combine_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_splitkv_combine_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_splitkv_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_splitkv_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_splitkv_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/kernel/fmha_fwd_splitkv_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_convert_dq.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_convert_dq.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_convert_dq.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_convert_dq.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_dot_do_o.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_dot_do_o.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_dot_do_o.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_dot_do_o.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_dq_dk_dv_pipeline_kr_ktr_vr.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_dq_dk_dv_pipeline_kr_ktr_vr.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_dq_dk_dv_pipeline_kr_ktr_vr.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_dq_dk_dv_pipeline_kr_ktr_vr.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_dq_dk_dv_pipeline_kr_ktr_vr_iglp.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_dq_dk_dv_pipeline_kr_ktr_vr_iglp.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_dq_dk_dv_pipeline_kr_ktr_vr_iglp.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_dq_dk_dv_pipeline_kr_ktr_vr_iglp.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_pipeline_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_pipeline_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_pipeline_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_pipeline_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_pipeline_enum.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_pipeline_enum.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_pipeline_enum.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_pipeline_enum.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_pipeline_problem.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_pipeline_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_pipeline_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_bwd_pipeline_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_appendkv_pipeline.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_appendkv_pipeline.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_appendkv_pipeline.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_appendkv_pipeline.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_appendkv_pipeline_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_appendkv_pipeline_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_appendkv_pipeline_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_appendkv_pipeline_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_combine_pipeline.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_combine_pipeline.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_combine_pipeline.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_combine_pipeline.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_combine_pipeline_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_combine_pipeline_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_combine_pipeline_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_combine_pipeline_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_nwarp_sshuffle_qr_ks_vs.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_nwarp_sshuffle_qr_ks_vs.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_nwarp_sshuffle_qr_ks_vs.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_nwarp_sshuffle_qr_ks_vs.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_nwarp_sshuffle_qr_ks_vs_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_nwarp_sshuffle_qr_ks_vs_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_nwarp_sshuffle_qr_ks_vs_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_nwarp_sshuffle_qr_ks_vs_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_qr_ks_vs.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_qr_ks_vs.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_qr_ks_vs.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_qr_ks_vs.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_qr_ks_vs_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_qr_ks_vs_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_qr_ks_vs_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_fwd_splitkv_pipeline_qr_ks_vs_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_enum.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_enum.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_enum.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_enum.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_problem.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_async.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_async.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_async.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_async.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_async_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_async_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_async_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_async_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_fp8.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_fp8.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_fp8.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_fp8.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_whole_k_prefetch.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_whole_k_prefetch.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_whole_k_prefetch.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_whole_k_prefetch.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_whole_k_prefetch_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_whole_k_prefetch_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_whole_k_prefetch_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qr_ks_vs_whole_k_prefetch_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qs_ks_vs.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qs_ks_vs.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qs_ks_vs.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qs_ks_vs.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qs_ks_vs_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qs_ks_vs_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qs_ks_vs_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qs_ks_vs_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qx_ks_vs_custom_policy.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qx_ks_vs_custom_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qx_ks_vs_custom_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/block_fmha_pipeline_qx_ks_vs_custom_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/tile_fmha_shape.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/tile_fmha_shape.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/tile_fmha_shape.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/tile_fmha_shape.hpp diff --git a/composable_kernel/include/ck_tile/ops/fmha/pipeline/tile_fmha_traits.hpp b/projects/composablekernel/include/ck_tile/ops/fmha/pipeline/tile_fmha_traits.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fmha/pipeline/tile_fmha_traits.hpp rename to projects/composablekernel/include/ck_tile/ops/fmha/pipeline/tile_fmha_traits.hpp diff --git a/composable_kernel/include/ck_tile/ops/fused_moe.hpp b/projects/composablekernel/include/ck_tile/ops/fused_moe.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fused_moe.hpp rename to projects/composablekernel/include/ck_tile/ops/fused_moe.hpp diff --git a/composable_kernel/include/ck_tile/ops/fused_moe/kernel/fused_moegemm_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/fused_moe/kernel/fused_moegemm_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fused_moe/kernel/fused_moegemm_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/fused_moe/kernel/fused_moegemm_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/fused_moe/kernel/fused_moegemm_shape.hpp b/projects/composablekernel/include/ck_tile/ops/fused_moe/kernel/fused_moegemm_shape.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fused_moe/kernel/fused_moegemm_shape.hpp rename to projects/composablekernel/include/ck_tile/ops/fused_moe/kernel/fused_moegemm_shape.hpp diff --git a/composable_kernel/include/ck_tile/ops/fused_moe/kernel/fused_moegemm_tile_partitioner.hpp b/projects/composablekernel/include/ck_tile/ops/fused_moe/kernel/fused_moegemm_tile_partitioner.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fused_moe/kernel/fused_moegemm_tile_partitioner.hpp rename to projects/composablekernel/include/ck_tile/ops/fused_moe/kernel/fused_moegemm_tile_partitioner.hpp diff --git a/composable_kernel/include/ck_tile/ops/fused_moe/kernel/moe_sorting_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/fused_moe/kernel/moe_sorting_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fused_moe/kernel/moe_sorting_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/fused_moe/kernel/moe_sorting_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/fused_moe/kernel/moe_sorting_problem.hpp b/projects/composablekernel/include/ck_tile/ops/fused_moe/kernel/moe_sorting_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fused_moe/kernel/moe_sorting_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/fused_moe/kernel/moe_sorting_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_ex.hpp b/projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_ex.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_ex.hpp rename to projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_ex.hpp diff --git a/composable_kernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_policy.hpp b/projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_uk.hpp b/projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_uk.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_uk.hpp rename to projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_flatmm_uk.hpp diff --git a/composable_kernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_problem.hpp b/projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_pipeline_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_traits.hpp b/projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_traits.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_traits.hpp rename to projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/fused_moegemm_traits.hpp diff --git a/composable_kernel/include/ck_tile/ops/fused_moe/pipeline/moe_sorting_pipeline.hpp b/projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/moe_sorting_pipeline.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fused_moe/pipeline/moe_sorting_pipeline.hpp rename to projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/moe_sorting_pipeline.hpp diff --git a/composable_kernel/include/ck_tile/ops/fused_moe/pipeline/moe_sorting_policy.hpp b/projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/moe_sorting_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/fused_moe/pipeline/moe_sorting_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/fused_moe/pipeline/moe_sorting_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm.hpp b/projects/composablekernel/include/ck_tile/ops/gemm.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bgmem_creg_v1.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bgmem_creg_v1.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bgmem_creg_v1.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bgmem_creg_v1.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bgmem_creg_v1_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bgmem_creg_v1_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bgmem_creg_v1_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bgmem_creg_v1_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_breg_creg_v1.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_breg_creg_v1.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_breg_creg_v1.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_breg_creg_v1.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_breg_creg_v1_custom_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_breg_creg_v1_custom_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_breg_creg_v1_custom_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_breg_creg_v1_custom_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_breg_creg_v1_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_breg_creg_v1_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_breg_creg_v1_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_breg_creg_v1_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_one_warp_v1.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_one_warp_v1.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_one_warp_v1.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_one_warp_v1.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v1.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v1.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v1.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v1.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v1_custom_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v1_custom_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v1_custom_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v1_custom_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v1_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v1_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v1_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v1_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v2.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v2.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v2.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v2.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v2_custom_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v2_custom_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v2_custom_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v2_custom_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v2_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v2_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v2_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_areg_bsmem_creg_v2_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_breg_creg_v1.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_breg_creg_v1.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_breg_creg_v1.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_breg_creg_v1.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_breg_creg_v1_custom_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_breg_creg_v1_custom_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_breg_creg_v1_custom_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_breg_creg_v1_custom_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_breg_creg_v1_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_breg_creg_v1_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_breg_creg_v1_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_breg_creg_v1_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_bsmem_creg_v1.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_bsmem_creg_v1.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_bsmem_creg_v1.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_bsmem_creg_v1.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_bsmem_creg_v1_custom_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_bsmem_creg_v1_custom_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_bsmem_creg_v1_custom_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_bsmem_creg_v1_custom_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_bsmem_creg_v1_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_bsmem_creg_v1_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_bsmem_creg_v1_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_asmem_bsmem_creg_v1_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_problem.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_gemm_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_gemm_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/block/block_universal_gemm_as_bs_cr.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/block/block_universal_gemm_as_bs_cr.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/block/block_universal_gemm_as_bs_cr.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/block/block_universal_gemm_as_bs_cr.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/kernel/batched_gemm_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/kernel/batched_gemm_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/kernel/batched_gemm_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/kernel/batched_gemm_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/kernel/gemm_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/kernel/gemm_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/kernel/gemm_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/kernel/gemm_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/kernel/gemm_tile_partitioner.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/kernel/gemm_tile_partitioner.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/kernel/gemm_tile_partitioner.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/kernel/gemm_tile_partitioner.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/kernel/grouped_gemm_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/kernel/grouped_gemm_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/kernel/grouped_gemm_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/kernel/grouped_gemm_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_base.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_base.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_base.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_base.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_comp_v3.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_comp_v3.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_comp_v3.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_comp_v3.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_comp_v4.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_comp_v4.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_comp_v4.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_comp_v4.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_comp_v4_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_comp_v4_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_comp_v4_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_comp_v4_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_mem.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_mem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_mem.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_mem.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_scheduler.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_scheduler.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_scheduler.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_ag_bg_cr_scheduler.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v1.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v1.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v1.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v1.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v1_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v1_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v1_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v1_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v2.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v2.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v2.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v2.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v2_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v2_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v2_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_agmem_bgmem_creg_v2_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_problem.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_pipeline_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_universal_pipeline_ag_bg_cr_policy.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_universal_pipeline_ag_bg_cr_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/gemm_universal_pipeline_ag_bg_cr_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/gemm_universal_pipeline_ag_bg_cr_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/tile_gemm_shape.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/tile_gemm_shape.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/tile_gemm_shape.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/tile_gemm_shape.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/pipeline/tile_gemm_traits.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/pipeline/tile_gemm_traits.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/pipeline/tile_gemm_traits.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/pipeline/tile_gemm_traits.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_mfma.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_mfma.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_mfma.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_mfma.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_mfma_impl.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_mfma_impl.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_mfma_impl.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_mfma_impl.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_smfmac.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_smfmac.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_smfmac.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_smfmac.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_smfmac_impl.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_smfmac_impl.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_smfmac_impl.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_attribute_smfmac_impl.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_dispatcher.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_dispatcher.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_dispatcher.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_dispatcher.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_impl.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_impl.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_impl.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_impl.hpp diff --git a/composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_smfmac_impl.hpp b/projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_smfmac_impl.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/gemm/warp/warp_gemm_smfmac_impl.hpp rename to projects/composablekernel/include/ck_tile/ops/gemm/warp/warp_gemm_smfmac_impl.hpp diff --git a/composable_kernel/include/ck_tile/ops/image_to_column.hpp b/projects/composablekernel/include/ck_tile/ops/image_to_column.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/image_to_column.hpp rename to projects/composablekernel/include/ck_tile/ops/image_to_column.hpp diff --git a/composable_kernel/include/ck_tile/ops/image_to_column/kernel/image_to_column_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/image_to_column/kernel/image_to_column_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/image_to_column/kernel/image_to_column_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/image_to_column/kernel/image_to_column_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/image_to_column/pipeline/block_image_to_column_problem.hpp b/projects/composablekernel/include/ck_tile/ops/image_to_column/pipeline/block_image_to_column_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/image_to_column/pipeline/block_image_to_column_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/image_to_column/pipeline/block_image_to_column_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/image_to_column/pipeline/tile_image_to_column_shape.hpp b/projects/composablekernel/include/ck_tile/ops/image_to_column/pipeline/tile_image_to_column_shape.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/image_to_column/pipeline/tile_image_to_column_shape.hpp rename to projects/composablekernel/include/ck_tile/ops/image_to_column/pipeline/tile_image_to_column_shape.hpp diff --git a/composable_kernel/include/ck_tile/ops/layernorm2d.hpp b/projects/composablekernel/include/ck_tile/ops/layernorm2d.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/layernorm2d.hpp rename to projects/composablekernel/include/ck_tile/ops/layernorm2d.hpp diff --git a/composable_kernel/include/ck_tile/ops/layernorm2d/kernel/layernorm2d_fwd_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/layernorm2d/kernel/layernorm2d_fwd_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/layernorm2d/kernel/layernorm2d_fwd_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/layernorm2d/kernel/layernorm2d_fwd_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_one_pass.hpp b/projects/composablekernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_one_pass.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_one_pass.hpp rename to projects/composablekernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_one_pass.hpp diff --git a/composable_kernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_problem.hpp b/projects/composablekernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_two_pass.hpp b/projects/composablekernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_two_pass.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_two_pass.hpp rename to projects/composablekernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_pipeline_two_pass.hpp diff --git a/composable_kernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_traits.hpp b/projects/composablekernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_traits.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_traits.hpp rename to projects/composablekernel/include/ck_tile/ops/layernorm2d/pipeline/layernorm2d_fwd_traits.hpp diff --git a/composable_kernel/include/ck_tile/ops/norm_reduce.hpp b/projects/composablekernel/include/ck_tile/ops/norm_reduce.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/norm_reduce.hpp rename to projects/composablekernel/include/ck_tile/ops/norm_reduce.hpp diff --git a/composable_kernel/include/ck_tile/ops/norm_reduce/block/block_norm_reduce.hpp b/projects/composablekernel/include/ck_tile/ops/norm_reduce/block/block_norm_reduce.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/norm_reduce/block/block_norm_reduce.hpp rename to projects/composablekernel/include/ck_tile/ops/norm_reduce/block/block_norm_reduce.hpp diff --git a/composable_kernel/include/ck_tile/ops/norm_reduce/block/block_norm_reduce_problem.hpp b/projects/composablekernel/include/ck_tile/ops/norm_reduce/block/block_norm_reduce_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/norm_reduce/block/block_norm_reduce_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/norm_reduce/block/block_norm_reduce_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/norm_reduce/thread/thread_welford.hpp b/projects/composablekernel/include/ck_tile/ops/norm_reduce/thread/thread_welford.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/norm_reduce/thread/thread_welford.hpp rename to projects/composablekernel/include/ck_tile/ops/norm_reduce/thread/thread_welford.hpp diff --git a/composable_kernel/include/ck_tile/ops/permute.hpp b/projects/composablekernel/include/ck_tile/ops/permute.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/permute.hpp rename to projects/composablekernel/include/ck_tile/ops/permute.hpp diff --git a/composable_kernel/include/ck_tile/ops/permute/kernel/generic_permute_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/permute/kernel/generic_permute_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/permute/kernel/generic_permute_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/permute/kernel/generic_permute_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/permute/pipeline/generic_petmute_problem.hpp b/projects/composablekernel/include/ck_tile/ops/permute/pipeline/generic_petmute_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/permute/pipeline/generic_petmute_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/permute/pipeline/generic_petmute_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/reduce.hpp b/projects/composablekernel/include/ck_tile/ops/reduce.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/reduce.hpp rename to projects/composablekernel/include/ck_tile/ops/reduce.hpp diff --git a/composable_kernel/include/ck_tile/ops/reduce/block/block_reduce.hpp b/projects/composablekernel/include/ck_tile/ops/reduce/block/block_reduce.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/reduce/block/block_reduce.hpp rename to projects/composablekernel/include/ck_tile/ops/reduce/block/block_reduce.hpp diff --git a/composable_kernel/include/ck_tile/ops/reduce/block/block_reduce2d.hpp b/projects/composablekernel/include/ck_tile/ops/reduce/block/block_reduce2d.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/reduce/block/block_reduce2d.hpp rename to projects/composablekernel/include/ck_tile/ops/reduce/block/block_reduce2d.hpp diff --git a/composable_kernel/include/ck_tile/ops/reduce/block/block_reduce2d_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/reduce/block/block_reduce2d_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/reduce/block/block_reduce2d_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/reduce/block/block_reduce2d_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/reduce/block/block_reduce2d_problem.hpp b/projects/composablekernel/include/ck_tile/ops/reduce/block/block_reduce2d_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/reduce/block/block_reduce2d_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/reduce/block/block_reduce2d_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/rmsnorm2d.hpp b/projects/composablekernel/include/ck_tile/ops/rmsnorm2d.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/rmsnorm2d.hpp rename to projects/composablekernel/include/ck_tile/ops/rmsnorm2d.hpp diff --git a/composable_kernel/include/ck_tile/ops/rmsnorm2d/kernel/rmsnorm2d_fwd_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/rmsnorm2d/kernel/rmsnorm2d_fwd_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/rmsnorm2d/kernel/rmsnorm2d_fwd_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/rmsnorm2d/kernel/rmsnorm2d_fwd_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_one_pass.hpp b/projects/composablekernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_one_pass.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_one_pass.hpp rename to projects/composablekernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_one_pass.hpp diff --git a/composable_kernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_problem.hpp b/projects/composablekernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_two_pass.hpp b/projects/composablekernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_two_pass.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_two_pass.hpp rename to projects/composablekernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_pipeline_two_pass.hpp diff --git a/composable_kernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_traits.hpp b/projects/composablekernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_traits.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_traits.hpp rename to projects/composablekernel/include/ck_tile/ops/rmsnorm2d/pipeline/rmsnorm2d_fwd_traits.hpp diff --git a/composable_kernel/include/ck_tile/ops/smoothquant.hpp b/projects/composablekernel/include/ck_tile/ops/smoothquant.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/smoothquant.hpp rename to projects/composablekernel/include/ck_tile/ops/smoothquant.hpp diff --git a/composable_kernel/include/ck_tile/ops/smoothquant/kernel/moe_smoothquant_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/smoothquant/kernel/moe_smoothquant_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/smoothquant/kernel/moe_smoothquant_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/smoothquant/kernel/moe_smoothquant_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/smoothquant/kernel/smoothquant_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/smoothquant/kernel/smoothquant_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/smoothquant/kernel/smoothquant_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/smoothquant/kernel/smoothquant_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_default_policy.hpp b/projects/composablekernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_default_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_default_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_default_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_one_pass.hpp b/projects/composablekernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_one_pass.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_one_pass.hpp rename to projects/composablekernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_one_pass.hpp diff --git a/composable_kernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_problem.hpp b/projects/composablekernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_two_pass.hpp b/projects/composablekernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_two_pass.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_two_pass.hpp rename to projects/composablekernel/include/ck_tile/ops/smoothquant/pipeline/smoothquant_pipeline_two_pass.hpp diff --git a/composable_kernel/include/ck_tile/ops/softmax.hpp b/projects/composablekernel/include/ck_tile/ops/softmax.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/softmax.hpp rename to projects/composablekernel/include/ck_tile/ops/softmax.hpp diff --git a/composable_kernel/include/ck_tile/ops/softmax/block/block_softmax_2d.hpp b/projects/composablekernel/include/ck_tile/ops/softmax/block/block_softmax_2d.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/softmax/block/block_softmax_2d.hpp rename to projects/composablekernel/include/ck_tile/ops/softmax/block/block_softmax_2d.hpp diff --git a/composable_kernel/include/ck_tile/ops/softmax/block/block_softmax_2d_problem.hpp b/projects/composablekernel/include/ck_tile/ops/softmax/block/block_softmax_2d_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/softmax/block/block_softmax_2d_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/softmax/block/block_softmax_2d_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/topk.hpp b/projects/composablekernel/include/ck_tile/ops/topk.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/topk.hpp rename to projects/composablekernel/include/ck_tile/ops/topk.hpp diff --git a/composable_kernel/include/ck_tile/ops/topk/block/block_topk_stream_2d.hpp b/projects/composablekernel/include/ck_tile/ops/topk/block/block_topk_stream_2d.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/topk/block/block_topk_stream_2d.hpp rename to projects/composablekernel/include/ck_tile/ops/topk/block/block_topk_stream_2d.hpp diff --git a/composable_kernel/include/ck_tile/ops/topk/block/block_topk_stream_2d_problem.hpp b/projects/composablekernel/include/ck_tile/ops/topk/block/block_topk_stream_2d_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/topk/block/block_topk_stream_2d_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/topk/block/block_topk_stream_2d_problem.hpp diff --git a/composable_kernel/include/ck_tile/ops/topk_softmax.hpp b/projects/composablekernel/include/ck_tile/ops/topk_softmax.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/topk_softmax.hpp rename to projects/composablekernel/include/ck_tile/ops/topk_softmax.hpp diff --git a/composable_kernel/include/ck_tile/ops/topk_softmax/kernel/topk_softmax_kernel.hpp b/projects/composablekernel/include/ck_tile/ops/topk_softmax/kernel/topk_softmax_kernel.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/topk_softmax/kernel/topk_softmax_kernel.hpp rename to projects/composablekernel/include/ck_tile/ops/topk_softmax/kernel/topk_softmax_kernel.hpp diff --git a/composable_kernel/include/ck_tile/ops/topk_softmax/pipeline/topk_softmax_warp_per_row_pipeline.hpp b/projects/composablekernel/include/ck_tile/ops/topk_softmax/pipeline/topk_softmax_warp_per_row_pipeline.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/topk_softmax/pipeline/topk_softmax_warp_per_row_pipeline.hpp rename to projects/composablekernel/include/ck_tile/ops/topk_softmax/pipeline/topk_softmax_warp_per_row_pipeline.hpp diff --git a/composable_kernel/include/ck_tile/ops/topk_softmax/pipeline/topk_softmax_warp_per_row_policy.hpp b/projects/composablekernel/include/ck_tile/ops/topk_softmax/pipeline/topk_softmax_warp_per_row_policy.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/topk_softmax/pipeline/topk_softmax_warp_per_row_policy.hpp rename to projects/composablekernel/include/ck_tile/ops/topk_softmax/pipeline/topk_softmax_warp_per_row_policy.hpp diff --git a/composable_kernel/include/ck_tile/ops/topk_softmax/pipeline/topk_softmax_warp_per_row_problem.hpp b/projects/composablekernel/include/ck_tile/ops/topk_softmax/pipeline/topk_softmax_warp_per_row_problem.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ops/topk_softmax/pipeline/topk_softmax_warp_per_row_problem.hpp rename to projects/composablekernel/include/ck_tile/ops/topk_softmax/pipeline/topk_softmax_warp_per_row_problem.hpp diff --git a/composable_kernel/include/ck_tile/ref/README.md b/projects/composablekernel/include/ck_tile/ref/README.md similarity index 100% rename from composable_kernel/include/ck_tile/ref/README.md rename to projects/composablekernel/include/ck_tile/ref/README.md diff --git a/composable_kernel/include/ck_tile/ref/naive_attention.hpp b/projects/composablekernel/include/ck_tile/ref/naive_attention.hpp similarity index 100% rename from composable_kernel/include/ck_tile/ref/naive_attention.hpp rename to projects/composablekernel/include/ck_tile/ref/naive_attention.hpp diff --git a/composable_kernel/include/ck_tile/remod.py b/projects/composablekernel/include/ck_tile/remod.py similarity index 100% rename from composable_kernel/include/ck_tile/remod.py rename to projects/composablekernel/include/ck_tile/remod.py diff --git a/composable_kernel/library/CMakeLists.txt b/projects/composablekernel/library/CMakeLists.txt similarity index 100% rename from composable_kernel/library/CMakeLists.txt rename to projects/composablekernel/library/CMakeLists.txt diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_avgpool_bwd.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_avgpool_bwd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_avgpool_bwd.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_avgpool_bwd.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batched_gemm.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batched_gemm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batched_gemm.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batched_gemm.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batchnorm_backward.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batchnorm_backward.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batchnorm_backward.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batchnorm_backward.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batchnorm_forward.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batchnorm_forward.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batchnorm_forward.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batchnorm_forward.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batchnorm_infer.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batchnorm_infer.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batchnorm_infer.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_batchnorm_infer.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_cgemm.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_cgemm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_cgemm.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_cgemm.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_column_to_image.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_column_to_image.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_column_to_image.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_column_to_image.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_contraction.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_contraction.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_contraction.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_contraction.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_bwd_data.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_bwd_data.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_bwd_data.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_bwd_data.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_bwd_weight.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_bwd_weight.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_bwd_weight.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_bwd_weight.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_fwd.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_fwd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_fwd.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_fwd.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_fwd_bias_activation.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_fwd_bias_activation.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_fwd_bias_activation.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_fwd_bias_activation.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_fwd_bias_activation_add.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_fwd_bias_activation_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_fwd_bias_activation_add.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_conv_fwd_bias_activation_add.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_elementwise.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_elementwise.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_elementwise.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_elementwise.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_fpAintB_gemm.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_fpAintB_gemm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_fpAintB_gemm.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_fpAintB_gemm.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_gemm.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_gemm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_gemm.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_gemm.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_gemm_layernorm.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_gemm_layernorm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_gemm_layernorm.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_gemm_layernorm.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_gemm_multiple_d.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_gemm_multiple_d.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_gemm_multiple_d.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_gemm_multiple_d.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_groupnorm.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_groupnorm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_groupnorm.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_groupnorm.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_groupnorm_bwd.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_groupnorm_bwd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_groupnorm_bwd.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_groupnorm_bwd.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_image_to_column.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_image_to_column.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_image_to_column.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_image_to_column.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_layernorm.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_layernorm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_layernorm.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_layernorm.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_layernorm_bwd.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_layernorm_bwd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_layernorm_bwd.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_layernorm_bwd.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_maxpool_bwd.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_maxpool_bwd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_maxpool_bwd.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_maxpool_bwd.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_moe_gemm.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_moe_gemm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_moe_gemm.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_moe_gemm.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_moe_gemm2.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_moe_gemm2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_moe_gemm2.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_moe_gemm2.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_mx_gemm.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_mx_gemm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_mx_gemm.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_mx_gemm.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_pool_fwd.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_pool_fwd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_pool_fwd.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_pool_fwd.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_reduce.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_reduce.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_reduce.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_reduce.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_softmax.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_softmax.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_softmax.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_softmax.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_sparse_embedding3_forward_layernorm.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_sparse_embedding3_forward_layernorm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/cpu/reference_sparse_embedding3_forward_layernorm.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/cpu/reference_sparse_embedding3_forward_layernorm.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/gpu/naive_conv_fwd.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/gpu/naive_conv_fwd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/gpu/naive_conv_fwd.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/gpu/naive_conv_fwd.hpp diff --git a/composable_kernel/library/include/ck/library/reference_tensor_operation/gpu/reference_gemm.hpp b/projects/composablekernel/library/include/ck/library/reference_tensor_operation/gpu/reference_gemm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/reference_tensor_operation/gpu/reference_gemm.hpp rename to projects/composablekernel/library/include/ck/library/reference_tensor_operation/gpu/reference_gemm.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/add_device_operation_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/add_device_operation_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/add_device_operation_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/add_device_operation_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/device_operation_instance_factory.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/device_operation_instance_factory.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/device_operation_instance_factory.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/device_operation_instance_factory.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/avg_pool2d_bwd.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/avg_pool2d_bwd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/avg_pool2d_bwd.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/avg_pool2d_bwd.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/avg_pool3d_bwd.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/avg_pool3d_bwd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/avg_pool3d_bwd.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/avg_pool3d_bwd.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_b_scale.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_b_scale.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_b_scale.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_b_scale.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_bias_permute.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_bias_permute.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_bias_permute.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_bias_permute.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_bias_softmax_gemm_permute.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_bias_softmax_gemm_permute.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_bias_softmax_gemm_permute.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_bias_softmax_gemm_permute.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_gemm.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_gemm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_gemm.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_gemm.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_multi_d.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_multi_d.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_multi_d.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_multi_d.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_softmax_gemm.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_softmax_gemm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_softmax_gemm.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_softmax_gemm.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batchnorm_backward.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batchnorm_backward.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batchnorm_backward.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batchnorm_backward.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batchnorm_forward.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batchnorm_forward.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batchnorm_forward.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batchnorm_forward.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batchnorm_infer.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batchnorm_infer.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/batchnorm_infer.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/batchnorm_infer.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/contraction/device_contraction_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/contraction/device_contraction_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/contraction/device_contraction_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/contraction/device_contraction_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/contraction_bilinear.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/contraction_bilinear.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/contraction_bilinear.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/contraction_bilinear.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/contraction_scale.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/contraction_scale.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/contraction_scale.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/contraction_scale.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/conv_tensor_rearrange.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/conv_tensor_rearrange.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/conv_tensor_rearrange.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/conv_tensor_rearrange.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/conv_tensor_rearrange/device_column_to_image_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/conv_tensor_rearrange/device_column_to_image_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/conv_tensor_rearrange/device_column_to_image_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/conv_tensor_rearrange/device_column_to_image_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/conv_tensor_rearrange/device_image_to_column_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/conv_tensor_rearrange/device_image_to_column_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/conv_tensor_rearrange/device_image_to_column_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/conv_tensor_rearrange/device_image_to_column_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/convolution_backward_data.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/convolution_backward_data.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/convolution_backward_data.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/convolution_backward_data.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/convolution_forward.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/convolution_forward.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/convolution_forward.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/convolution_forward.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/device_elementwise_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/device_elementwise_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/device_elementwise_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/device_elementwise_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_mean_squaremean_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_mean_squaremean_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_mean_squaremean_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_mean_squaremean_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_interwave_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_interwave_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_interwave_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_interwave_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v2_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v2_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v2_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v2_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/elementwise_normalization.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/elementwise_normalization.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/elementwise_normalization.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/elementwise_normalization.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_ab_scale.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_ab_scale.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_ab_scale.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_ab_scale.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_add_fastgelu.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_add_fastgelu.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_add_fastgelu.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_add_fastgelu.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_fastgelu.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_fastgelu.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_fastgelu.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_fastgelu.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_multiply.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_multiply.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_multiply.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_multiply.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_relu.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_relu.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_relu.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_relu.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_silu.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_silu.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_silu.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_add_silu.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_b_scale.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_b_scale.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_b_scale.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_b_scale.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_bilinear.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_bilinear.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_bilinear.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_bilinear.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_dl.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_dl.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_dl.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_dl.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_dpp.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_dpp.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_dpp.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_dpp.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_fastgelu.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_fastgelu.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_fastgelu.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_fastgelu.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multi_abd.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multi_abd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multi_abd.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multi_abd.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multiply_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multiply_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multiply_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multiply_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multiply_multiply.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multiply_multiply.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multiply_multiply.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multiply_multiply.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multiply_multiply_wp.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multiply_multiply_wp.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multiply_multiply_wp.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_multiply_multiply_wp.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_mx.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_mx.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_mx.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_mx.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_splitk.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_splitk.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_splitk.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_splitk.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_streamk.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_streamk.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_streamk.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_streamk.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_batched.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_batched.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_batched.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_batched.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_reduce.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_reduce.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_reduce.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_reduce.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_streamk.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_streamk.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_streamk.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_streamk.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_wmma.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_wmma.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_wmma.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_wmma.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_xdl.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_xdl.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_xdl.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_universal_xdl.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_wmma.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_wmma.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_wmma.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_wmma.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_xdl.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_xdl.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_xdl.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/gemm_xdl.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_transpose_xdl_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_transpose_xdl_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_transpose_xdl_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_transpose_xdl_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_wmma_f16_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_wmma_f16_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_wmma_f16_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_wmma_f16_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_wmma_i8_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_wmma_i8_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_wmma_i8_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_wmma_i8_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_xdl_bilinear_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_xdl_bilinear_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_xdl_bilinear_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_xdl_bilinear_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_xdl_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_xdl_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_xdl_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_xdl_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_xdl_scale_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_xdl_scale_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_xdl_scale_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_data/device_grouped_conv_bwd_data_xdl_scale_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_dl_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_dl_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_dl_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_dl_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_two_stage_xdl_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_two_stage_xdl_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_two_stage_xdl_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_two_stage_xdl_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_v3_xdl_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_v3_xdl_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_v3_xdl_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_v3_xdl_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_wmma_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_wmma_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_wmma_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_wmma_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_xdl_bilinear_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_xdl_bilinear_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_xdl_bilinear_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_xdl_bilinear_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_xdl_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_xdl_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_xdl_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_xdl_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_xdl_scale_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_xdl_scale_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_xdl_scale_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_bwd_weight/device_grouped_conv_bwd_weight_xdl_scale_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_dl_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_dl_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_dl_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_dl_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_wmma_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_wmma_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_wmma_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_wmma_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_bilinear_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_bilinear_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_bilinear_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_bilinear_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_binary_outelementop_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_binary_outelementop_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_binary_outelementop_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_binary_outelementop_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_comp_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_comp_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_comp_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_comp_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_dynamic_op_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_dynamic_op_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_dynamic_op_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_dynamic_op_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_large_tensor_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_large_tensor_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_large_tensor_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_large_tensor_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_mem_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_mem_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_mem_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_mem_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_merged_groups_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_merged_groups_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_merged_groups_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_merged_groups_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_outelementop_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_outelementop_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_outelementop_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_outelementop_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_scale_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_scale_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_scale_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_scale_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_scaleadd_ab_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_scaleadd_ab_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_scaleadd_ab_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_scaleadd_ab_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_scaleadd_scaleadd_relu_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_scaleadd_scaleadd_relu_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_scaleadd_scaleadd_relu_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_conv_fwd/device_grouped_conv_fwd_xdl_scaleadd_scaleadd_relu_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_bilinear.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_bilinear.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_bilinear.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_bilinear.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_scale.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_scale.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_scale.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_scale.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_wmma.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_wmma.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_wmma.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_wmma.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_xdl.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_xdl.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_xdl.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_data_xdl.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_bilinear.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_bilinear.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_bilinear.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_bilinear.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_dl.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_dl.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_dl.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_dl.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_scale.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_scale.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_scale.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_scale.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_wmma.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_wmma.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_wmma.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_wmma.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_xdl.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_xdl.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_xdl.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_backward_weight_xdl.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_bilinear.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_bilinear.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_bilinear.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_bilinear.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_comp_xdl.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_comp_xdl.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_comp_xdl.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_comp_xdl.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convinvscale.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convinvscale.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convinvscale.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convinvscale.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convscale.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convscale.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convscale.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convscale.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convscale_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convscale_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convscale_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convscale_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convscale_relu.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convscale_relu.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convscale_relu.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_convscale_relu.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_dl.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_dl.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_dl.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_dl.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_dynamic_op.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_dynamic_op.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_dynamic_op.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_dynamic_op.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_mem_inter_xdl.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_mem_inter_xdl.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_mem_inter_xdl.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_mem_inter_xdl.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_mem_intra_xdl.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_mem_intra_xdl.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_mem_intra_xdl.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_mem_intra_xdl.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_scale.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_scale.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_scale.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_scale.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_scaleadd_ab.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_scaleadd_ab.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_scaleadd_ab.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_scaleadd_ab.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_scaleadd_scaleadd_relu.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_scaleadd_scaleadd_relu.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_scaleadd_scaleadd_relu.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_scaleadd_scaleadd_relu.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_wmma.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_wmma.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_wmma.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_wmma.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_xdl.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_xdl.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_xdl.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_xdl.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_xdl_large_tensor.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_xdl_large_tensor.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_xdl_large_tensor.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_xdl_large_tensor.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_xdl_merged_groups.inc b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_xdl_merged_groups.inc similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_xdl_merged_groups.inc rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_convolution_forward_xdl_merged_groups.inc diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_bias.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_bias.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_bias.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_bias.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_fastgelu.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_fastgelu.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_fastgelu.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_fastgelu.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_fixed_nk.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_fixed_nk.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_fixed_nk.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_fixed_nk.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_multi_abd_fixed_nk.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_multi_abd_fixed_nk.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_multi_abd_fixed_nk.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_multi_abd_fixed_nk.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_tile_loop.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_tile_loop.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_tile_loop.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_tile_loop.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_tile_loop_multiply.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_tile_loop_multiply.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_tile_loop_multiply.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/grouped_gemm_tile_loop_multiply.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/groupnorm_bwd_data.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/groupnorm_bwd_data.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/groupnorm_bwd_data.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/groupnorm_bwd_data.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/groupnorm_bwd_gamma_beta.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/groupnorm_bwd_gamma_beta.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/groupnorm_bwd_gamma_beta.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/groupnorm_bwd_gamma_beta.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/layernorm_bwd_data.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/layernorm_bwd_data.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/layernorm_bwd_data.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/layernorm_bwd_data.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/layernorm_bwd_gamma_beta.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/layernorm_bwd_gamma_beta.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/layernorm_bwd_gamma_beta.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/layernorm_bwd_gamma_beta.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/max_pool_bwd.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/max_pool_bwd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/max_pool_bwd.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/max_pool_bwd.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/normalization_fwd.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/normalization_fwd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/normalization_fwd.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/normalization_fwd.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/normalization_fwd_swish.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/normalization_fwd_swish.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/normalization_fwd_swish.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/normalization_fwd_swish.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/permute_scale.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/permute_scale.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/permute_scale.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/permute_scale.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/permute_scale/device_permute_scale_instances.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/permute_scale/device_permute_scale_instances.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/permute_scale/device_permute_scale_instances.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/permute_scale/device_permute_scale_instances.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/pool2d_fwd.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/pool2d_fwd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/pool2d_fwd.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/pool2d_fwd.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/pool3d_fwd.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/pool3d_fwd.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/pool3d_fwd.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/pool3d_fwd.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/gemm_quantization.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/gemm_quantization.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/gemm_quantization.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/gemm_quantization.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_bias_forward_perchannel_quantization.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_bias_forward_perchannel_quantization.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_bias_forward_perchannel_quantization.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_bias_forward_perchannel_quantization.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_bias_forward_perlayer_quantization.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_bias_forward_perlayer_quantization.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_bias_forward_perlayer_quantization.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_bias_forward_perlayer_quantization.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_forward_perchannel_quantization.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_forward_perchannel_quantization.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_forward_perchannel_quantization.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_forward_perchannel_quantization.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_forward_perlayer_quantization.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_forward_perlayer_quantization.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_forward_perlayer_quantization.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/quantization/grouped_convolution_forward_perlayer_quantization.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_amax.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_amax.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_amax.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_amax.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_max.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_max.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_max.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_max.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_min.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_min.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_min.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_min.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_norm2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_norm2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_norm2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_norm2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_amax.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_amax.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_amax.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_amax.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_max.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_max.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_max.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_max.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_min.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_min.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_min.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_min.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_norm2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_norm2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_norm2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_norm2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_amax.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_amax.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_amax.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_amax.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_max.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_max.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_max.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_max.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_min.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_min.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_min.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_min.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_norm2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_norm2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_norm2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_norm2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_norm2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_norm2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_norm2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_norm2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_amax.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_amax.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_amax.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_amax.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_max.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_max.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_max.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_max.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_min.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_min.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_min.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_min.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_norm2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_norm2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_norm2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_norm2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_amax.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_amax.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_amax.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_amax.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_max.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_max.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_max.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_max.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_min.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_min.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_min.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_min.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_impl_common.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_impl_common.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_impl_common.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_impl_common.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_amax.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_amax.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_amax.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_amax.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_max.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_max.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_max.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_max.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_min.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_min.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_min.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_min.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_norm2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_norm2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_norm2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_norm2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_amax.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_amax.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_amax.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_amax.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_max.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_max.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_max.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_max.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_min.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_min.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_min.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_min.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_norm2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_norm2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_norm2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_norm2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_amax.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_amax.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_amax.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_amax.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_max.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_max.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_max.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_max.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_min.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_min.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_min.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_min.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_norm2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_norm2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_norm2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_norm2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_norm2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_norm2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_norm2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_norm2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_amax.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_amax.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_amax.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_amax.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_max.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_max.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_max.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_max.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_min.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_min.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_min.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_min.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_norm2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_norm2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_norm2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_norm2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_add.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_add.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_add.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_add.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_avg.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_avg.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_avg.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_avg.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_amax.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_amax.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_amax.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_amax.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_max.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_max.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_max.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_max.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_min.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_min.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_min.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_min.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/reduce.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/reduce.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/reduce.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/reduce/reduce.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce1.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce1.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce1.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce1.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce3.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce3.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce3.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce3.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce1.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce1.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce1.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce1.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce3.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce3.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce3.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce3.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce4.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce4.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce4.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce4.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_type.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_type.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_type.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_type.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce1.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce1.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce1.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce1.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce3.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce3.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce3.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce3.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce1.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce1.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce1.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce1.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce2.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce2.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce2.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce2.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce3.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce3.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce3.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce3.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce4.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce4.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce4.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce4.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_type.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_type.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_type.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_type.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/softmax/device_softmax_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/transpose/device_transpose_instance.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/transpose/device_transpose_instance.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/transpose/device_transpose_instance.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/transpose/device_transpose_instance.hpp diff --git a/composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/transpose_3d.hpp b/projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/transpose_3d.hpp similarity index 100% rename from composable_kernel/library/include/ck/library/tensor_operation_instance/gpu/transpose_3d.hpp rename to projects/composablekernel/library/include/ck/library/tensor_operation_instance/gpu/transpose_3d.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_f8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_f8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_f8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_f8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_instance_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_instance_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_instance_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_instance_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool2d_bwd/device_avg_pool2d_bwd_nhwc_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/avg_pool3d_bwd_ndhwc_instance_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/avg_pool3d_bwd_ndhwc_instance_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/avg_pool3d_bwd_ndhwc_instance_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/avg_pool3d_bwd_ndhwc_instance_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/device_avg_pool3d_bwd_ndhwc_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/device_avg_pool3d_bwd_ndhwc_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/device_avg_pool3d_bwd_ndhwc_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/device_avg_pool3d_bwd_ndhwc_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/device_avg_pool3d_bwd_ndhwc_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/device_avg_pool3d_bwd_ndhwc_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/device_avg_pool3d_bwd_ndhwc_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/device_avg_pool3d_bwd_ndhwc_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/device_avg_pool3d_bwd_ndhwc_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/device_avg_pool3d_bwd_ndhwc_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/device_avg_pool3d_bwd_ndhwc_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/avg_pool3d_bwd/device_avg_pool3d_bwd_ndhwc_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gkm_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gkm_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gkm_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gkm_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gkm_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gkm_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gkm_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gkm_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gmk_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gmk_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gmk_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gmk_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gmk_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gmk_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gmk_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_bf16_bf16_bf16_gmk_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gkm_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gkm_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gkm_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gkm_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gkm_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gkm_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gkm_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gkm_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gmk_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gmk_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gmk_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gmk_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gmk_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gmk_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gmk_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f16_f16_f16_gmk_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gkm_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gkm_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gkm_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gkm_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gkm_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gkm_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gkm_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gkm_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gmk_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gmk_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gmk_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gmk_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gmk_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gmk_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gmk_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_f32_f32_f32_gmk_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gkm_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gkm_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gkm_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gkm_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gkm_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gkm_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gkm_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gkm_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gmk_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gmk_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gmk_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gmk_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gmk_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gmk_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gmk_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm/device_batched_gemm_xdl_int8_int8_int8_gmk_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add/device_batched_gemm_add_relu_gemm_add_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add/device_batched_gemm_add_relu_gemm_add_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add/device_batched_gemm_add_relu_gemm_add_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add/device_batched_gemm_add_relu_gemm_add_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add/device_batched_gemm_add_relu_gemm_add_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gon_gmo_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add/device_batched_gemm_add_relu_gemm_add_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gon_gmo_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add/device_batched_gemm_add_relu_gemm_add_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gon_gmo_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_add_relu_gemm_add/device_batched_gemm_add_relu_gemm_add_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gon_gmo_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_b_scale/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_b_scale/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_b_scale/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_b_scale/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_b_scale/device_batched_gemm_b_scale_xdl_f16_i4_f16/device_batched_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_b_scale/device_batched_gemm_b_scale_xdl_f16_i4_f16/device_batched_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_b_scale/device_batched_gemm_b_scale_xdl_f16_i4_f16/device_batched_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_b_scale/device_batched_gemm_b_scale_xdl_f16_i4_f16/device_batched_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_b_scale/device_batched_gemm_b_scale_xdl_f16_i4_f16/device_batched_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_b_scale/device_batched_gemm_b_scale_xdl_f16_i4_f16/device_batched_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_b_scale/device_batched_gemm_b_scale_xdl_f16_i4_f16/device_batched_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_b_scale/device_batched_gemm_b_scale_xdl_f16_i4_f16/device_batched_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_bias_permute/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_bias_permute/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_bias_permute/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_bias_permute/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_bias_permute/device_batched_gemm_bias_permute_m2_n3_k1_xdl_c_shuffle_f16_f16_f16_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_bias_permute/device_batched_gemm_bias_permute_m2_n3_k1_xdl_c_shuffle_f16_f16_f16_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_bias_permute/device_batched_gemm_bias_permute_m2_n3_k1_xdl_c_shuffle_f16_f16_f16_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_bias_permute/device_batched_gemm_bias_permute_m2_n3_k1_xdl_c_shuffle_f16_f16_f16_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_gemm/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_gemm/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_gemm/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_gemm/device_batched_gemm_gemm_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_gemm/device_batched_gemm_gemm_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_gemm/device_batched_gemm_gemm_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_gemm/device_batched_gemm_gemm_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_gemm/device_batched_gemm_gemm_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gon_gmo_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_gemm/device_batched_gemm_gemm_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gon_gmo_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_gemm/device_batched_gemm_gemm_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gon_gmo_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_gemm/device_batched_gemm_gemm_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gon_gmo_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gkn_gmn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gkn_gmn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gkn_gmn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gkn_gmn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gnk_gmn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gnk_gmn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gnk_gmn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gkm_gnk_gmn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gkn_gmn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gkn_gmn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gkn_gmn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gkn_gmn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gnk_gmn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gnk_gmn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gnk_gmn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_f16_f16_f16_gmk_gnk_gmn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gkn_gmn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gkn_gmn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gkn_gmn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gkn_gmn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gnk_gmn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gnk_gmn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gnk_gmn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gkm_gnk_gmn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gkn_gmn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gkn_gmn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gkn_gmn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gkn_gmn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gnk_gmn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gnk_gmn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gnk_gmn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_multi_d/device_batched_gemm_multi_d_dl_i8_i8_i8_gmk_gnk_gmn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gkm_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gkm_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gkm_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gkm_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gkm_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gkm_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gkm_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gkm_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gmk_gkn_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gmk_gkn_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gmk_gkn_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gmk_gkn_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gmk_gnk_gmn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gmk_gnk_gmn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gmk_gnk_gmn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_reduce/device_batched_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_gmk_gnk_gmn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm/device_batched_gemm_softmax_gemm_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm/device_batched_gemm_softmax_gemm_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm/device_batched_gemm_softmax_gemm_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm/device_batched_gemm_softmax_gemm_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_bias_softmax_gemm_permute_xdl_cshuffle_bf16_bf16_bf16_bf16_gmk_gnk_gno_gmo_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_bias_softmax_gemm_permute_xdl_cshuffle_bf16_bf16_bf16_bf16_gmk_gnk_gno_gmo_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_bias_softmax_gemm_permute_xdl_cshuffle_bf16_bf16_bf16_bf16_gmk_gnk_gno_gmo_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_bias_softmax_gemm_permute_xdl_cshuffle_bf16_bf16_bf16_bf16_gmk_gnk_gno_gmo_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_bias_softmax_gemm_permute_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_bias_softmax_gemm_permute_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_bias_softmax_gemm_permute_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_bias_softmax_gemm_permute_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_softmax_gemm_permute_xdl_cshuffle_bf16_bf16_bf16_bf16_gmk_gnk_gno_gmo_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_softmax_gemm_permute_xdl_cshuffle_bf16_bf16_bf16_bf16_gmk_gnk_gno_gmo_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_softmax_gemm_permute_xdl_cshuffle_bf16_bf16_bf16_bf16_gmk_gnk_gno_gmo_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_softmax_gemm_permute_xdl_cshuffle_bf16_bf16_bf16_bf16_gmk_gnk_gno_gmo_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_softmax_gemm_permute_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_softmax_gemm_permute_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_softmax_gemm_permute_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batched_gemm_softmax_gemm_permute/device_batched_gemm_softmax_gemm_permute_xdl_cshuffle_f16_f16_f16_f16_gmk_gnk_gno_gmo_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_f64_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_f64_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_f64_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_backward_f64_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_f64_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_f64_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_f64_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_forward_f64_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_f64_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_f64_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_f64_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/batchnorm/device_batchnorm_infer_f64_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_gndhwc_3d_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_gndhwc_3d_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_gndhwc_3d_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_gndhwc_3d_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_gnhwc_2d_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_gnhwc_2d_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_gnhwc_2d_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_gnhwc_2d_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_gnwc_1d_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_gnwc_1d_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_gnwc_1d_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_gnwc_1d_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_ndhwgc_3d_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_ndhwgc_3d_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_ndhwgc_3d_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_ndhwgc_3d_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_nhwgc_2d_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_nhwgc_2d_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_nhwgc_2d_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_nhwgc_2d_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_nwgc_1d_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_nwgc_1d_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_nwgc_1d_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/column_to_image/device_column_to_image_nwgc_1d_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_f32_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/2D/device_contraction_bilinear_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_f64_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_bf16_compute_f32_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_f16_compute_f32_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_bf16_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_compute_f16_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_f32_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_compute_f32_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_kknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_kknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_kknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_kknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_knnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_knnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_knnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_knnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_mknn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_mknn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_mknn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_mknn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_mnnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_mnnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_mnnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/6D/device_contraction_bilinear_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_f64_mnnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_bilinear/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f16_f16_f16_compute_f32_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_bf16_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_compute_f16_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f32_f32_f32_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_compute_f32_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/2D/device_contraction_scale_m2_n2_k2_xdl_c_shuffle_f64_f64_f64_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_bf16_bf16_bf16_compute_f32_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f16_f16_f16_compute_f32_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_bf16_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_compute_f16_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f32_f32_f32_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_compute_f32_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_kkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_kkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_kkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_kkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_knn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_knn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_knn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_knn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_mkn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_mkn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_mkn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_mkn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_mnn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_mnn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_mnn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/6D/device_contraction_scale_m6_n6_k6_xdl_c_shuffle_f64_f64_f64_mnn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/contraction_scale/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/contraction_scale/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv1d_bwd_data/device_conv1d_bwd_data_xdl_nwc_kxc_nwk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_dl_nhwc_kyxc_nhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_dl_nhwc_kyxc_nhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_dl_nhwc_kyxc_nhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_dl_nhwc_kyxc_nhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_dl_nhwc_kyxc_nhwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_dl_nhwc_kyxc_nhwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_dl_nhwc_kyxc_nhwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_dl_nhwc_kyxc_nhwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_dl_nhwc_kyxc_nhwk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_dl_nhwc_kyxc_nhwk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_dl_nhwc_kyxc_nhwk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_dl_nhwc_kyxc_nhwk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_bwd_data/device_conv2d_bwd_data_xdl_nhwc_kyxc_nhwk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_c_shuffle_nhwc_kyxc_nhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_c_shuffle_nhwc_kyxc_nhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_c_shuffle_nhwc_kyxc_nhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_c_shuffle_nhwc_kyxc_nhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd/device_conv2d_fwd_xdl_nhwc_kyxc_nhwk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu/device_conv2d_fwd_xdl_c_shuffle_bias_relu_nhwc_kyxc_nhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu/device_conv2d_fwd_xdl_c_shuffle_bias_relu_nhwc_kyxc_nhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu/device_conv2d_fwd_xdl_c_shuffle_bias_relu_nhwc_kyxc_nhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu/device_conv2d_fwd_xdl_c_shuffle_bias_relu_nhwc_kyxc_nhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu_add/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu_add/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu_add/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu_add/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu_add/device_conv2d_fwd_xdl_c_shuffle_bias_relu_add_nhwc_kyxc_nhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu_add/device_conv2d_fwd_xdl_c_shuffle_bias_relu_add_nhwc_kyxc_nhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu_add/device_conv2d_fwd_xdl_c_shuffle_bias_relu_add_nhwc_kyxc_nhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv2d_fwd_bias_relu_add/device_conv2d_fwd_xdl_c_shuffle_bias_relu_add_nhwc_kyxc_nhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/conv3d_bwd_data/device_conv3d_bwd_data_xdl_ndhwc_kzyxc_ndhwk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/elementwise/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/elementwise/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/elementwise/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/elementwise/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/elementwise/device_normalize_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/elementwise/device_normalize_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/elementwise/device_normalize_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/elementwise/device_normalize_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/elementwise_normalization/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/elementwise_normalization/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/elementwise_normalization/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/elementwise_normalization/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/elementwise_normalization/device_elementwise_normalization_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/elementwise_normalization/device_elementwise_normalization_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/elementwise_normalization/device_elementwise_normalization_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/elementwise_normalization/device_elementwise_normalization_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_kn_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_kn_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_kn_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_kn_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_nk_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_nk_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_nk_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_km_nk_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_kn_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_kn_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_kn_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_kn_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_nk_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_nk_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_nk_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f16_f16_f16_mk_nk_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_f32_f32_f32_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_kn_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_kn_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_kn_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_kn_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_nk_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_nk_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_nk_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_km_nk_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_kn_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_kn_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_kn_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_kn_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_nk_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_nk_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_nk_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dl_i8_i8_i8_mk_nk_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_kn_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_kn_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_kn_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_kn_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_nk_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_nk_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_nk_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_km_nk_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_kn_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_kn_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_kn_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_kn_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_nk_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_nk_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_nk_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_dpp_f16_f16_f16_mk_nk_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_bf16_bf16_bf16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_wmma_int8_int8_int8_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_2_stage_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_2_stage_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_2_stage_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_2_stage_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_bf16_bf16_bf16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f8_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f8_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f8_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f8_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f8_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f8_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f8_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f16_f8_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_f32_f32_f32_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_interwave_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_interwave_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_interwave_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_interwave_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_interwave_padded_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_interwave_padded_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_interwave_padded_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_interwave_padded_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_padded_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_padded_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_padded_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v1_padded_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v2_padded_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v2_padded_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v2_padded_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_kn_mn_v2_padded_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_fp8_fp8_fp8_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_i8_i8_i8_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_c_shuffle_lds_direct_load_f32_f32_f32_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_add_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_add_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_add_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_add_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_default_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_default_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_default_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_default_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_default_pipeline_v2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_default_pipeline_v2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_default_pipeline_v2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_default_pipeline_v2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_default_pipeline_v2_opt_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_default_pipeline_v2_opt_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_default_pipeline_v2_opt_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_default_pipeline_v2_opt_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_interwave_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_interwave_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_interwave_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_interwave_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_irregular_default_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_irregular_default_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_irregular_default_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_irregular_default_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_irregular_default_pipeline_v2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_irregular_default_pipeline_v2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_irregular_default_pipeline_v2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_irregular_default_pipeline_v2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_irregular_interwave_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_irregular_interwave_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_irregular_interwave_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_kn_mn_irregular_interwave_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_add_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_add_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_add_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_add_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_default_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_default_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_default_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_default_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_default_pipeline_v2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_default_pipeline_v2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_default_pipeline_v2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_default_pipeline_v2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_default_pipeline_v2_opt_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_default_pipeline_v2_opt_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_default_pipeline_v2_opt_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_default_pipeline_v2_opt_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_interwave_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_interwave_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_interwave_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_interwave_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_irregular_default_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_irregular_default_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_irregular_default_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_irregular_default_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_irregular_default_pipeline_v2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_irregular_default_pipeline_v2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_irregular_default_pipeline_v2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_irregular_default_pipeline_v2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_irregular_interwave_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_irregular_interwave_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_irregular_interwave_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/km_nk_mn_irregular_interwave_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_add_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_add_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_add_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_add_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_default_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_default_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_default_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_default_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_default_pipeline_v2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_default_pipeline_v2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_default_pipeline_v2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_default_pipeline_v2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_default_pipeline_v2_opt_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_default_pipeline_v2_opt_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_default_pipeline_v2_opt_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_default_pipeline_v2_opt_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_interwave_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_interwave_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_interwave_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_interwave_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_irregular_default_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_irregular_default_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_irregular_default_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_irregular_default_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_irregular_default_pipeline_v2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_irregular_default_pipeline_v2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_irregular_default_pipeline_v2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_irregular_default_pipeline_v2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_irregular_interwave_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_irregular_interwave_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_irregular_interwave_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_kn_mn_irregular_interwave_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_add_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_add_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_add_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_add_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_default_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_default_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_default_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_default_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_default_pipeline_v2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_default_pipeline_v2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_default_pipeline_v2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_default_pipeline_v2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_default_pipeline_v2_opt_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_default_pipeline_v2_opt_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_default_pipeline_v2_opt_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_default_pipeline_v2_opt_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_interwave_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_interwave_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_interwave_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_interwave_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_irregular_default_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_irregular_default_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_irregular_default_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_irregular_default_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_irregular_default_pipeline_v2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_irregular_default_pipeline_v2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_irregular_default_pipeline_v2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_irregular_default_pipeline_v2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_irregular_interwave_pipeline_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_irregular_interwave_pipeline_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_irregular_interwave_pipeline_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f16_f16_f16/mk_nk_mn_irregular_interwave_pipeline_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f32_f32_f32_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm/device_gemm_xdl_f64_f64_f64_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_ab_scale/device_gemm_ab_scale_xdl_f8_f8_bf16/device_gemm_ab_scale_xdl_f8_f8_bf16_mk_nk_mn_128_128_128_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add/device_gemm_add_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add/device_gemm_add_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add/device_gemm_add_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add/device_gemm_add_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add/device_gemm_add_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add/device_gemm_add_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add/device_gemm_add_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add/device_gemm_add_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_km_kn_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_km_kn_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_km_kn_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_km_kn_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_km_nk_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_km_nk_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_km_nk_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_km_nk_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_kn_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_kn_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_kn_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_kn_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_nk_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_nk_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_nk_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_add_fastgelu/device_gemm_add_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_nk_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_km_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_km_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_km_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_km_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_km_nk_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_km_nk_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_km_nk_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_km_nk_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_mk_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_mk_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_mk_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_mk_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_mk_nk_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_mk_nk_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_mk_nk_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_f16_f16_f16_mk_nk_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_fastgelu/device_gemm_add_fastgelu_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_km_kn_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_km_kn_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_km_kn_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_km_kn_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_km_nk_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_km_nk_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_km_nk_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_km_nk_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_kn_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_kn_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_kn_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_kn_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_nk_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_nk_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_nk_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_multiply/device_gemm_add_multiply_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_nk_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu/device_gemm_add_relu_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu/device_gemm_add_relu_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu/device_gemm_add_relu_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu/device_gemm_add_relu_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu/device_gemm_add_relu_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu/device_gemm_add_relu_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu/device_gemm_add_relu_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu/device_gemm_add_relu_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_km_kn_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_km_kn_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_km_kn_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_km_kn_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_km_nk_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_km_nk_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_km_nk_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_km_nk_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_mk_kn_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_mk_kn_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_mk_kn_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_mk_kn_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_mk_nk_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_mk_nk_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_mk_nk_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_relu_add_layernorm/device_gemm_add_relu_add_xdl_c_shuffle_layernorm_f16_mk_nk_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_silu/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_silu/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_silu/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_silu/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_silu/device_gemm_add_silu_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_silu/device_gemm_add_silu_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_silu/device_gemm_add_silu_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_silu/device_gemm_add_silu_xdl_c_shuffle_bf16_i8_bf16_bf16_mk_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_silu/device_gemm_add_silu_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_silu/device_gemm_add_silu_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_add_silu/device_gemm_add_silu_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_add_silu/device_gemm_add_silu_xdl_c_shuffle_f16_i8_f16_f16_mk_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_b_scale/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_b_scale/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_b_scale/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_b_scale/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_b_scale/device_gemm_b_scale_xdl_f16_i4_f16/device_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_b_scale/device_gemm_b_scale_xdl_f16_i4_f16/device_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_b_scale/device_gemm_b_scale_xdl_f16_i4_f16/device_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_b_scale/device_gemm_b_scale_xdl_f16_i4_f16/device_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_b_scale/device_gemm_b_scale_xdl_f16_i4_f16/device_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_b_scale/device_gemm_b_scale_xdl_f16_i4_f16/device_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_b_scale/device_gemm_b_scale_xdl_f16_i4_f16/device_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_b_scale/device_gemm_b_scale_xdl_f16_i4_f16/device_gemm_b_scale_xdl_f16_i4_f16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bias_add_reduce/device_gemm_bias_add_mean_squaremean_xdl_cshuffle_f16_f16_f16_f32_f32_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_km_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_km_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_km_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_km_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_km_nk_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_km_nk_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_km_nk_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_km_nk_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_mk_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_mk_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_mk_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_mk_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_mk_nk_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_mk_nk_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_mk_nk_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_wmma_c_shuffle_i8_i8_i8_i8_mk_nk_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_km_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_km_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_km_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_km_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_km_nk_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_km_nk_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_km_nk_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_km_nk_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_mk_kn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_mk_kn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_mk_kn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_mk_kn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_mk_nk_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_mk_nk_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_mk_nk_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_bilinear/device_gemm_bilinear_xdl_c_shuffle_f16_f16_f16_f16_mk_nk_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_fastgelu/device_gemm_fastgelu_xdl_c_shuffle_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bf16_i8_bf16_mk_kn_mn_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bf16_i8_bf16_mk_kn_mn_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bf16_i8_bf16_mk_kn_mn_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bf16_i8_bf16_mk_kn_mn_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bf16_i8_bf16_mk_nk_mn_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bf16_i8_bf16_mk_nk_mn_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bf16_i8_bf16_mk_nk_mn_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bf16_i8_bf16_mk_nk_mn_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bias_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bias_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bias_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bias_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bias_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bias_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bias_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bias_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bias_gelu_bf16_i8_bf16_mk_nk_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bias_gelu_bf16_i8_bf16_mk_nk_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bias_gelu_bf16_i8_bf16_mk_nk_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_bias_gelu_bf16_i8_bf16_mk_nk_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_bias_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_bias_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_bias_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_bias_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_bias_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_bias_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_bias_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_bias_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multi_abd/device_gemm_xdl_multi_abd_multiply_gelu_bf16_i8_bf16_mk_kn_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_kn_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_kn_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_kn_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_kn_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_nk_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_nk_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_nk_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f16_f16_f16_f16_mk_nk_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f8_f32_f32_f16_mk_kn_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f8_f32_f32_f16_mk_kn_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f8_f32_f32_f16_mk_kn_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f8_f32_f32_f16_mk_kn_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f8_f32_f32_f16_mk_nk_mn_mn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f8_f32_f32_f16_mk_nk_mn_mn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f8_f32_f32_f16_mk_nk_mn_mn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_add/device_gemm_multiply_add_xdl_c_shuffle_f16_f8_f32_f32_f16_mk_nk_mn_mn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_default_instance_part1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_default_instance_part1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_default_instance_part1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_default_instance_part1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_default_instance_part2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_default_instance_part2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_default_instance_part2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_default_instance_part2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance_part1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance_part1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance_part1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance_part1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance_part2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance_part2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance_part2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance_part2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_default_instance_part1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_default_instance_part1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_default_instance_part1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_default_instance_part1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_default_instance_part2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_default_instance_part2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_default_instance_part2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_default_instance_part2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_default_instance_part3.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_default_instance_part3.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_default_instance_part3.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_default_instance_part3.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part3.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part3.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part3.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part3.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_bf16/device_gemm_multiply_multiply_xdl_f8_f8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_default_instance_part1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_default_instance_part1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_default_instance_part1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_default_instance_part1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_default_instance_part2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_default_instance_part2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_default_instance_part2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_default_instance_part2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_kpadding_instance_part1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_kpadding_instance_part1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_kpadding_instance_part1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_kpadding_instance_part1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_kpadding_instance_part2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_kpadding_instance_part2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_kpadding_instance_part2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_kpadding_instance_part2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_default_instance_part1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_default_instance_part1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_default_instance_part1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_default_instance_part1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_default_instance_part2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_default_instance_part2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_default_instance_part2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_default_instance_part2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_default_instance_part3.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_default_instance_part3.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_default_instance_part3.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_default_instance_part3.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part3.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part3.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part3.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_comp_mfma16x16_kpadding_instance_part3.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_f8_f8_f16/device_gemm_multiply_multiply_xdl_f8_f8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_bf16/device_gemm_multiply_multiply_xdl_i8_i8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply/device_gemm_multiply_multiply_xdl_i8_i8_f16/device_gemm_multiply_multiply_xdl_i8_i8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p3.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p3.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p3.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p3.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p4.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p4.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p4.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p4.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p5.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p5.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p5.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p5.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p6.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p6.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p6.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma16x16_mn_compute_default_instance_p6.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_compute_default_instance_p1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_compute_default_instance_p1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_compute_default_instance_p1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_compute_default_instance_p1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_compute_default_instance_p2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_compute_default_instance_p2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_compute_default_instance_p2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_compute_default_instance_p2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p1_default_instance_v2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p1_default_instance_v2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p1_default_instance_v2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p1_default_instance_v2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p2_default_instance_v2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p2_default_instance_v2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p2_default_instance_v2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p2_default_instance_v2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p3_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p3_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p3_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p3_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p3_default_instance_v2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p3_default_instance_v2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p3_default_instance_v2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p3_default_instance_v2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p4_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p4_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p4_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p4_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p4_default_instance_v2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p4_default_instance_v2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p4_default_instance_v2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p4_default_instance_v2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p5_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p5_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p5_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p5_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p5_default_instance_v2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p5_default_instance_v2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p5_default_instance_v2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_bf16/device_gemm_multiply_multiply_wp_xdl_f8_f8_bf16_mk_mfma_mn_p5_default_instance_v2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p3.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p3.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p3.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p3.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p4.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p4.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p4.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p4.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p5.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p5.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p5.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p5.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p6.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p6.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p6.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma16x16_mn_compute_default_instance_p6.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_compute_default_instance_p1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_compute_default_instance_p1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_compute_default_instance_p1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_compute_default_instance_p1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_compute_default_instance_p2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_compute_default_instance_p2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_compute_default_instance_p2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_compute_default_instance_p2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p1_default_instance_v2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p1_default_instance_v2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p1_default_instance_v2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p1_default_instance_v2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p2_default_instance_v2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p2_default_instance_v2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p2_default_instance_v2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p2_default_instance_v2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p3_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p3_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p3_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p3_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p3_default_instance_v2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p3_default_instance_v2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p3_default_instance_v2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p3_default_instance_v2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p4_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p4_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p4_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p4_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p4_default_instance_v2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p4_default_instance_v2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p4_default_instance_v2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p4_default_instance_v2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p5_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p5_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p5_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p5_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p5_default_instance_v2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p5_default_instance_v2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p5_default_instance_v2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_multiply_multiply_wp/f8_f8_f16/device_gemm_multiply_multiply_wp_xdl_f8_f8_f16_mk_mfma_mn_p5_default_instance_v2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_mx/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_mx/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_mx/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_mx/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_bf16/device_gemm_mx_xdl_f8_f8_bf16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_bf16/device_gemm_mx_xdl_f8_f8_bf16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_bf16/device_gemm_mx_xdl_f8_f8_bf16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_bf16/device_gemm_mx_xdl_f8_f8_bf16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_bf16/device_gemm_mx_xdl_f8_f8_bf16_mk_nk_mn_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_bf16/device_gemm_mx_xdl_f8_f8_bf16_mk_nk_mn_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_bf16/device_gemm_mx_xdl_f8_f8_bf16_mk_nk_mn_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_bf16/device_gemm_mx_xdl_f8_f8_bf16_mk_nk_mn_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_f16/device_gemm_mx_xdl_f8_f8_f16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_f16/device_gemm_mx_xdl_f8_f8_f16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_f16/device_gemm_mx_xdl_f8_f8_f16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_f16/device_gemm_mx_xdl_f8_f8_f16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_f16/device_gemm_mx_xdl_f8_f8_f16_mk_nk_mn_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_f16/device_gemm_mx_xdl_f8_f8_f16_mk_nk_mn_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_f16/device_gemm_mx_xdl_f8_f8_f16_mk_nk_mn_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_mx/device_gemm_mx_xdl_f8_f8_f16/device_gemm_mx_xdl_f8_f8_f16_mk_nk_mn_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_reduce/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_reduce/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_reduce/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_reduce/device_gemm_reduce_xdl_cshuffle_f16_f16_f16_f32_f32_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_comp_fp8_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_interwave_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_interwave_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_interwave_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_interwave_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_interwave_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_interwave_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_interwave_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_interwave_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v1_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v2_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v2_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v2_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_v2_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_interwave_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_interwave_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_interwave_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_interwave_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_interwave_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_interwave_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_interwave_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_interwave_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v1_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v2_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v2_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v2_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_v2_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_v1_interwave_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_v1_interwave_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_v1_interwave_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_v1_interwave_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_v2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_v2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_v2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_kn_mn_v2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_kpb128_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_kpb128_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_kpb128_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_kpb128_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_v1_interwave_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_v1_interwave_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_v1_interwave_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_v1_interwave_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_v2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_v2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_v2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f16_fp8_f16_mk_nk_mn_v2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_f32_f32_f32_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_kn_mn_v1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_kn_mn_v1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_kn_mn_v1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_kn_mn_v1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_kn_mn_v1_interwave_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_kn_mn_v1_interwave_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_kn_mn_v1_interwave_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_kn_mn_v1_interwave_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_kn_mn_v2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_kn_mn_v2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_kn_mn_v2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_kn_mn_v2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_fp8_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_lds_direct_load_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_lds_direct_load_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_lds_direct_load_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_splitk/device_gemm_xdl_splitk_lds_direct_load_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_streamk/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_streamk/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_streamk/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_streamk/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_streamk/device_gemm_xdl_streamk_f16_f16_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_streamk/device_gemm_xdl_streamk_f16_f16_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_streamk/device_gemm_xdl_streamk_f16_f16_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_streamk/device_gemm_xdl_streamk_f16_f16_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_km_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_bf16_bf16_bf16/device_gemm_wmma_universal_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_km_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f16_f16_f16/device_gemm_wmma_universal_f16_f16_f16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_wmma_universal_f8_f8_bf16/device_gemm_wmma_universal_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_mkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_mkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_mkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_mkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_mpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_mpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_mpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_comp_mpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v1_mkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v1_mkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v1_mkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v1_mkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v2_mkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v2_mkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v2_mkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_km_nk_mn_mem_v2_mkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_i4_bf16/device_gemm_xdl_universal_bf16_i4_bf16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_i4_bf16/device_gemm_xdl_universal_bf16_i4_bf16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_i4_bf16/device_gemm_xdl_universal_bf16_i4_bf16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_i4_bf16/device_gemm_xdl_universal_bf16_i4_bf16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_i4_bf16/device_gemm_xdl_universal_bf16_i4_bf16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_i4_bf16/device_gemm_xdl_universal_bf16_i4_bf16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_i4_bf16/device_gemm_xdl_universal_bf16_i4_bf16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_bf16_i4_bf16/device_gemm_xdl_universal_bf16_i4_bf16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_f8_f16/device_gemm_xdl_universal_f16_f8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_i4_f16/device_gemm_xdl_universal_f16_i4_f16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_i4_f16/device_gemm_xdl_universal_f16_i4_f16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_i4_f16/device_gemm_xdl_universal_f16_i4_f16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_i4_f16/device_gemm_xdl_universal_f16_i4_f16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_i4_f16/device_gemm_xdl_universal_f16_i4_f16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_i4_f16/device_gemm_xdl_universal_f16_i4_f16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_i4_f16/device_gemm_xdl_universal_f16_i4_f16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f16_i4_f16/device_gemm_xdl_universal_f16_i4_f16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f16_f16/device_gemm_xdl_universal_f8_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_comp_nkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_comp_nkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_comp_nkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_comp_nkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v1_nkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v1_nkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v1_nkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v1_nkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v2_nkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v2_nkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v2_nkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_kn_mn_mem_v2_nkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal/device_gemm_xdl_universal_f8_f8_bf16/device_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_bf16_bf16_bf16/device_batched_gemm_xdl_universal_bf16_bf16_bf16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_batched/device_batched_gemm_xdl_universal_f8_f8_bf16/device_batched_gemm_xdl_universal_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_bf16_bf16/device_gemm_xdl_universal_bf16_bf16_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_bf16_i8_bf16/device_gemm_xdl_universal_bf16_i8_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_reduce/device_gemm_xdl_universal_f16_f16_f16/device_gemm_xdl_universal_f16_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_mkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_mkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_mkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_mkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_mpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_mpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_mpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_comp_mpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v1_mkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v1_mkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v1_mkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v1_mkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v2_mkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v2_mkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v2_mkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_km_nk_mn_mem_v2_mkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_bf16_bf16_bf16/device_gemm_xdl_universal_streamk_bf16_bf16_bf16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f16_f16/device_gemm_xdl_universal_streamk_f16_f16_f16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f16_f8_f16/device_gemm_xdl_universal_streamk_f16_f8_f16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f16_f16/device_gemm_xdl_universal_streamk_f8_f16_f16_mk_nk_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_comp_nkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_comp_nkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_comp_nkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_comp_nkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v1_nkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v1_nkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v1_nkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v1_nkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v2_nkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v2_nkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v2_nkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_kn_mn_mem_v2_nkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/gemm_universal_streamk/device_gemm_xdl_universal_streamk_f8_f8_bf16/device_gemm_xdl_universal_streamk_f8_f8_bf16_mk_nk_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_gnwc_gkxc_gnwk_bf16_f32_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_gnwc_gkxc_gnwk_bf16_f32_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_gnwc_gkxc_gnwk_bf16_f32_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_gnwc_gkxc_gnwk_bf16_f32_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_gnwc_gkxc_gnwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_gnwc_gkxc_gnwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_gnwc_gkxc_gnwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_gnwc_gkxc_gnwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_gnwc_gkxc_gnwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_gnwc_gkxc_gnwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_gnwc_gkxc_gnwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_gnwc_gkxc_gnwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_nwgc_gkxc_nwgk_bf16_f32_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_nwgc_gkxc_nwgk_bf16_f32_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_nwgc_gkxc_nwgk_bf16_f32_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_nwgc_gkxc_nwgk_bf16_f32_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_nwgc_gkxc_nwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_nwgc_gkxc_nwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_nwgc_gkxc_nwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_nwgc_gkxc_nwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_nwgc_gkxc_nwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_nwgc_gkxc_nwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_nwgc_gkxc_nwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/dl/device_grouped_conv1d_bwd_weight_dl_nwgc_gkxc_nwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/xdl/device_grouped_conv1d_bwd_weight_xdl_gnwc_gkxc_gnwk_bf16_f32_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/xdl/device_grouped_conv1d_bwd_weight_xdl_gnwc_gkxc_gnwk_bf16_f32_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/xdl/device_grouped_conv1d_bwd_weight_xdl_gnwc_gkxc_gnwk_bf16_f32_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/xdl/device_grouped_conv1d_bwd_weight_xdl_gnwc_gkxc_gnwk_bf16_f32_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/xdl/device_grouped_conv1d_bwd_weight_xdl_gnwc_gkxc_gnwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/xdl/device_grouped_conv1d_bwd_weight_xdl_gnwc_gkxc_gnwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/xdl/device_grouped_conv1d_bwd_weight_xdl_gnwc_gkxc_gnwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/xdl/device_grouped_conv1d_bwd_weight_xdl_gnwc_gkxc_gnwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/xdl/device_grouped_conv1d_bwd_weight_xdl_gnwc_gkxc_gnwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/xdl/device_grouped_conv1d_bwd_weight_xdl_gnwc_gkxc_gnwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/xdl/device_grouped_conv1d_bwd_weight_xdl_gnwc_gkxc_gnwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_bwd_weight/xdl/device_grouped_conv1d_bwd_weight_xdl_gnwc_gkxc_gnwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv1d_fwd/xdl/device_grouped_conv1d_fwd_xdl_gnwc_gkxc_gnwk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_f16_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_f16_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_f16_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_f16_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_i8_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_i8_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_i8_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_i8_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_gnhwc_gkyxc_gnhwk_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_f16_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_f16_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_f16_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_f16_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_i8_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_i8_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_i8_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_i8_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/wmma/device_grouped_conv2d_bwd_data_wmma_nhwgc_gkyxc_nhwgk_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_gnhwc_gkyxc_gnhwk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_gnhwc_gkyxc_gnhwk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_gnhwc_gkyxc_gnhwk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_gnhwc_gkyxc_gnhwk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_gnhwc_gkyxc_gnhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_gnhwc_gkyxc_gnhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_gnhwc_gkyxc_gnhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_gnhwc_gkyxc_gnhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_gnhwc_gkyxc_gnhwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_gnhwc_gkyxc_gnhwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_gnhwc_gkyxc_gnhwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_gnhwc_gkyxc_gnhwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_bf16_16_16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_bf16_16_16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_bf16_16_16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_bf16_16_16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_bf16_vec_transpose_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_bf16_vec_transpose_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_bf16_vec_transpose_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_bf16_vec_transpose_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f16_16_16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f16_16_16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f16_16_16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f16_16_16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f16_vec_transpose_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f16_vec_transpose_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f16_vec_transpose_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f16_vec_transpose_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f32_16_16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f32_16_16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f32_16_16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f32_16_16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f32_vec_transpose_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f32_vec_transpose_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f32_vec_transpose_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkcyx_ngkhw_f32_vec_transpose_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkyxc_ngkhw_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkyxc_ngkhw_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkyxc_ngkhw_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkyxc_ngkhw_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkyxc_ngkhw_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkyxc_ngkhw_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkyxc_ngkhw_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkyxc_ngkhw_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkyxc_ngkhw_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkyxc_ngkhw_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkyxc_ngkhw_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_ngchw_gkyxc_ngkhw_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_bf16_16_16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_bf16_16_16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_bf16_16_16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_bf16_16_16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f16_16_16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f16_16_16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f16_16_16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f16_16_16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f32_16_16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f32_16_16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f32_16_16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f32_16_16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_data/xdl/device_grouped_conv2d_bwd_data_xdl_nhwgc_gkyxc_nhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_gnhwc_gkyxc_gnhwk_bf16_f32_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_gnhwc_gkyxc_gnhwk_bf16_f32_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_gnhwc_gkyxc_gnhwk_bf16_f32_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_gnhwc_gkyxc_gnhwk_bf16_f32_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_gnhwc_gkyxc_gnhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_gnhwc_gkyxc_gnhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_gnhwc_gkyxc_gnhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_gnhwc_gkyxc_gnhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_gnhwc_gkyxc_gnhwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_gnhwc_gkyxc_gnhwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_gnhwc_gkyxc_gnhwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_gnhwc_gkyxc_gnhwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_nhwgc_gkyxc_nhwgk_bf16_f32_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_nhwgc_gkyxc_nhwgk_bf16_f32_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_nhwgc_gkyxc_nhwgk_bf16_f32_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_nhwgc_gkyxc_nhwgk_bf16_f32_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_nhwgc_gkyxc_nhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_nhwgc_gkyxc_nhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_nhwgc_gkyxc_nhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_nhwgc_gkyxc_nhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_nhwgc_gkyxc_nhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_nhwgc_gkyxc_nhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_nhwgc_gkyxc_nhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/dl/device_grouped_conv2d_bwd_weight_dl_nhwgc_gkyxc_nhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_bf16_f32_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_bf16_f32_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_bf16_f32_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_bf16_f32_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f16_default_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f16_default_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f16_default_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f16_default_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f16_pad0_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f16_pad0_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f16_pad0_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f16_pad0_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f32_default_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f32_default_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f32_default_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f32_default_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f32_pad0_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f32_pad0_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f32_pad0_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/gnhwc_gkyxc_gnhwk/device_grouped_conv2d_bwd_weight_xdl_gnhwc_gkyxc_gnhwk_f32_pad0_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_bf16_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_bf16_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_bf16_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_bf16_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_bf16_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_bf16_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_bf16_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_bf16_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_bf16_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_bf16_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_bf16_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_bf16_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_f16_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_f16_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_f16_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_f16_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_f16_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_f16_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_f16_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_f16_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_f16_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_f16_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_f16_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkcyx_ngkhw_f16_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkcyx_ngkhw_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkcyx_ngkhw_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkcyx_ngkhw_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkcyx_ngkhw_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkcyx_ngkhw_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkcyx_ngkhw_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkcyx_ngkhw_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkcyx_ngkhw_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkcyx_ngkhw_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkcyx_ngkhw_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkcyx_ngkhw_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkcyx_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkcyx_ngkhw_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkyxc_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkyxc_ngkhw_bf16_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkyxc_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkyxc_ngkhw_bf16_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkyxc_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkyxc_ngkhw_bf16_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkyxc_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkyxc_ngkhw_bf16_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkyxc_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkyxc_ngkhw_f16_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkyxc_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkyxc_ngkhw_f16_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkyxc_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkyxc_ngkhw_f16_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkyxc_ngkhw/device_grouped_conv2d_bwd_weight_two_stage_xdl_ngchw_gkyxc_ngkhw_f16_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkyxc_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkyxc_ngkhw_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkyxc_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkyxc_ngkhw_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkyxc_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkyxc_ngkhw_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/ngchw_gkyxc_ngkhw/device_grouped_conv2d_bwd_weight_xdl_ngchw_gkyxc_ngkhw_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev2_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev2_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev2_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev2_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev5_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev5_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev5_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_bf16_pipev5_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev2_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev2_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev2_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev2_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev5_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev5_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev5_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_two_stage_xdl_nhwgc_gkyxc_nhwgk_f16_pipev5_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_default_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_default_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_default_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_default_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_default_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_default_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_default_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_default_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_f32_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_f32_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_f32_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_f32_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_pad0_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_pad0_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_pad0_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_pad0_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_pad0_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_pad0_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_pad0_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_bf16_pad0_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_default_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_default_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_default_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_default_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_default_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_default_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_default_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_default_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_pad0_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_pad0_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_pad0_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_pad0_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_pad0_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_pad0_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_pad0_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f16_pad0_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_default_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_default_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_default_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_default_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_default_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_default_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_default_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_default_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_pad0_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_pad0_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_pad0_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_pad0_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_pad0_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_pad0_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_pad0_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_bwd_weight/xdl/nhwgc_gkyxc_nhwgk/device_grouped_conv2d_bwd_weight_xdl_nhwgc_gkyxc_nhwgk_f32_pad0_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_gnhwc_gkyxc_gnhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_gnhwc_gkyxc_gnhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_gnhwc_gkyxc_gnhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_gnhwc_gkyxc_gnhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_gnhwc_gkyxc_gnhwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_gnhwc_gkyxc_gnhwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_gnhwc_gkyxc_gnhwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_gnhwc_gkyxc_gnhwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_nhwgc_gkyxc_nhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_nhwgc_gkyxc_nhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_nhwgc_gkyxc_nhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_nhwgc_gkyxc_nhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_nhwgc_gkyxc_nhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_nhwgc_gkyxc_nhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_nhwgc_gkyxc_nhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/dl/device_grouped_conv2d_fwd_dl_nhwgc_gkyxc_nhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_f16_1x1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_f16_1x1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_f16_1x1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_f16_1x1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_f16_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_f16_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_f16_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_f16_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_i8_1x1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_i8_1x1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_i8_1x1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_i8_1x1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_i8_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_i8_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_i8_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_i8_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_gnhwc_gkyxc_gnhwk_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_f16_1x1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_f16_1x1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_f16_1x1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_f16_1x1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_f16_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_f16_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_f16_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_f16_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_i8_1x1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_i8_1x1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_i8_1x1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_i8_1x1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_i8_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_i8_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_i8_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_i8_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/wmma/device_grouped_conv2d_fwd_wmma_nhwgc_gkyxc_nhwgk_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_comp_2x_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_comp_2x_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_comp_2x_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_comp_2x_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_comp_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_comp_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_comp_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_comp_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_comp_part2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_comp_part2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_comp_part2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_comp_part2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_comp_2x_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_comp_2x_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_comp_2x_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_comp_2x_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_comp_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_comp_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_comp_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_comp_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_comp_part2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_comp_part2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_comp_part2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_comp_part2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_comp_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_comp_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_comp_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_comp_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_comp_2x_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_comp_2x_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_comp_2x_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_comp_2x_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_comp_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_comp_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_comp_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_comp_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_comp_part2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_comp_part2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_comp_part2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_comp_part2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_comp_2x_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_comp_2x_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_comp_2x_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_comp_2x_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_comp_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_comp_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_comp_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_comp_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_comp_part2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_comp_part2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_comp_part2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_comp_part2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_comp_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_comp_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_comp_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_comp_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_comp_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_comp_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_comp_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/comp/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_comp_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_gnhwc_gkyxc_gnhwk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_gnhwc_gkyxc_gnhwk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_gnhwc_gkyxc_gnhwk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_gnhwc_gkyxc_gnhwk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_gnhwc_gkyxc_gnhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_gnhwc_gkyxc_gnhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_gnhwc_gkyxc_gnhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_gnhwc_gkyxc_gnhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_gnhwc_gkyxc_gnhwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_gnhwc_gkyxc_gnhwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_gnhwc_gkyxc_gnhwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_gnhwc_gkyxc_gnhwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_ngchw_gkyxc_ngkhw_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/large_tensor/device_grouped_conv2d_fwd_xdl_large_tensor_nhwgc_gkyxc_nhwgk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_mem_inter_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_mem_inter_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_mem_inter_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_mem_inter_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_mem_intra_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_mem_intra_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_mem_intra_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_bf16_mem_intra_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_mem_inter_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_mem_inter_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_mem_inter_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_mem_inter_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_mem_intra_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_mem_intra_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_mem_intra_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f16_mem_intra_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_mem_inter_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_mem_inter_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_mem_inter_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_mem_inter_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_mem_intra_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_mem_intra_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_mem_intra_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_ngchw_gkcyx_ngkhw_f32_mem_intra_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_mem_inter_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_mem_inter_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_mem_inter_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_mem_inter_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_mem_intra_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_mem_intra_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_mem_intra_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_bf16_mem_intra_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_mem_inter_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_mem_inter_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_mem_inter_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_mem_inter_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_mem_intra_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_mem_intra_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_mem_intra_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f16_mem_intra_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_mem_inter_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_mem_inter_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_mem_inter_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_mem_inter_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_mem_intra_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_mem_intra_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_mem_intra_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_f32_mem_intra_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_mem_inter_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_mem_inter_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_mem_inter_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_mem_inter_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_mem_intra_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_mem_intra_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_mem_intra_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/mem/device_grouped_conv2d_fwd_xdl_nhwgc_gkyxc_nhwgk_int8_mem_intra_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_ngchw_gkcyx_ngkhw_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_ngchw_gkcyx_ngkhw_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_ngchw_gkcyx_ngkhw_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_ngchw_gkcyx_ngkhw_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_ngchw_gkcyx_ngkhw_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_ngchw_gkcyx_ngkhw_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_ngchw_gkcyx_ngkhw_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_ngchw_gkcyx_ngkhw_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_ngchw_gkcyx_ngkhw_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_ngchw_gkcyx_ngkhw_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_ngchw_gkcyx_ngkhw_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_ngchw_gkcyx_ngkhw_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd/xdl/merged_groups/device_grouped_conv2d_fwd_xdl_merged_groups_nhwgc_gkyxc_nhwgk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv2d_fwd_dynamic_op/xdl/device_grouped_conv2d_fwd_xdl_dynamic_op_nhwgc_gkyxc_nhwgk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_gndhwc_gkzyxc_gndhwk_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/wmma/device_grouped_conv3d_bwd_data_wmma_ndhwgc_gkzyxc_ndhwgk_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_gndhwc_gkzyxc_gndhwk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_gndhwc_gkzyxc_gndhwk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_gndhwc_gkzyxc_gndhwk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_gndhwc_gkzyxc_gndhwk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_16_16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_16_16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_16_16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_16_16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f16_16_16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f16_16_16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f16_16_16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f16_16_16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f32_16_16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f32_16_16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f32_16_16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f32_16_16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_input_f16_comp_bf8_f8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_input_f16_comp_bf8_f8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_input_f16_comp_bf8_f8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ndhwgc_gkzyxc_ndhwgk_input_f16_comp_bf8_f8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_bf16_16_16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_bf16_16_16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_bf16_16_16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_bf16_16_16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_bf16_vec_transpose_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_bf16_vec_transpose_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_bf16_vec_transpose_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_bf16_vec_transpose_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f16_16_16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f16_16_16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f16_16_16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f16_16_16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f16_vec_transpose_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f16_vec_transpose_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f16_vec_transpose_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f16_vec_transpose_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f32_16_16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f32_16_16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f32_16_16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f32_16_16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f32_vec_transpose_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f32_vec_transpose_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f32_vec_transpose_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkczyx_ngkdhw_f32_vec_transpose_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkzyxc_ngkdhw_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkzyxc_ngkdhw_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkzyxc_ngkdhw_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkzyxc_ngkdhw_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkzyxc_ngkdhw_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkzyxc_ngkdhw_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkzyxc_ngkdhw_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkzyxc_ngkdhw_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkzyxc_ngkdhw_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkzyxc_ngkdhw_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkzyxc_ngkdhw_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data/xdl/device_grouped_conv3d_bwd_data_xdl_ngcdhw_gkzyxc_ngkdhw_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/xdl/device_grouped_conv3d_bwd_data_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/xdl/device_grouped_conv3d_bwd_data_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/xdl/device_grouped_conv3d_bwd_data_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/xdl/device_grouped_conv3d_bwd_data_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/xdl/device_grouped_conv3d_bwd_data_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/xdl/device_grouped_conv3d_bwd_data_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/xdl/device_grouped_conv3d_bwd_data_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/xdl/device_grouped_conv3d_bwd_data_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/xdl/device_grouped_conv3d_bwd_data_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/xdl/device_grouped_conv3d_bwd_data_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/xdl/device_grouped_conv3d_bwd_data_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_bilinear/xdl/device_grouped_conv3d_bwd_data_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/xdl/device_grouped_conv3d_bwd_data_xdl_scale_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/xdl/device_grouped_conv3d_bwd_data_xdl_scale_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/xdl/device_grouped_conv3d_bwd_data_xdl_scale_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/xdl/device_grouped_conv3d_bwd_data_xdl_scale_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/xdl/device_grouped_conv3d_bwd_data_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/xdl/device_grouped_conv3d_bwd_data_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/xdl/device_grouped_conv3d_bwd_data_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/xdl/device_grouped_conv3d_bwd_data_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/xdl/device_grouped_conv3d_bwd_data_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/xdl/device_grouped_conv3d_bwd_data_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/xdl/device_grouped_conv3d_bwd_data_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_data_scale/xdl/device_grouped_conv3d_bwd_data_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_gndhwc_gkzyxc_gndhwk_bf16_f32_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_gndhwc_gkzyxc_gndhwk_bf16_f32_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_gndhwc_gkzyxc_gndhwk_bf16_f32_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_gndhwc_gkzyxc_gndhwk_bf16_f32_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_ndhwgc_gkzyxc_ndhwgk_bf16_f32_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_ndhwgc_gkzyxc_ndhwgk_bf16_f32_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_ndhwgc_gkzyxc_ndhwgk_bf16_f32_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_ndhwgc_gkzyxc_ndhwgk_bf16_f32_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/dl/device_grouped_conv3d_bwd_weight_dl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_gndhwc_gkzyxc_gndhwk_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/wmma/device_grouped_conv3d_bwd_weight_wmma_ndhwgc_gkzyxc_ndhwgk_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/gndhwc_gkzyxc_gndhwk/device_grouped_conv3d_bwd_weight_xdl_gndhwc_gkzyxc_gndhwk_bf16_f32_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/gndhwc_gkzyxc_gndhwk/device_grouped_conv3d_bwd_weight_xdl_gndhwc_gkzyxc_gndhwk_bf16_f32_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/gndhwc_gkzyxc_gndhwk/device_grouped_conv3d_bwd_weight_xdl_gndhwc_gkzyxc_gndhwk_bf16_f32_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/gndhwc_gkzyxc_gndhwk/device_grouped_conv3d_bwd_weight_xdl_gndhwc_gkzyxc_gndhwk_bf16_f32_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/gndhwc_gkzyxc_gndhwk/device_grouped_conv3d_bwd_weight_xdl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/gndhwc_gkzyxc_gndhwk/device_grouped_conv3d_bwd_weight_xdl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/gndhwc_gkzyxc_gndhwk/device_grouped_conv3d_bwd_weight_xdl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/gndhwc_gkzyxc_gndhwk/device_grouped_conv3d_bwd_weight_xdl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/gndhwc_gkzyxc_gndhwk/device_grouped_conv3d_bwd_weight_xdl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/gndhwc_gkzyxc_gndhwk/device_grouped_conv3d_bwd_weight_xdl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/gndhwc_gkzyxc_gndhwk/device_grouped_conv3d_bwd_weight_xdl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/gndhwc_gkzyxc_gndhwk/device_grouped_conv3d_bwd_weight_xdl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev2_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev2_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev2_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev2_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev5_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev5_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev5_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pipev5_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev2_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev2_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev2_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev2_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev5_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev5_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev5_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_two_stage_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pipev5_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_default_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_default_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_default_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_default_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_default_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_default_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_default_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_default_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_f32_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_f32_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_f32_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_f32_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pad0_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pad0_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pad0_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pad0_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pad0_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pad0_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pad0_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_pad0_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_comp_bf8_fp8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_comp_bf8_fp8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_comp_bf8_fp8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_comp_bf8_fp8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_default_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_default_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_default_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_default_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_default_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_default_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_default_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_default_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pad0_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pad0_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pad0_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pad0_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pad0_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pad0_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pad0_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f16_pad0_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_default_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_default_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_default_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_default_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_default_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_default_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_default_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_default_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_pad0_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_pad0_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_pad0_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_pad0_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_pad0_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_pad0_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_pad0_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ndhwgc_gkzyxc_ndhwgk/device_grouped_conv3d_bwd_weight_xdl_ndhwgc_gkzyxc_ndhwgk_f32_pad0_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_bf16_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_bf16_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_bf16_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_bf16_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_bf16_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_bf16_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_bf16_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_bf16_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_bf16_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_bf16_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_bf16_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_bf16_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_f16_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_f16_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_f16_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_f16_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_f16_pipev2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_f16_pipev2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_f16_pipev2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_f16_pipev2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_f16_pipev5_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_f16_pipev5_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_f16_pipev5_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkczyx_ngkdhw_f16_pipev5_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkczyx_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkzyxc_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkzyxc_ngkdhw_bf16_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkzyxc_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkzyxc_ngkdhw_bf16_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkzyxc_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkzyxc_ngkdhw_bf16_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkzyxc_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkzyxc_ngkdhw_bf16_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkzyxc_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkzyxc_ngkdhw_f16_pipev1_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkzyxc_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkzyxc_ngkdhw_f16_pipev1_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkzyxc_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkzyxc_ngkdhw_f16_pipev1_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkzyxc_ngkdhw/device_grouped_conv3d_bwd_weight_two_stage_xdl_ngcdhw_gkzyxc_ngkdhw_f16_pipev1_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkzyxc_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkzyxc_ngkdhw_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkzyxc_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkzyxc_ngkdhw_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkzyxc_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkzyxc_ngkdhw_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight/xdl/ngcdhw_gkzyxc_ngkdhw/device_grouped_conv3d_bwd_weight_xdl_ngcdhw_gkzyxc_ngkdhw_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_comp_bf8_fp8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_comp_bf8_fp8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_comp_bf8_fp8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_comp_bf8_fp8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_bilinear/xdl/device_grouped_conv3d_bwd_weight_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_comp_bf8_fp8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_comp_bf8_fp8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_comp_bf8_fp8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_comp_bf8_fp8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_bwd_weight_scale/xdl/device_grouped_conv3d_bwd_weight_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_f16_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_i8_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_gndhwc_gkzyxc_gndhwk_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_f16_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1s1p0_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1s1p0_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1s1p0_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_i8_1x1s1p0_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/wmma/device_grouped_conv3d_fwd_wmma_ndhwgc_gkzyxc_ndhwgk_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_comp_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_comp_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_comp_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_comp_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_comp_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_comp_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_comp_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_comp_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_comp_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_comp_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_comp_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_comp_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_comp_2x_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_comp_2x_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_comp_2x_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_comp_2x_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_comp_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_comp_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_comp_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_comp_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_comp_part2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_comp_part2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_comp_part2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_comp_part2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_comp_2x_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_comp_2x_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_comp_2x_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_comp_2x_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_comp_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_comp_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_comp_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_comp_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_comp_part2_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_comp_part2_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_comp_part2_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_comp_part2_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_comp_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_comp_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_comp_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/comp/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_comp_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_gndhwc_gkzyxc_gndhwk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf8_fp8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf8_fp8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf8_fp8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf8_fp8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_comp_fp8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_comp_fp8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_comp_fp8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_comp_fp8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_fp8_bf8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_fp8_bf8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_fp8_bf8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_fp8_bf8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_fp8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_fp8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_fp8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_fp8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/large_tensor/device_grouped_conv3d_fwd_xdl_large_tensor_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/large_tensor/device_grouped_conv3d_fwd_xdl_large_tensor_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/large_tensor/device_grouped_conv3d_fwd_xdl_large_tensor_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/large_tensor/device_grouped_conv3d_fwd_xdl_large_tensor_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/large_tensor/device_grouped_conv3d_fwd_xdl_large_tensor_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/large_tensor/device_grouped_conv3d_fwd_xdl_large_tensor_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/large_tensor/device_grouped_conv3d_fwd_xdl_large_tensor_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/large_tensor/device_grouped_conv3d_fwd_xdl_large_tensor_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/large_tensor/device_grouped_conv3d_fwd_xdl_large_tensor_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/large_tensor/device_grouped_conv3d_fwd_xdl_large_tensor_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/large_tensor/device_grouped_conv3d_fwd_xdl_large_tensor_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/large_tensor/device_grouped_conv3d_fwd_xdl_large_tensor_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_mem_inter_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_mem_inter_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_mem_inter_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_mem_inter_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_mem_intra_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_mem_intra_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_mem_intra_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_bf16_mem_intra_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_mem_inter_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_mem_inter_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_mem_inter_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_mem_inter_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_mem_intra_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_mem_intra_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_mem_intra_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f16_mem_intra_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_mem_inter_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_mem_inter_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_mem_inter_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_mem_inter_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_mem_intra_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_mem_intra_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_mem_intra_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ndhwgc_gkzyxc_ndhwgk_f32_mem_intra_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_mem_inter_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_mem_inter_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_mem_inter_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_mem_inter_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_mem_intra_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_mem_intra_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_mem_intra_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_bf16_mem_intra_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_mem_inter_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_mem_inter_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_mem_inter_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_mem_inter_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_mem_intra_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_mem_intra_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_mem_intra_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f16_mem_intra_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_mem_inter_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_mem_inter_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_mem_inter_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_mem_inter_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_mem_intra_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_mem_intra_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_mem_intra_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/mem/device_grouped_conv3d_fwd_xdl_ngcdhw_gkczyx_ngkdhw_f32_mem_intra_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ngcdhw_gkczyx_ngkdhw_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ngcdhw_gkczyx_ngkdhw_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd/xdl/merged_groups/device_grouped_conv3d_fwd_xdl_merged_groups_ngcdhw_gkczyx_ngkdhw_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_bilinear/xdl/device_grouped_conv3d_fwd_xdl_bilinear_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convinvscale/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convinvscale/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convinvscale/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convinvscale/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convinvscale/xdl/device_grouped_conv3d_fwd_xdl_convinvscale_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convinvscale/xdl/device_grouped_conv3d_fwd_xdl_convinvscale_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convinvscale/xdl/device_grouped_conv3d_fwd_xdl_convinvscale_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convinvscale/xdl/device_grouped_conv3d_fwd_xdl_convinvscale_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_combconvscale_ndhwgc_gkzyxc_ndhwgk_f8_f8_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_combconvscale_ndhwgc_gkzyxc_ndhwgk_f8_f8_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_combconvscale_ndhwgc_gkzyxc_ndhwgk_f8_f8_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_combconvscale_ndhwgc_gkzyxc_ndhwgk_f8_f8_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_bf8_f8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_bf8_f8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_bf8_f8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_bf8_f8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_bf8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_bf8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_bf8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_bf8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_f8_bf8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_f8_bf8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_f8_bf8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_f8_bf8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale/xdl/device_grouped_conv3d_fwd_xdl_convscale_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_add/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_add/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_add/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_add/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_add/xdl/device_grouped_conv3d_fwd_xdl_convscale_add_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_add/xdl/device_grouped_conv3d_fwd_xdl_convscale_add_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_add/xdl/device_grouped_conv3d_fwd_xdl_convscale_add_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_add/xdl/device_grouped_conv3d_fwd_xdl_convscale_add_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_relu/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_relu/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_relu/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_relu/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_relu/xdl/device_grouped_conv3d_fwd_xdl_combconvscale_relu_ndhwgc_gkzyxc_ndhwgk_f8_f8_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_relu/xdl/device_grouped_conv3d_fwd_xdl_combconvscale_relu_ndhwgc_gkzyxc_ndhwgk_f8_f8_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_relu/xdl/device_grouped_conv3d_fwd_xdl_combconvscale_relu_ndhwgc_gkzyxc_ndhwgk_f8_f8_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_relu/xdl/device_grouped_conv3d_fwd_xdl_combconvscale_relu_ndhwgc_gkzyxc_ndhwgk_f8_f8_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_relu/xdl/device_grouped_conv3d_fwd_xdl_convscale_relu_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_relu/xdl/device_grouped_conv3d_fwd_xdl_convscale_relu_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_relu/xdl/device_grouped_conv3d_fwd_xdl_convscale_relu_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_convscale_relu/xdl/device_grouped_conv3d_fwd_xdl_convscale_relu_ndhwgc_gkzyxc_ndhwgk_f8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_dynamic_op/xdl/device_grouped_conv3d_fwd_xdl_dynamic_op_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scale/xdl/device_grouped_conv3d_fwd_xdl_scale_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_ab/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_ab_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_conv3d_fwd_scaleadd_scaleadd_relu/xdl/device_grouped_conv3d_fwd_xdl_scaleadd_scaleadd_relu_ndhwgc_gkzyxc_ndhwgk_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_bf16_bf16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_bf16_bf16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_bf16_bf16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_bf16_bf16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_bf16_bf16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_bf16_bf16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_bf16_bf16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_bf16_bf16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_i8_bf16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_i8_bf16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_i8_bf16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_i8_bf16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_i8_bf16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_i8_bf16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_i8_bf16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_bf16_i8_bf16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_f16_f16_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_f16_f16_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_f16_f16_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_multiple_d_splitk_xdl_two_stage_f16_f16_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_km_kn_mn_irregular_pv1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_km_kn_mn_irregular_pv1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_km_kn_mn_irregular_pv1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_km_kn_mn_irregular_pv1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_km_kn_mn_irregular_pv1_inter.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_km_kn_mn_irregular_pv1_inter.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_km_kn_mn_irregular_pv1_inter.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_km_kn_mn_irregular_pv1_inter.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_km_kn_mn_irregular_pv2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_km_kn_mn_irregular_pv2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_km_kn_mn_irregular_pv2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_km_kn_mn_irregular_pv2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_kn_mn_irregular_pv1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_kn_mn_irregular_pv1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_kn_mn_irregular_pv1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_kn_mn_irregular_pv1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_kn_mn_irregular_pv1_inter.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_kn_mn_irregular_pv1_inter.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_kn_mn_irregular_pv1_inter.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_kn_mn_irregular_pv1_inter.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_kn_mn_irregular_pv2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_kn_mn_irregular_pv2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_kn_mn_irregular_pv2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_kn_mn_irregular_pv2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_nk_mn_irregular_pv1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_nk_mn_irregular_pv1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_nk_mn_irregular_pv1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_nk_mn_irregular_pv1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_nk_mn_irregular_pv1_inter.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_nk_mn_irregular_pv1_inter.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_nk_mn_irregular_pv1_inter.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_nk_mn_irregular_pv1_inter.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_nk_mn_irregular_pv2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_nk_mn_irregular_pv2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_nk_mn_irregular_pv2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_bf16_bf16_bf16_mk_nk_mn_irregular_pv2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_irregular_pv1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_irregular_pv1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_irregular_pv1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_irregular_pv1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_irregular_pv1_inter.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_irregular_pv1_inter.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_irregular_pv1_inter.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_irregular_pv1_inter.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_irregular_pv2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_irregular_pv2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_irregular_pv2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_kn_mn_irregular_pv2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f16_f16_mk_nk_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f8_f16_mk_kn_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f8_f16_mk_kn_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f8_f16_mk_kn_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f16_f8_f16_mk_kn_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f8_f16_f16_mk_kn_mn_irregular_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f8_f16_f16_mk_kn_mn_irregular_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f8_f16_f16_mk_kn_mn_irregular_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm/device_grouped_gemm_xdl_splitk_f8_f16_f16_mk_kn_mn_irregular_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f32_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f32_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f32_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f32_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f32_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f32_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f32_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_bias/device_grouped_gemm_xdl_fixed_nk_bias_f16_f16_f32_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fastgelu/device_grouped_gemm_fastgelu_xdl_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_bf16_bf16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_bf16_bf16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_bf16_bf16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_bf16_bf16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_bf16_bf16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_bf16_bf16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_bf16_bf16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_bf16_bf16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_f16_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_f16_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_f16_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_f16_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_fp8_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_fp8_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_fp8_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_fp8_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_fp8_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_fp8_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_fp8_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_fp8_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_i8_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_i8_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_i8_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_i8_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_i8_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_i8_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_i8_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk/device_grouped_gemm_xdl_fixed_nk_f16_i8_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_km_kn_mn_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_km_kn_mn_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_km_kn_mn_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_km_kn_mn_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_kn_mn_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_kn_mn_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_kn_mn_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_kn_mn_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_nk_mn_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_nk_mn_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_nk_mn_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bf16_i8_bf16_mk_nk_mn_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bias_gelu_bf16_i8_bf16_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bias_gelu_bf16_i8_bf16_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bias_gelu_bf16_i8_bf16_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bias_gelu_bf16_i8_bf16_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bias_gelu_bf16_i8_bf16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bias_gelu_bf16_i8_bf16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bias_gelu_bf16_i8_bf16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bias_gelu_bf16_i8_bf16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bias_gelu_bf16_i8_bf16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bias_gelu_bf16_i8_bf16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bias_gelu_bf16_i8_bf16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_fixed_nk_multi_abd/device_grouped_gemm_xdl_fixed_nk_bias_gelu_bf16_i8_bf16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_f16_f16_f16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_f16_f16_f16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_f16_f16_f16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_f16_f16_f16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_f16_f16_f16_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_f16_f16_f16_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_f16_f16_f16_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_f16_f16_f16_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_comp_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v1_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_default_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_default_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_default_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_default_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_kpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_mnkpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_mnpadding_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_mnpadding_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_mnpadding_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bf16_i8_bf16_mk_kn_mn_mem_v2_mnpadding_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bias_bf16_i8_bf16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bias_bf16_i8_bf16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bias_bf16_i8_bf16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bias_bf16_i8_bf16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bias_fastgelu_bf16_i8_bf16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bias_fastgelu_bf16_i8_bf16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bias_fastgelu_bf16_i8_bf16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_bias_fastgelu_bf16_i8_bf16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_fastgelu_bf16_i8_bf16_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_fastgelu_bf16_i8_bf16_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_fastgelu_bf16_i8_bf16_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/grouped_gemm_tile_loop/device_grouped_gemm_xdl_tile_loop_multiply_fastgelu_bf16_i8_bf16_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_gndhwc_3d_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_gndhwc_3d_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_gndhwc_3d_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_gndhwc_3d_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_gnhwc_2d_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_gnhwc_2d_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_gnhwc_2d_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_gnhwc_2d_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_gnwc_1d_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_gnwc_1d_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_gnwc_1d_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_gnwc_1d_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_ndhwgc_3d_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_ndhwgc_3d_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_ndhwgc_3d_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_ndhwgc_3d_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_nhwgc_2d_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_nhwgc_2d_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_nhwgc_2d_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_nhwgc_2d_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_nwgc_1d_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_nwgc_1d_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_nwgc_1d_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/image_to_column/device_image_to_column_nwgc_1d_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_f8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_f8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_f8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_f8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/device_max_pool_bwd_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/max_pool_bwd_instance_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/max_pool_bwd_instance_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/max_pool_bwd_instance_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/max_pool_bwd/max_pool_bwd_instance_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/mha/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/mha/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/mha/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/mha/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/device_groupnorm_bwd_data_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/device_groupnorm_bwd_data_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/device_groupnorm_bwd_data_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/device_groupnorm_bwd_data_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/device_layernorm2d_bwd_data_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/device_layernorm2d_bwd_data_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/device_layernorm2d_bwd_data_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/device_layernorm2d_bwd_data_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/device_layernorm2d_bwd_data_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/device_layernorm2d_bwd_data_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/device_layernorm2d_bwd_data_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/device_layernorm2d_bwd_data_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/normalization_bwd_data_instance_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/normalization_bwd_data_instance_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/normalization_bwd_data_instance_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_data/normalization_bwd_data_instance_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/device_groupnorm_bwd_gamma_beta_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/device_groupnorm_bwd_gamma_beta_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/device_groupnorm_bwd_gamma_beta_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/device_groupnorm_bwd_gamma_beta_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/device_layernorm2d_bwd_gamma_beta_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/device_layernorm2d_bwd_gamma_beta_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/device_layernorm2d_bwd_gamma_beta_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/device_layernorm2d_bwd_gamma_beta_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/device_layernorm2d_bwd_gamma_beta_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/device_layernorm2d_bwd_gamma_beta_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/device_layernorm2d_bwd_gamma_beta_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/device_layernorm2d_bwd_gamma_beta_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/normalization_bwd_gamma_beta_instance_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/normalization_bwd_gamma_beta_instance_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/normalization_bwd_gamma_beta_instance_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_bwd_gamma_beta/normalization_bwd_gamma_beta_instance_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_swish_f16_f32_f32_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_swish_f16_f32_f32_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_swish_f16_f32_f32_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_swish_f16_f32_f32_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_swish_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_swish_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_swish_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_swish_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_swish_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_swish_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_swish_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_groupnorm_fwd_swish_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm2d_fwd_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm2d_fwd_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm2d_fwd_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm2d_fwd_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm2d_fwd_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm2d_fwd_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm2d_fwd_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm2d_fwd_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm4d_fwd_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm4d_fwd_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm4d_fwd_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm4d_fwd_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm4d_fwd_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm4d_fwd_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm4d_fwd_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/device_layernorm4d_fwd_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/normalization_fwd_instance_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/normalization_fwd_instance_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/normalization_fwd/normalization_fwd_instance_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/normalization_fwd/normalization_fwd_instance_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_1d_fp16_instances.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_1d_fp16_instances.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_1d_fp16_instances.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_1d_fp16_instances.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_1d_fp32_instances.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_1d_fp32_instances.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_1d_fp32_instances.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_1d_fp32_instances.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_2d_fp16_instances.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_2d_fp16_instances.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_2d_fp16_instances.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_2d_fp16_instances.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_2d_fp32_instances.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_2d_fp32_instances.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_2d_fp32_instances.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_2d_fp32_instances.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_3d_fp16_instances.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_3d_fp16_instances.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_3d_fp16_instances.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_3d_fp16_instances.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_3d_fp32_instances.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_3d_fp32_instances.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_3d_fp32_instances.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_3d_fp32_instances.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_4d_fp16_instances.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_4d_fp16_instances.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_4d_fp16_instances.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_4d_fp16_instances.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_4d_fp32_instances.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_4d_fp32_instances.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_4d_fp32_instances.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_4d_fp32_instances.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_5d_fp16_instances.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_5d_fp16_instances.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_5d_fp16_instances.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_5d_fp16_instances.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_5d_fp32_instances.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_5d_fp32_instances.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_5d_fp32_instances.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_5d_fp32_instances.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_6d_fp16_instances.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_6d_fp16_instances.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_6d_fp16_instances.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_6d_fp16_instances.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_6d_fp32_fp8_instances.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_6d_fp32_fp8_instances.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_6d_fp32_fp8_instances.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_6d_fp32_fp8_instances.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_6d_fp32_instances.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_6d_fp32_instances.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_6d_fp32_instances.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/permute_scale/device_permute_scale_6d_fp32_instances.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_f8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_f8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_f8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_f8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_avg_pool2d_fwd_nhwc_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_f8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_f8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_f8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_f8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/device_max_pool2d_fwd_nhwc_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/pool2d_fwd_instance_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/pool2d_fwd_instance_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/pool2d_fwd_instance_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool2d_fwd/pool2d_fwd_instance_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_f8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_f8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_f8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_f8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_avg_pool3d_fwd_ndhwc_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_bf16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_bf16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_bf16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_bf16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_f16_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_f16_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_f16_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_f16_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_f32_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_f32_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_f32_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_f32_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_f8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_f8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_f8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_f8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_i8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_i8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_i8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/device_max_pool3d_fwd_ndhwc_i8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/pool_fwd_instance_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/pool_fwd_instance_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/pool_fwd_instance_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/pool3d_fwd/pool_fwd_instance_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/conv2d_quantization_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/conv2d_quantization_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/conv2d_quantization_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/conv2d_quantization_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_bias_perchannel_quantization_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_bias_perchannel_quantization_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_bias_perchannel_quantization_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_bias_perchannel_quantization_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_bias_perlayer_quantization_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_bias_perlayer_quantization_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_bias_perlayer_quantization_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_bias_perlayer_quantization_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_int8_instance.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_int8_instance.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_int8_instance.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_int8_instance.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_perchannel_quantization_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_perchannel_quantization_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_perchannel_quantization_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_perchannel_quantization_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_perlayer_quantization_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_perlayer_quantization_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_perlayer_quantization_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_dl_perlayer_quantization_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_bias_perchannel_quantization_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_bias_perchannel_quantization_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_bias_perchannel_quantization_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_bias_perchannel_quantization_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_bias_perlayer_quantization_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_bias_perlayer_quantization_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_bias_perlayer_quantization_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_bias_perlayer_quantization_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_int8_instance.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_int8_instance.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_int8_instance.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_int8_instance.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_perchannel_quantization_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_perchannel_quantization_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_perchannel_quantization_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_perchannel_quantization_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_perlayer_quantization_int8_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_perlayer_quantization_int8_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_perlayer_quantization_int8_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/conv2d_fwd/device_conv2d_xdl_perlayer_quantization_int8_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_instance.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_instance.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_instance.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_instance.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_dl_c_shuffle_i8_i8_i8_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_instance.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_instance.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_instance.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_instance.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_km_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_km_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_km_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_km_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_km_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_km_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_km_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_km_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_mk_kn_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_mk_kn_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_mk_kn_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_mk_kn_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_mk_nk_mn_instance.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_mk_nk_mn_instance.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_mk_nk_mn_instance.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/device_gemm_quantization_xdl_c_shuffle_i8_i8_i8_mk_nk_mn_instance.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/gemm_quantization_common.hpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/gemm_quantization_common.hpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/quantization/gemm/gemm_quantization_common.hpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/quantization/gemm/gemm_quantization_common.hpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_amax.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_amax.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_amax.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_amax.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_max.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_max.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_max.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_max.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_min.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_min.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_min.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_min.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_norm2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_norm2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_norm2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_b16_f32_b16_norm2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_amax.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_amax.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_amax.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_amax.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_max.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_max.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_max.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_max.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_min.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_min.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_min.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f16_f16_min.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_norm2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_norm2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_norm2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f16_f32_f16_norm2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_amax.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_amax.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_amax.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_amax.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_max.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_max.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_max.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_max.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_min.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_min.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_min.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_min.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_norm2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_norm2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_norm2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f32_f32_norm2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_norm2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_norm2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_norm2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f32_f64_f32_norm2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_amax.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_amax.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_amax.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_amax.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_max.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_max.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_max.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_max.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_min.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_min.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_min.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_min.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_norm2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_norm2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_norm2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_f64_f64_f64_norm2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i32_i8_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_amax.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_amax.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_amax.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_amax.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_max.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_max.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_max.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_max.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_min.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_min.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_min.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_blockwise_i8_i8_i8_min.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_b16_f32_f32_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f16_f32_f32_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f32_f32_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f32_f64_f32_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_multiblock_atomic_add_f64_f64_f64_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_amax.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_amax.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_amax.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_amax.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_max.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_max.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_max.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_max.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_min.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_min.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_min.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_min.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_norm2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_norm2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_norm2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_b16_f32_b16_norm2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_amax.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_amax.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_amax.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_amax.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_max.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_max.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_max.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_max.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_min.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_min.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_min.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f16_f16_min.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_norm2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_norm2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_norm2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f16_f32_f16_norm2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_amax.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_amax.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_amax.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_amax.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_max.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_max.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_max.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_max.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_min.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_min.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_min.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_min.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_norm2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_norm2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_norm2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f32_f32_norm2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_norm2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_norm2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_norm2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f32_f64_f32_norm2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_amax.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_amax.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_amax.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_amax.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_max.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_max.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_max.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_max.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_min.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_min.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_min.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_min.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_norm2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_norm2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_norm2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_f64_f64_f64_norm2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_add.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_add.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_add.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_add.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_avg.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_avg.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_avg.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i32_i8_avg.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_amax.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_amax.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_amax.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_amax.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_max.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_max.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_max.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_max.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_min.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_min.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_min.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/reduce/device_reduce_instance_threadwise_i8_i8_i8_min.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce3.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce3.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce3.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank3_reduce3.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce3.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce3.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce3.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce3.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce4.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce4.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce4.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f16_f16_instance_rank4_reduce4.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce3.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce3.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce3.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank3_reduce3.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce1.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce1.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce1.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce1.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce2.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce2.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce2.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce2.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce3.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce3.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce3.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce3.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce4.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce4.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce4.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/softmax/device_softmax_f32_f32_instance_rank4_reduce4.cpp diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/transpose/CMakeLists.txt b/projects/composablekernel/library/src/tensor_operation_instance/gpu/transpose/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/transpose/CMakeLists.txt rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/transpose/CMakeLists.txt diff --git a/composable_kernel/library/src/tensor_operation_instance/gpu/transpose/device_transpose_instances_3d.cpp b/projects/composablekernel/library/src/tensor_operation_instance/gpu/transpose/device_transpose_instances_3d.cpp similarity index 100% rename from composable_kernel/library/src/tensor_operation_instance/gpu/transpose/device_transpose_instances_3d.cpp rename to projects/composablekernel/library/src/tensor_operation_instance/gpu/transpose/device_transpose_instances_3d.cpp diff --git a/composable_kernel/library/src/utility/CMakeLists.txt b/projects/composablekernel/library/src/utility/CMakeLists.txt similarity index 100% rename from composable_kernel/library/src/utility/CMakeLists.txt rename to projects/composablekernel/library/src/utility/CMakeLists.txt diff --git a/composable_kernel/library/src/utility/convolution_parameter.cpp b/projects/composablekernel/library/src/utility/convolution_parameter.cpp similarity index 100% rename from composable_kernel/library/src/utility/convolution_parameter.cpp rename to projects/composablekernel/library/src/utility/convolution_parameter.cpp diff --git a/composable_kernel/library/src/utility/device_memory.cpp b/projects/composablekernel/library/src/utility/device_memory.cpp similarity index 100% rename from composable_kernel/library/src/utility/device_memory.cpp rename to projects/composablekernel/library/src/utility/device_memory.cpp diff --git a/composable_kernel/library/src/utility/host_tensor.cpp b/projects/composablekernel/library/src/utility/host_tensor.cpp similarity index 100% rename from composable_kernel/library/src/utility/host_tensor.cpp rename to projects/composablekernel/library/src/utility/host_tensor.cpp diff --git a/composable_kernel/profiler/CMakeLists.txt b/projects/composablekernel/profiler/CMakeLists.txt similarity index 100% rename from composable_kernel/profiler/CMakeLists.txt rename to projects/composablekernel/profiler/CMakeLists.txt diff --git a/composable_kernel/profiler/README.md b/projects/composablekernel/profiler/README.md similarity index 100% rename from composable_kernel/profiler/README.md rename to projects/composablekernel/profiler/README.md diff --git a/composable_kernel/profiler/include/profiler/data_type_enum.hpp b/projects/composablekernel/profiler/include/profiler/data_type_enum.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/data_type_enum.hpp rename to projects/composablekernel/profiler/include/profiler/data_type_enum.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_avg_pool2d_bwd_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_avg_pool2d_bwd_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_avg_pool2d_bwd_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_avg_pool2d_bwd_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_avg_pool3d_bwd_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_avg_pool3d_bwd_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_avg_pool3d_bwd_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_avg_pool3d_bwd_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_batched_gemm_add_relu_gemm_add_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_batched_gemm_add_relu_gemm_add_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_batched_gemm_add_relu_gemm_add_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_batched_gemm_add_relu_gemm_add_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_batched_gemm_b_scale_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_batched_gemm_b_scale_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_batched_gemm_b_scale_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_batched_gemm_b_scale_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_batched_gemm_bias_softmax_gemm_permute_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_batched_gemm_bias_softmax_gemm_permute_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_batched_gemm_bias_softmax_gemm_permute_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_batched_gemm_bias_softmax_gemm_permute_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_batched_gemm_gemm_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_batched_gemm_gemm_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_batched_gemm_gemm_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_batched_gemm_gemm_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_batched_gemm_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_batched_gemm_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_batched_gemm_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_batched_gemm_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_batched_gemm_reduce_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_batched_gemm_reduce_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_batched_gemm_reduce_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_batched_gemm_reduce_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_batched_gemm_softmax_gemm_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_batched_gemm_softmax_gemm_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_batched_gemm_softmax_gemm_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_batched_gemm_softmax_gemm_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_batched_gemm_softmax_gemm_permute_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_batched_gemm_softmax_gemm_permute_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_batched_gemm_softmax_gemm_permute_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_batched_gemm_softmax_gemm_permute_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_batchnorm_backward_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_batchnorm_backward_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_batchnorm_backward_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_batchnorm_backward_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_batchnorm_forward_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_batchnorm_forward_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_batchnorm_forward_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_batchnorm_forward_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_batchnorm_infer_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_batchnorm_infer_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_batchnorm_infer_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_batchnorm_infer_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_contraction_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_contraction_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_contraction_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_contraction_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_contraction_utils.hpp b/projects/composablekernel/profiler/include/profiler/profile_contraction_utils.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_contraction_utils.hpp rename to projects/composablekernel/profiler/include/profiler/profile_contraction_utils.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_conv_bwd_data_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_conv_bwd_data_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_conv_bwd_data_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_conv_bwd_data_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_conv_fwd_bias_relu_add_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_conv_fwd_bias_relu_add_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_conv_fwd_bias_relu_add_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_conv_fwd_bias_relu_add_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_conv_fwd_bias_relu_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_conv_fwd_bias_relu_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_conv_fwd_bias_relu_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_conv_fwd_bias_relu_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_conv_fwd_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_conv_fwd_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_conv_fwd_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_conv_fwd_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_conv_tensor_rearrange_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_conv_tensor_rearrange_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_conv_tensor_rearrange_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_conv_tensor_rearrange_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_elementwise_layernorm_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_elementwise_layernorm_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_elementwise_layernorm_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_elementwise_layernorm_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_ab_scale_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_ab_scale_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_ab_scale_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_ab_scale_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_add_add_fastgelu_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_add_add_fastgelu_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_add_add_fastgelu_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_add_add_fastgelu_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_add_fastgelu_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_add_fastgelu_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_add_fastgelu_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_add_fastgelu_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_add_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_add_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_add_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_add_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_add_multiply_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_add_multiply_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_add_multiply_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_add_multiply_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_add_relu_add_layernorm_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_add_relu_add_layernorm_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_add_relu_add_layernorm_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_add_relu_add_layernorm_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_add_relu_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_add_relu_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_add_relu_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_add_relu_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_add_silu_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_add_silu_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_add_silu_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_add_silu_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_b_scale_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_b_scale_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_b_scale_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_b_scale_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_bias_add_reduce_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_bias_add_reduce_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_bias_add_reduce_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_bias_add_reduce_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_bilinear_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_bilinear_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_bilinear_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_bilinear_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_fastgelu_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_fastgelu_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_fastgelu_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_fastgelu_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_multiply_add_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_multiply_add_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_multiply_add_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_multiply_add_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_multiply_multiply_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_multiply_multiply_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_multiply_multiply_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_multiply_multiply_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_multiply_multiply_wp_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_multiply_multiply_wp_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_multiply_multiply_wp_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_multiply_multiply_wp_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_reduce_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_reduce_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_reduce_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_reduce_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_splitk_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_splitk_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_splitk_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_splitk_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_streamk_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_streamk_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_streamk_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_streamk_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_universal_batched_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_universal_batched_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_universal_batched_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_universal_batched_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_universal_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_universal_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_universal_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_universal_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_universal_reduce_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_universal_reduce_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_universal_reduce_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_universal_reduce_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_gemm_universal_streamk_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_gemm_universal_streamk_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_gemm_universal_streamk_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_gemm_universal_streamk_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_grouped_conv_bwd_data_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_grouped_conv_bwd_data_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_grouped_conv_bwd_data_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_grouped_conv_bwd_data_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_grouped_conv_bwd_weight_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_grouped_conv_bwd_weight_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_grouped_conv_bwd_weight_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_grouped_conv_bwd_weight_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_grouped_conv_fwd_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_grouped_conv_fwd_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_grouped_conv_fwd_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_grouped_conv_fwd_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_grouped_conv_fwd_outelementop_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_grouped_conv_fwd_outelementop_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_grouped_conv_fwd_outelementop_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_grouped_conv_fwd_outelementop_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_grouped_gemm_fastgelu_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_grouped_gemm_fastgelu_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_grouped_gemm_fastgelu_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_grouped_gemm_fastgelu_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_grouped_gemm_fixed_nk_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_grouped_gemm_fixed_nk_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_grouped_gemm_fixed_nk_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_grouped_gemm_fixed_nk_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_grouped_gemm_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_grouped_gemm_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_grouped_gemm_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_grouped_gemm_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_grouped_gemm_multiply_tile_loop_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_grouped_gemm_multiply_tile_loop_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_grouped_gemm_multiply_tile_loop_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_grouped_gemm_multiply_tile_loop_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_grouped_gemm_tile_loop_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_grouped_gemm_tile_loop_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_grouped_gemm_tile_loop_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_grouped_gemm_tile_loop_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_groupnorm_bwd_data_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_groupnorm_bwd_data_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_groupnorm_bwd_data_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_groupnorm_bwd_data_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_groupnorm_bwd_gamma_beta_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_groupnorm_bwd_gamma_beta_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_groupnorm_bwd_gamma_beta_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_groupnorm_bwd_gamma_beta_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_groupnorm_fwd_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_groupnorm_fwd_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_groupnorm_fwd_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_groupnorm_fwd_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_layernorm_bwd_data_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_layernorm_bwd_data_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_layernorm_bwd_data_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_layernorm_bwd_data_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_layernorm_bwd_gamma_beta_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_layernorm_bwd_gamma_beta_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_layernorm_bwd_gamma_beta_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_layernorm_bwd_gamma_beta_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_layernorm_fwd_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_layernorm_fwd_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_layernorm_fwd_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_layernorm_fwd_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_max_pool2d_bwd_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_max_pool2d_bwd_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_max_pool2d_bwd_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_max_pool2d_bwd_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_max_pool3d_bwd_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_max_pool3d_bwd_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_max_pool3d_bwd_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_max_pool3d_bwd_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_permute_scale_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_permute_scale_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_permute_scale_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_permute_scale_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_pool2d_fwd_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_pool2d_fwd_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_pool2d_fwd_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_pool2d_fwd_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_pool3d_fwd_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_pool3d_fwd_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_pool3d_fwd_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_pool3d_fwd_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_reduce_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_reduce_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_reduce_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_reduce_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_softmax_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_softmax_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_softmax_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_softmax_impl.hpp diff --git a/composable_kernel/profiler/include/profiler/profile_transpose_impl.hpp b/projects/composablekernel/profiler/include/profiler/profile_transpose_impl.hpp similarity index 100% rename from composable_kernel/profiler/include/profiler/profile_transpose_impl.hpp rename to projects/composablekernel/profiler/include/profiler/profile_transpose_impl.hpp diff --git a/composable_kernel/profiler/src/CMakeLists.txt b/projects/composablekernel/profiler/src/CMakeLists.txt similarity index 100% rename from composable_kernel/profiler/src/CMakeLists.txt rename to projects/composablekernel/profiler/src/CMakeLists.txt diff --git a/composable_kernel/profiler/src/profile_avg_pool2d_bwd.cpp b/projects/composablekernel/profiler/src/profile_avg_pool2d_bwd.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_avg_pool2d_bwd.cpp rename to projects/composablekernel/profiler/src/profile_avg_pool2d_bwd.cpp diff --git a/composable_kernel/profiler/src/profile_avg_pool3d_bwd.cpp b/projects/composablekernel/profiler/src/profile_avg_pool3d_bwd.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_avg_pool3d_bwd.cpp rename to projects/composablekernel/profiler/src/profile_avg_pool3d_bwd.cpp diff --git a/composable_kernel/profiler/src/profile_batched_gemm.cpp b/projects/composablekernel/profiler/src/profile_batched_gemm.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_batched_gemm.cpp rename to projects/composablekernel/profiler/src/profile_batched_gemm.cpp diff --git a/composable_kernel/profiler/src/profile_batched_gemm_add_relu_gemm_add.cpp b/projects/composablekernel/profiler/src/profile_batched_gemm_add_relu_gemm_add.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_batched_gemm_add_relu_gemm_add.cpp rename to projects/composablekernel/profiler/src/profile_batched_gemm_add_relu_gemm_add.cpp diff --git a/composable_kernel/profiler/src/profile_batched_gemm_b_scale.cpp b/projects/composablekernel/profiler/src/profile_batched_gemm_b_scale.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_batched_gemm_b_scale.cpp rename to projects/composablekernel/profiler/src/profile_batched_gemm_b_scale.cpp diff --git a/composable_kernel/profiler/src/profile_batched_gemm_gemm.cpp b/projects/composablekernel/profiler/src/profile_batched_gemm_gemm.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_batched_gemm_gemm.cpp rename to projects/composablekernel/profiler/src/profile_batched_gemm_gemm.cpp diff --git a/composable_kernel/profiler/src/profile_batched_gemm_multi_d.cpp b/projects/composablekernel/profiler/src/profile_batched_gemm_multi_d.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_batched_gemm_multi_d.cpp rename to projects/composablekernel/profiler/src/profile_batched_gemm_multi_d.cpp diff --git a/composable_kernel/profiler/src/profile_batched_gemm_reduce.cpp b/projects/composablekernel/profiler/src/profile_batched_gemm_reduce.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_batched_gemm_reduce.cpp rename to projects/composablekernel/profiler/src/profile_batched_gemm_reduce.cpp diff --git a/composable_kernel/profiler/src/profile_batchnorm_bwd.cpp b/projects/composablekernel/profiler/src/profile_batchnorm_bwd.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_batchnorm_bwd.cpp rename to projects/composablekernel/profiler/src/profile_batchnorm_bwd.cpp diff --git a/composable_kernel/profiler/src/profile_batchnorm_fwd.cpp b/projects/composablekernel/profiler/src/profile_batchnorm_fwd.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_batchnorm_fwd.cpp rename to projects/composablekernel/profiler/src/profile_batchnorm_fwd.cpp diff --git a/composable_kernel/profiler/src/profile_batchnorm_infer.cpp b/projects/composablekernel/profiler/src/profile_batchnorm_infer.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_batchnorm_infer.cpp rename to projects/composablekernel/profiler/src/profile_batchnorm_infer.cpp diff --git a/composable_kernel/profiler/src/profile_contraction_bilinear.cpp b/projects/composablekernel/profiler/src/profile_contraction_bilinear.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_contraction_bilinear.cpp rename to projects/composablekernel/profiler/src/profile_contraction_bilinear.cpp diff --git a/composable_kernel/profiler/src/profile_contraction_scale.cpp b/projects/composablekernel/profiler/src/profile_contraction_scale.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_contraction_scale.cpp rename to projects/composablekernel/profiler/src/profile_contraction_scale.cpp diff --git a/composable_kernel/profiler/src/profile_conv_bwd_data.cpp b/projects/composablekernel/profiler/src/profile_conv_bwd_data.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_conv_bwd_data.cpp rename to projects/composablekernel/profiler/src/profile_conv_bwd_data.cpp diff --git a/composable_kernel/profiler/src/profile_conv_fwd.cpp b/projects/composablekernel/profiler/src/profile_conv_fwd.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_conv_fwd.cpp rename to projects/composablekernel/profiler/src/profile_conv_fwd.cpp diff --git a/composable_kernel/profiler/src/profile_conv_fwd_bias_relu.cpp b/projects/composablekernel/profiler/src/profile_conv_fwd_bias_relu.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_conv_fwd_bias_relu.cpp rename to projects/composablekernel/profiler/src/profile_conv_fwd_bias_relu.cpp diff --git a/composable_kernel/profiler/src/profile_conv_fwd_bias_relu_add.cpp b/projects/composablekernel/profiler/src/profile_conv_fwd_bias_relu_add.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_conv_fwd_bias_relu_add.cpp rename to projects/composablekernel/profiler/src/profile_conv_fwd_bias_relu_add.cpp diff --git a/composable_kernel/profiler/src/profile_conv_tensor_rearrange.cpp b/projects/composablekernel/profiler/src/profile_conv_tensor_rearrange.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_conv_tensor_rearrange.cpp rename to projects/composablekernel/profiler/src/profile_conv_tensor_rearrange.cpp diff --git a/composable_kernel/profiler/src/profile_gemm.cpp b/projects/composablekernel/profiler/src/profile_gemm.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm.cpp rename to projects/composablekernel/profiler/src/profile_gemm.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_ab_scale.cpp b/projects/composablekernel/profiler/src/profile_gemm_ab_scale.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_ab_scale.cpp rename to projects/composablekernel/profiler/src/profile_gemm_ab_scale.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_add.cpp b/projects/composablekernel/profiler/src/profile_gemm_add.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_add.cpp rename to projects/composablekernel/profiler/src/profile_gemm_add.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_add_add_fastgelu.cpp b/projects/composablekernel/profiler/src/profile_gemm_add_add_fastgelu.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_add_add_fastgelu.cpp rename to projects/composablekernel/profiler/src/profile_gemm_add_add_fastgelu.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_add_fastgelu.cpp b/projects/composablekernel/profiler/src/profile_gemm_add_fastgelu.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_add_fastgelu.cpp rename to projects/composablekernel/profiler/src/profile_gemm_add_fastgelu.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_add_multiply.cpp b/projects/composablekernel/profiler/src/profile_gemm_add_multiply.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_add_multiply.cpp rename to projects/composablekernel/profiler/src/profile_gemm_add_multiply.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_add_relu.cpp b/projects/composablekernel/profiler/src/profile_gemm_add_relu.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_add_relu.cpp rename to projects/composablekernel/profiler/src/profile_gemm_add_relu.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_add_relu_add_layernorm.cpp b/projects/composablekernel/profiler/src/profile_gemm_add_relu_add_layernorm.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_add_relu_add_layernorm.cpp rename to projects/composablekernel/profiler/src/profile_gemm_add_relu_add_layernorm.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_add_silu.cpp b/projects/composablekernel/profiler/src/profile_gemm_add_silu.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_add_silu.cpp rename to projects/composablekernel/profiler/src/profile_gemm_add_silu.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_b_scale.cpp b/projects/composablekernel/profiler/src/profile_gemm_b_scale.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_b_scale.cpp rename to projects/composablekernel/profiler/src/profile_gemm_b_scale.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_bias_add_reduce.cpp b/projects/composablekernel/profiler/src/profile_gemm_bias_add_reduce.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_bias_add_reduce.cpp rename to projects/composablekernel/profiler/src/profile_gemm_bias_add_reduce.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_bilinear.cpp b/projects/composablekernel/profiler/src/profile_gemm_bilinear.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_bilinear.cpp rename to projects/composablekernel/profiler/src/profile_gemm_bilinear.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_fastgelu.cpp b/projects/composablekernel/profiler/src/profile_gemm_fastgelu.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_fastgelu.cpp rename to projects/composablekernel/profiler/src/profile_gemm_fastgelu.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_multiply_add.cpp b/projects/composablekernel/profiler/src/profile_gemm_multiply_add.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_multiply_add.cpp rename to projects/composablekernel/profiler/src/profile_gemm_multiply_add.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_multiply_multiply.cpp b/projects/composablekernel/profiler/src/profile_gemm_multiply_multiply.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_multiply_multiply.cpp rename to projects/composablekernel/profiler/src/profile_gemm_multiply_multiply.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_multiply_multiply_wp.cpp b/projects/composablekernel/profiler/src/profile_gemm_multiply_multiply_wp.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_multiply_multiply_wp.cpp rename to projects/composablekernel/profiler/src/profile_gemm_multiply_multiply_wp.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_reduce.cpp b/projects/composablekernel/profiler/src/profile_gemm_reduce.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_reduce.cpp rename to projects/composablekernel/profiler/src/profile_gemm_reduce.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_splitk.cpp b/projects/composablekernel/profiler/src/profile_gemm_splitk.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_splitk.cpp rename to projects/composablekernel/profiler/src/profile_gemm_splitk.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_streamk.cpp b/projects/composablekernel/profiler/src/profile_gemm_streamk.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_streamk.cpp rename to projects/composablekernel/profiler/src/profile_gemm_streamk.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_universal.cpp b/projects/composablekernel/profiler/src/profile_gemm_universal.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_universal.cpp rename to projects/composablekernel/profiler/src/profile_gemm_universal.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_universal_batched.cpp b/projects/composablekernel/profiler/src/profile_gemm_universal_batched.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_universal_batched.cpp rename to projects/composablekernel/profiler/src/profile_gemm_universal_batched.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_universal_reduce.cpp b/projects/composablekernel/profiler/src/profile_gemm_universal_reduce.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_universal_reduce.cpp rename to projects/composablekernel/profiler/src/profile_gemm_universal_reduce.cpp diff --git a/composable_kernel/profiler/src/profile_gemm_universal_streamk.cpp b/projects/composablekernel/profiler/src/profile_gemm_universal_streamk.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_gemm_universal_streamk.cpp rename to projects/composablekernel/profiler/src/profile_gemm_universal_streamk.cpp diff --git a/composable_kernel/profiler/src/profile_grouped_conv_bwd_data.cpp b/projects/composablekernel/profiler/src/profile_grouped_conv_bwd_data.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_grouped_conv_bwd_data.cpp rename to projects/composablekernel/profiler/src/profile_grouped_conv_bwd_data.cpp diff --git a/composable_kernel/profiler/src/profile_grouped_conv_bwd_weight.cpp b/projects/composablekernel/profiler/src/profile_grouped_conv_bwd_weight.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_grouped_conv_bwd_weight.cpp rename to projects/composablekernel/profiler/src/profile_grouped_conv_bwd_weight.cpp diff --git a/composable_kernel/profiler/src/profile_grouped_conv_fwd.cpp b/projects/composablekernel/profiler/src/profile_grouped_conv_fwd.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_grouped_conv_fwd.cpp rename to projects/composablekernel/profiler/src/profile_grouped_conv_fwd.cpp diff --git a/composable_kernel/profiler/src/profile_grouped_conv_fwd_outelementop.cpp b/projects/composablekernel/profiler/src/profile_grouped_conv_fwd_outelementop.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_grouped_conv_fwd_outelementop.cpp rename to projects/composablekernel/profiler/src/profile_grouped_conv_fwd_outelementop.cpp diff --git a/composable_kernel/profiler/src/profile_grouped_gemm.cpp b/projects/composablekernel/profiler/src/profile_grouped_gemm.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_grouped_gemm.cpp rename to projects/composablekernel/profiler/src/profile_grouped_gemm.cpp diff --git a/composable_kernel/profiler/src/profile_grouped_gemm_fastgelu.cpp b/projects/composablekernel/profiler/src/profile_grouped_gemm_fastgelu.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_grouped_gemm_fastgelu.cpp rename to projects/composablekernel/profiler/src/profile_grouped_gemm_fastgelu.cpp diff --git a/composable_kernel/profiler/src/profile_grouped_gemm_fixed_nk.cpp b/projects/composablekernel/profiler/src/profile_grouped_gemm_fixed_nk.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_grouped_gemm_fixed_nk.cpp rename to projects/composablekernel/profiler/src/profile_grouped_gemm_fixed_nk.cpp diff --git a/composable_kernel/profiler/src/profile_grouped_gemm_multiply_tile_loop.cpp b/projects/composablekernel/profiler/src/profile_grouped_gemm_multiply_tile_loop.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_grouped_gemm_multiply_tile_loop.cpp rename to projects/composablekernel/profiler/src/profile_grouped_gemm_multiply_tile_loop.cpp diff --git a/composable_kernel/profiler/src/profile_grouped_gemm_tile_loop.cpp b/projects/composablekernel/profiler/src/profile_grouped_gemm_tile_loop.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_grouped_gemm_tile_loop.cpp rename to projects/composablekernel/profiler/src/profile_grouped_gemm_tile_loop.cpp diff --git a/composable_kernel/profiler/src/profile_groupnorm_bwd_data.cpp b/projects/composablekernel/profiler/src/profile_groupnorm_bwd_data.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_groupnorm_bwd_data.cpp rename to projects/composablekernel/profiler/src/profile_groupnorm_bwd_data.cpp diff --git a/composable_kernel/profiler/src/profile_groupnorm_bwd_gamma_beta.cpp b/projects/composablekernel/profiler/src/profile_groupnorm_bwd_gamma_beta.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_groupnorm_bwd_gamma_beta.cpp rename to projects/composablekernel/profiler/src/profile_groupnorm_bwd_gamma_beta.cpp diff --git a/composable_kernel/profiler/src/profile_groupnorm_fwd.cpp b/projects/composablekernel/profiler/src/profile_groupnorm_fwd.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_groupnorm_fwd.cpp rename to projects/composablekernel/profiler/src/profile_groupnorm_fwd.cpp diff --git a/composable_kernel/profiler/src/profile_layernorm_bwd_data.cpp b/projects/composablekernel/profiler/src/profile_layernorm_bwd_data.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_layernorm_bwd_data.cpp rename to projects/composablekernel/profiler/src/profile_layernorm_bwd_data.cpp diff --git a/composable_kernel/profiler/src/profile_layernorm_bwd_gamma_beta.cpp b/projects/composablekernel/profiler/src/profile_layernorm_bwd_gamma_beta.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_layernorm_bwd_gamma_beta.cpp rename to projects/composablekernel/profiler/src/profile_layernorm_bwd_gamma_beta.cpp diff --git a/composable_kernel/profiler/src/profile_layernorm_fwd.cpp b/projects/composablekernel/profiler/src/profile_layernorm_fwd.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_layernorm_fwd.cpp rename to projects/composablekernel/profiler/src/profile_layernorm_fwd.cpp diff --git a/composable_kernel/profiler/src/profile_max_pool2d_bwd.cpp b/projects/composablekernel/profiler/src/profile_max_pool2d_bwd.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_max_pool2d_bwd.cpp rename to projects/composablekernel/profiler/src/profile_max_pool2d_bwd.cpp diff --git a/composable_kernel/profiler/src/profile_max_pool2d_fwd.cpp b/projects/composablekernel/profiler/src/profile_max_pool2d_fwd.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_max_pool2d_fwd.cpp rename to projects/composablekernel/profiler/src/profile_max_pool2d_fwd.cpp diff --git a/composable_kernel/profiler/src/profile_max_pool3d_bwd.cpp b/projects/composablekernel/profiler/src/profile_max_pool3d_bwd.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_max_pool3d_bwd.cpp rename to projects/composablekernel/profiler/src/profile_max_pool3d_bwd.cpp diff --git a/composable_kernel/profiler/src/profile_permute_scale.cpp b/projects/composablekernel/profiler/src/profile_permute_scale.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_permute_scale.cpp rename to projects/composablekernel/profiler/src/profile_permute_scale.cpp diff --git a/composable_kernel/profiler/src/profile_pool3d_fwd.cpp b/projects/composablekernel/profiler/src/profile_pool3d_fwd.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_pool3d_fwd.cpp rename to projects/composablekernel/profiler/src/profile_pool3d_fwd.cpp diff --git a/composable_kernel/profiler/src/profile_reduce.cpp b/projects/composablekernel/profiler/src/profile_reduce.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_reduce.cpp rename to projects/composablekernel/profiler/src/profile_reduce.cpp diff --git a/composable_kernel/profiler/src/profile_softmax.cpp b/projects/composablekernel/profiler/src/profile_softmax.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_softmax.cpp rename to projects/composablekernel/profiler/src/profile_softmax.cpp diff --git a/composable_kernel/profiler/src/profile_transpose.cpp b/projects/composablekernel/profiler/src/profile_transpose.cpp similarity index 100% rename from composable_kernel/profiler/src/profile_transpose.cpp rename to projects/composablekernel/profiler/src/profile_transpose.cpp diff --git a/composable_kernel/profiler/src/profiler.cpp b/projects/composablekernel/profiler/src/profiler.cpp similarity index 100% rename from composable_kernel/profiler/src/profiler.cpp rename to projects/composablekernel/profiler/src/profiler.cpp diff --git a/composable_kernel/profiler/src/profiler_operation_registry.hpp b/projects/composablekernel/profiler/src/profiler_operation_registry.hpp similarity index 100% rename from composable_kernel/profiler/src/profiler_operation_registry.hpp rename to projects/composablekernel/profiler/src/profiler_operation_registry.hpp diff --git a/composable_kernel/pyproject.toml b/projects/composablekernel/pyproject.toml similarity index 100% rename from composable_kernel/pyproject.toml rename to projects/composablekernel/pyproject.toml diff --git a/Tensile/Tensile/Utilities/__init__.py b/projects/composablekernel/python/ck4inductor/__init__.py similarity index 100% rename from Tensile/Tensile/Utilities/__init__.py rename to projects/composablekernel/python/ck4inductor/__init__.py diff --git a/composable_kernel/python/ck4inductor/batched_universal_gemm/gen_instances.py b/projects/composablekernel/python/ck4inductor/batched_universal_gemm/gen_instances.py similarity index 100% rename from composable_kernel/python/ck4inductor/batched_universal_gemm/gen_instances.py rename to projects/composablekernel/python/ck4inductor/batched_universal_gemm/gen_instances.py diff --git a/composable_kernel/python/ck4inductor/batched_universal_gemm/op.py b/projects/composablekernel/python/ck4inductor/batched_universal_gemm/op.py similarity index 100% rename from composable_kernel/python/ck4inductor/batched_universal_gemm/op.py rename to projects/composablekernel/python/ck4inductor/batched_universal_gemm/op.py diff --git a/composable_kernel/python/ck4inductor/grouped_conv_fwd/gen_instances.py b/projects/composablekernel/python/ck4inductor/grouped_conv_fwd/gen_instances.py similarity index 100% rename from composable_kernel/python/ck4inductor/grouped_conv_fwd/gen_instances.py rename to projects/composablekernel/python/ck4inductor/grouped_conv_fwd/gen_instances.py diff --git a/composable_kernel/python/ck4inductor/grouped_conv_fwd/op.py b/projects/composablekernel/python/ck4inductor/grouped_conv_fwd/op.py similarity index 100% rename from composable_kernel/python/ck4inductor/grouped_conv_fwd/op.py rename to projects/composablekernel/python/ck4inductor/grouped_conv_fwd/op.py diff --git a/composable_kernel/python/ck4inductor/universal_gemm/gen_instances.py b/projects/composablekernel/python/ck4inductor/universal_gemm/gen_instances.py similarity index 100% rename from composable_kernel/python/ck4inductor/universal_gemm/gen_instances.py rename to projects/composablekernel/python/ck4inductor/universal_gemm/gen_instances.py diff --git a/composable_kernel/python/ck4inductor/universal_gemm/op.py b/projects/composablekernel/python/ck4inductor/universal_gemm/op.py similarity index 100% rename from composable_kernel/python/ck4inductor/universal_gemm/op.py rename to projects/composablekernel/python/ck4inductor/universal_gemm/op.py diff --git a/composable_kernel/python/ck4inductor/util.py b/projects/composablekernel/python/ck4inductor/util.py similarity index 100% rename from composable_kernel/python/ck4inductor/util.py rename to projects/composablekernel/python/ck4inductor/util.py diff --git a/composable_kernel/python/test/test_gen_instances.py b/projects/composablekernel/python/test/test_gen_instances.py similarity index 100% rename from composable_kernel/python/test/test_gen_instances.py rename to projects/composablekernel/python/test/test_gen_instances.py diff --git a/composable_kernel/rbuild.ini b/projects/composablekernel/rbuild.ini similarity index 100% rename from composable_kernel/rbuild.ini rename to projects/composablekernel/rbuild.ini diff --git a/composable_kernel/requirements.txt b/projects/composablekernel/requirements.txt similarity index 100% rename from composable_kernel/requirements.txt rename to projects/composablekernel/requirements.txt diff --git a/composable_kernel/script/check_copyright_year.sh b/projects/composablekernel/script/check_copyright_year.sh similarity index 100% rename from composable_kernel/script/check_copyright_year.sh rename to projects/composablekernel/script/check_copyright_year.sh diff --git a/composable_kernel/script/clang-format-overwrite.sh b/projects/composablekernel/script/clang-format-overwrite.sh similarity index 100% rename from composable_kernel/script/clang-format-overwrite.sh rename to projects/composablekernel/script/clang-format-overwrite.sh diff --git a/composable_kernel/script/cmake-ck-dev.sh b/projects/composablekernel/script/cmake-ck-dev.sh similarity index 100% rename from composable_kernel/script/cmake-ck-dev.sh rename to projects/composablekernel/script/cmake-ck-dev.sh diff --git a/composable_kernel/script/cmake-ck-release.sh b/projects/composablekernel/script/cmake-ck-release.sh similarity index 100% rename from composable_kernel/script/cmake-ck-release.sh rename to projects/composablekernel/script/cmake-ck-release.sh diff --git a/composable_kernel/script/convert_miopen_driver_to_profiler.py b/projects/composablekernel/script/convert_miopen_driver_to_profiler.py similarity index 100% rename from composable_kernel/script/convert_miopen_driver_to_profiler.py rename to projects/composablekernel/script/convert_miopen_driver_to_profiler.py diff --git a/composable_kernel/script/count_vgpr.sh b/projects/composablekernel/script/count_vgpr.sh similarity index 100% rename from composable_kernel/script/count_vgpr.sh rename to projects/composablekernel/script/count_vgpr.sh diff --git a/composable_kernel/script/hip_fatbin_insert b/projects/composablekernel/script/hip_fatbin_insert similarity index 100% rename from composable_kernel/script/hip_fatbin_insert rename to projects/composablekernel/script/hip_fatbin_insert diff --git a/MIOpen/src/composable_kernel/script/hipclang_opt.sh b/projects/composablekernel/script/hipclang_opt.sh similarity index 100% rename from MIOpen/src/composable_kernel/script/hipclang_opt.sh rename to projects/composablekernel/script/hipclang_opt.sh diff --git a/composable_kernel/script/install_precommit.sh b/projects/composablekernel/script/install_precommit.sh similarity index 100% rename from composable_kernel/script/install_precommit.sh rename to projects/composablekernel/script/install_precommit.sh diff --git a/composable_kernel/script/process_perf_data.py b/projects/composablekernel/script/process_perf_data.py similarity index 100% rename from composable_kernel/script/process_perf_data.py rename to projects/composablekernel/script/process_perf_data.py diff --git a/composable_kernel/script/process_perf_data.sh b/projects/composablekernel/script/process_perf_data.sh similarity index 100% rename from composable_kernel/script/process_perf_data.sh rename to projects/composablekernel/script/process_perf_data.sh diff --git a/composable_kernel/script/process_qa_data.sh b/projects/composablekernel/script/process_qa_data.sh similarity index 100% rename from composable_kernel/script/process_qa_data.sh rename to projects/composablekernel/script/process_qa_data.sh diff --git a/composable_kernel/script/profile_batched_gemm.sh b/projects/composablekernel/script/profile_batched_gemm.sh similarity index 100% rename from composable_kernel/script/profile_batched_gemm.sh rename to projects/composablekernel/script/profile_batched_gemm.sh diff --git a/composable_kernel/script/profile_gemm.sh b/projects/composablekernel/script/profile_gemm.sh similarity index 100% rename from composable_kernel/script/profile_gemm.sh rename to projects/composablekernel/script/profile_gemm.sh diff --git a/composable_kernel/script/profile_gemm_bilinear.sh b/projects/composablekernel/script/profile_gemm_bilinear.sh similarity index 100% rename from composable_kernel/script/profile_gemm_bilinear.sh rename to projects/composablekernel/script/profile_gemm_bilinear.sh diff --git a/composable_kernel/script/profile_grouped_conv_bwd_data.sh b/projects/composablekernel/script/profile_grouped_conv_bwd_data.sh similarity index 100% rename from composable_kernel/script/profile_grouped_conv_bwd_data.sh rename to projects/composablekernel/script/profile_grouped_conv_bwd_data.sh diff --git a/composable_kernel/script/profile_grouped_conv_bwd_weight.sh b/projects/composablekernel/script/profile_grouped_conv_bwd_weight.sh similarity index 100% rename from composable_kernel/script/profile_grouped_conv_bwd_weight.sh rename to projects/composablekernel/script/profile_grouped_conv_bwd_weight.sh diff --git a/composable_kernel/script/profile_grouped_conv_fwd.sh b/projects/composablekernel/script/profile_grouped_conv_fwd.sh similarity index 100% rename from composable_kernel/script/profile_grouped_conv_fwd.sh rename to projects/composablekernel/script/profile_grouped_conv_fwd.sh diff --git a/composable_kernel/script/profile_grouped_conv_fwd_outelementop.sh b/projects/composablekernel/script/profile_grouped_conv_fwd_outelementop.sh similarity index 100% rename from composable_kernel/script/profile_grouped_conv_fwd_outelementop.sh rename to projects/composablekernel/script/profile_grouped_conv_fwd_outelementop.sh diff --git a/composable_kernel/script/profile_grouped_gemm.sh b/projects/composablekernel/script/profile_grouped_gemm.sh similarity index 100% rename from composable_kernel/script/profile_grouped_gemm.sh rename to projects/composablekernel/script/profile_grouped_gemm.sh diff --git a/composable_kernel/script/profile_mixed_gemm.sh b/projects/composablekernel/script/profile_mixed_gemm.sh similarity index 100% rename from composable_kernel/script/profile_mixed_gemm.sh rename to projects/composablekernel/script/profile_mixed_gemm.sh diff --git a/composable_kernel/script/profile_onnx_gemm.sh b/projects/composablekernel/script/profile_onnx_gemm.sh similarity index 100% rename from composable_kernel/script/profile_onnx_gemm.sh rename to projects/composablekernel/script/profile_onnx_gemm.sh diff --git a/composable_kernel/script/profile_permute_scale.sh b/projects/composablekernel/script/profile_permute_scale.sh similarity index 100% rename from composable_kernel/script/profile_permute_scale.sh rename to projects/composablekernel/script/profile_permute_scale.sh diff --git a/composable_kernel/script/profile_reduce_no_index.sh b/projects/composablekernel/script/profile_reduce_no_index.sh similarity index 100% rename from composable_kernel/script/profile_reduce_no_index.sh rename to projects/composablekernel/script/profile_reduce_no_index.sh diff --git a/composable_kernel/script/profile_reduce_with_index.sh b/projects/composablekernel/script/profile_reduce_with_index.sh similarity index 100% rename from composable_kernel/script/profile_reduce_with_index.sh rename to projects/composablekernel/script/profile_reduce_with_index.sh diff --git a/composable_kernel/script/profile_resnet50.sh b/projects/composablekernel/script/profile_resnet50.sh similarity index 100% rename from composable_kernel/script/profile_resnet50.sh rename to projects/composablekernel/script/profile_resnet50.sh diff --git a/composable_kernel/script/profile_splitK_gemm.sh b/projects/composablekernel/script/profile_splitK_gemm.sh similarity index 100% rename from composable_kernel/script/profile_splitK_gemm.sh rename to projects/composablekernel/script/profile_splitK_gemm.sh diff --git a/MIOpen/script/redis-cli.conf b/projects/composablekernel/script/redis-cli.conf similarity index 100% rename from MIOpen/script/redis-cli.conf rename to projects/composablekernel/script/redis-cli.conf diff --git a/composable_kernel/script/run_full_performance_tests.sh b/projects/composablekernel/script/run_full_performance_tests.sh similarity index 100% rename from composable_kernel/script/run_full_performance_tests.sh rename to projects/composablekernel/script/run_full_performance_tests.sh diff --git a/composable_kernel/script/run_gemm_performance_tests.sh b/projects/composablekernel/script/run_gemm_performance_tests.sh similarity index 100% rename from composable_kernel/script/run_gemm_performance_tests.sh rename to projects/composablekernel/script/run_gemm_performance_tests.sh diff --git a/composable_kernel/script/run_performance_tests.sh b/projects/composablekernel/script/run_performance_tests.sh similarity index 100% rename from composable_kernel/script/run_performance_tests.sh rename to projects/composablekernel/script/run_performance_tests.sh diff --git a/composable_kernel/script/sccache_wrapper.sh b/projects/composablekernel/script/sccache_wrapper.sh similarity index 100% rename from composable_kernel/script/sccache_wrapper.sh rename to projects/composablekernel/script/sccache_wrapper.sh diff --git a/composable_kernel/script/test_convnd_fwd.sh b/projects/composablekernel/script/test_convnd_fwd.sh similarity index 100% rename from composable_kernel/script/test_convnd_fwd.sh rename to projects/composablekernel/script/test_convnd_fwd.sh diff --git a/composable_kernel/script/test_reduce_no_index.sh b/projects/composablekernel/script/test_reduce_no_index.sh similarity index 100% rename from composable_kernel/script/test_reduce_no_index.sh rename to projects/composablekernel/script/test_reduce_no_index.sh diff --git a/composable_kernel/script/uninstall_precommit.sh b/projects/composablekernel/script/uninstall_precommit.sh similarity index 100% rename from composable_kernel/script/uninstall_precommit.sh rename to projects/composablekernel/script/uninstall_precommit.sh diff --git a/composable_kernel/test/CMakeLists.txt b/projects/composablekernel/test/CMakeLists.txt similarity index 100% rename from composable_kernel/test/CMakeLists.txt rename to projects/composablekernel/test/CMakeLists.txt diff --git a/composable_kernel/test/batched_gemm/CMakeLists.txt b/projects/composablekernel/test/batched_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/test/batched_gemm/CMakeLists.txt rename to projects/composablekernel/test/batched_gemm/CMakeLists.txt diff --git a/composable_kernel/test/batched_gemm/test_batched_gemm_xdl.cpp b/projects/composablekernel/test/batched_gemm/test_batched_gemm_xdl.cpp similarity index 100% rename from composable_kernel/test/batched_gemm/test_batched_gemm_xdl.cpp rename to projects/composablekernel/test/batched_gemm/test_batched_gemm_xdl.cpp diff --git a/composable_kernel/test/batched_gemm_gemm/CMakeLists.txt b/projects/composablekernel/test/batched_gemm_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/test/batched_gemm_gemm/CMakeLists.txt rename to projects/composablekernel/test/batched_gemm_gemm/CMakeLists.txt diff --git a/composable_kernel/test/batched_gemm_gemm/test_batched_gemm_gemm_fp16_xdl.cpp b/projects/composablekernel/test/batched_gemm_gemm/test_batched_gemm_gemm_fp16_xdl.cpp similarity index 100% rename from composable_kernel/test/batched_gemm_gemm/test_batched_gemm_gemm_fp16_xdl.cpp rename to projects/composablekernel/test/batched_gemm_gemm/test_batched_gemm_gemm_fp16_xdl.cpp diff --git a/composable_kernel/test/batched_gemm_gemm/test_batched_gemm_gemm_util.hpp b/projects/composablekernel/test/batched_gemm_gemm/test_batched_gemm_gemm_util.hpp similarity index 100% rename from composable_kernel/test/batched_gemm_gemm/test_batched_gemm_gemm_util.hpp rename to projects/composablekernel/test/batched_gemm_gemm/test_batched_gemm_gemm_util.hpp diff --git a/composable_kernel/test/batched_gemm_multi_d/CMakeLists.txt b/projects/composablekernel/test/batched_gemm_multi_d/CMakeLists.txt similarity index 100% rename from composable_kernel/test/batched_gemm_multi_d/CMakeLists.txt rename to projects/composablekernel/test/batched_gemm_multi_d/CMakeLists.txt diff --git a/composable_kernel/test/batched_gemm_multi_d/test_batched_gemm_multi_d_dl.cpp b/projects/composablekernel/test/batched_gemm_multi_d/test_batched_gemm_multi_d_dl.cpp similarity index 100% rename from composable_kernel/test/batched_gemm_multi_d/test_batched_gemm_multi_d_dl.cpp rename to projects/composablekernel/test/batched_gemm_multi_d/test_batched_gemm_multi_d_dl.cpp diff --git a/composable_kernel/test/batched_gemm_reduce/CMakeLists.txt b/projects/composablekernel/test/batched_gemm_reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/test/batched_gemm_reduce/CMakeLists.txt rename to projects/composablekernel/test/batched_gemm_reduce/CMakeLists.txt diff --git a/composable_kernel/test/batched_gemm_reduce/batched_gemm_reduce_fp16_xdl.cpp b/projects/composablekernel/test/batched_gemm_reduce/batched_gemm_reduce_fp16_xdl.cpp similarity index 100% rename from composable_kernel/test/batched_gemm_reduce/batched_gemm_reduce_fp16_xdl.cpp rename to projects/composablekernel/test/batched_gemm_reduce/batched_gemm_reduce_fp16_xdl.cpp diff --git a/composable_kernel/test/batched_gemm_softmax_gemm/CMakeLists.txt b/projects/composablekernel/test/batched_gemm_softmax_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/test/batched_gemm_softmax_gemm/CMakeLists.txt rename to projects/composablekernel/test/batched_gemm_softmax_gemm/CMakeLists.txt diff --git a/composable_kernel/test/batched_gemm_softmax_gemm/test_batched_gemm_softmax_gemm_fp16_xdl.cpp b/projects/composablekernel/test/batched_gemm_softmax_gemm/test_batched_gemm_softmax_gemm_fp16_xdl.cpp similarity index 100% rename from composable_kernel/test/batched_gemm_softmax_gemm/test_batched_gemm_softmax_gemm_fp16_xdl.cpp rename to projects/composablekernel/test/batched_gemm_softmax_gemm/test_batched_gemm_softmax_gemm_fp16_xdl.cpp diff --git a/composable_kernel/test/batched_gemm_softmax_gemm/test_batched_gemm_softmax_gemm_util.hpp b/projects/composablekernel/test/batched_gemm_softmax_gemm/test_batched_gemm_softmax_gemm_util.hpp similarity index 100% rename from composable_kernel/test/batched_gemm_softmax_gemm/test_batched_gemm_softmax_gemm_util.hpp rename to projects/composablekernel/test/batched_gemm_softmax_gemm/test_batched_gemm_softmax_gemm_util.hpp diff --git a/composable_kernel/test/batched_gemm_softmax_gemm_permute/CMakeLists.txt b/projects/composablekernel/test/batched_gemm_softmax_gemm_permute/CMakeLists.txt similarity index 100% rename from composable_kernel/test/batched_gemm_softmax_gemm_permute/CMakeLists.txt rename to projects/composablekernel/test/batched_gemm_softmax_gemm_permute/CMakeLists.txt diff --git a/composable_kernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_bias_softmax_gemm_permute_bf16_xdl.cpp b/projects/composablekernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_bias_softmax_gemm_permute_bf16_xdl.cpp similarity index 100% rename from composable_kernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_bias_softmax_gemm_permute_bf16_xdl.cpp rename to projects/composablekernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_bias_softmax_gemm_permute_bf16_xdl.cpp diff --git a/composable_kernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_bias_softmax_gemm_permute_fp16_xdl.cpp b/projects/composablekernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_bias_softmax_gemm_permute_fp16_xdl.cpp similarity index 100% rename from composable_kernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_bias_softmax_gemm_permute_fp16_xdl.cpp rename to projects/composablekernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_bias_softmax_gemm_permute_fp16_xdl.cpp diff --git a/composable_kernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_bias_softmax_gemm_permute_util.hpp b/projects/composablekernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_bias_softmax_gemm_permute_util.hpp similarity index 100% rename from composable_kernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_bias_softmax_gemm_permute_util.hpp rename to projects/composablekernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_bias_softmax_gemm_permute_util.hpp diff --git a/composable_kernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_softmax_gemm_permute_bf16_xdl.cpp b/projects/composablekernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_softmax_gemm_permute_bf16_xdl.cpp similarity index 100% rename from composable_kernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_softmax_gemm_permute_bf16_xdl.cpp rename to projects/composablekernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_softmax_gemm_permute_bf16_xdl.cpp diff --git a/composable_kernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_softmax_gemm_permute_fp16_xdl.cpp b/projects/composablekernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_softmax_gemm_permute_fp16_xdl.cpp similarity index 100% rename from composable_kernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_softmax_gemm_permute_fp16_xdl.cpp rename to projects/composablekernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_softmax_gemm_permute_fp16_xdl.cpp diff --git a/composable_kernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_softmax_gemm_permute_util.hpp b/projects/composablekernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_softmax_gemm_permute_util.hpp similarity index 100% rename from composable_kernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_softmax_gemm_permute_util.hpp rename to projects/composablekernel/test/batched_gemm_softmax_gemm_permute/test_batched_gemm_softmax_gemm_permute_util.hpp diff --git a/composable_kernel/test/batchnorm/CMakeLists.txt b/projects/composablekernel/test/batchnorm/CMakeLists.txt similarity index 100% rename from composable_kernel/test/batchnorm/CMakeLists.txt rename to projects/composablekernel/test/batchnorm/CMakeLists.txt diff --git a/composable_kernel/test/batchnorm/batchnorm_bwd_rank_4.cpp b/projects/composablekernel/test/batchnorm/batchnorm_bwd_rank_4.cpp similarity index 100% rename from composable_kernel/test/batchnorm/batchnorm_bwd_rank_4.cpp rename to projects/composablekernel/test/batchnorm/batchnorm_bwd_rank_4.cpp diff --git a/composable_kernel/test/batchnorm/batchnorm_fwd_rank_4.cpp b/projects/composablekernel/test/batchnorm/batchnorm_fwd_rank_4.cpp similarity index 100% rename from composable_kernel/test/batchnorm/batchnorm_fwd_rank_4.cpp rename to projects/composablekernel/test/batchnorm/batchnorm_fwd_rank_4.cpp diff --git a/composable_kernel/test/batchnorm/batchnorm_infer_rank_4.cpp b/projects/composablekernel/test/batchnorm/batchnorm_infer_rank_4.cpp similarity index 100% rename from composable_kernel/test/batchnorm/batchnorm_infer_rank_4.cpp rename to projects/composablekernel/test/batchnorm/batchnorm_infer_rank_4.cpp diff --git a/composable_kernel/test/block_swizzle_test/block_swizzle_test.cpp b/projects/composablekernel/test/block_swizzle_test/block_swizzle_test.cpp similarity index 100% rename from composable_kernel/test/block_swizzle_test/block_swizzle_test.cpp rename to projects/composablekernel/test/block_swizzle_test/block_swizzle_test.cpp diff --git a/composable_kernel/test/block_swizzle_test/rebuild.sh b/projects/composablekernel/test/block_swizzle_test/rebuild.sh similarity index 100% rename from composable_kernel/test/block_swizzle_test/rebuild.sh rename to projects/composablekernel/test/block_swizzle_test/rebuild.sh diff --git a/composable_kernel/test/block_swizzle_test/simple_args.h b/projects/composablekernel/test/block_swizzle_test/simple_args.h similarity index 100% rename from composable_kernel/test/block_swizzle_test/simple_args.h rename to projects/composablekernel/test/block_swizzle_test/simple_args.h diff --git a/composable_kernel/test/block_to_ctile_map/CMakeLists.txt b/projects/composablekernel/test/block_to_ctile_map/CMakeLists.txt similarity index 100% rename from composable_kernel/test/block_to_ctile_map/CMakeLists.txt rename to projects/composablekernel/test/block_to_ctile_map/CMakeLists.txt diff --git a/composable_kernel/test/block_to_ctile_map/test_block_to_ctile_map.cpp b/projects/composablekernel/test/block_to_ctile_map/test_block_to_ctile_map.cpp similarity index 100% rename from composable_kernel/test/block_to_ctile_map/test_block_to_ctile_map.cpp rename to projects/composablekernel/test/block_to_ctile_map/test_block_to_ctile_map.cpp diff --git a/composable_kernel/test/ck_tile/CMakeLists.txt b/projects/composablekernel/test/ck_tile/CMakeLists.txt similarity index 100% rename from composable_kernel/test/ck_tile/CMakeLists.txt rename to projects/composablekernel/test/ck_tile/CMakeLists.txt diff --git a/composable_kernel/test/ck_tile/batched_gemm/CMakeLists.txt b/projects/composablekernel/test/ck_tile/batched_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/test/ck_tile/batched_gemm/CMakeLists.txt rename to projects/composablekernel/test/ck_tile/batched_gemm/CMakeLists.txt diff --git a/composable_kernel/test/ck_tile/batched_gemm/test_batched_gemm.cpp b/projects/composablekernel/test/ck_tile/batched_gemm/test_batched_gemm.cpp similarity index 100% rename from composable_kernel/test/ck_tile/batched_gemm/test_batched_gemm.cpp rename to projects/composablekernel/test/ck_tile/batched_gemm/test_batched_gemm.cpp diff --git a/composable_kernel/test/ck_tile/batched_gemm/test_batched_gemm_ut_cases.inc b/projects/composablekernel/test/ck_tile/batched_gemm/test_batched_gemm_ut_cases.inc similarity index 100% rename from composable_kernel/test/ck_tile/batched_gemm/test_batched_gemm_ut_cases.inc rename to projects/composablekernel/test/ck_tile/batched_gemm/test_batched_gemm_ut_cases.inc diff --git a/composable_kernel/test/ck_tile/batched_gemm/test_batched_gemm_util.hpp b/projects/composablekernel/test/ck_tile/batched_gemm/test_batched_gemm_util.hpp similarity index 100% rename from composable_kernel/test/ck_tile/batched_gemm/test_batched_gemm_util.hpp rename to projects/composablekernel/test/ck_tile/batched_gemm/test_batched_gemm_util.hpp diff --git a/composable_kernel/test/ck_tile/data_type/CMakeLists.txt b/projects/composablekernel/test/ck_tile/data_type/CMakeLists.txt similarity index 100% rename from composable_kernel/test/ck_tile/data_type/CMakeLists.txt rename to projects/composablekernel/test/ck_tile/data_type/CMakeLists.txt diff --git a/composable_kernel/test/ck_tile/data_type/test_pk_int4.cpp b/projects/composablekernel/test/ck_tile/data_type/test_pk_int4.cpp similarity index 100% rename from composable_kernel/test/ck_tile/data_type/test_pk_int4.cpp rename to projects/composablekernel/test/ck_tile/data_type/test_pk_int4.cpp diff --git a/composable_kernel/test/ck_tile/gemm/CMakeLists.txt b/projects/composablekernel/test/ck_tile/gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/test/ck_tile/gemm/CMakeLists.txt rename to projects/composablekernel/test/ck_tile/gemm/CMakeLists.txt diff --git a/composable_kernel/test/ck_tile/gemm/test_gemm_pipeline_compv3.cpp b/projects/composablekernel/test/ck_tile/gemm/test_gemm_pipeline_compv3.cpp similarity index 100% rename from composable_kernel/test/ck_tile/gemm/test_gemm_pipeline_compv3.cpp rename to projects/composablekernel/test/ck_tile/gemm/test_gemm_pipeline_compv3.cpp diff --git a/composable_kernel/test/ck_tile/gemm/test_gemm_pipeline_compv4.cpp b/projects/composablekernel/test/ck_tile/gemm/test_gemm_pipeline_compv4.cpp similarity index 100% rename from composable_kernel/test/ck_tile/gemm/test_gemm_pipeline_compv4.cpp rename to projects/composablekernel/test/ck_tile/gemm/test_gemm_pipeline_compv4.cpp diff --git a/composable_kernel/test/ck_tile/gemm/test_gemm_pipeline_kernel_types.hpp b/projects/composablekernel/test/ck_tile/gemm/test_gemm_pipeline_kernel_types.hpp similarity index 100% rename from composable_kernel/test/ck_tile/gemm/test_gemm_pipeline_kernel_types.hpp rename to projects/composablekernel/test/ck_tile/gemm/test_gemm_pipeline_kernel_types.hpp diff --git a/composable_kernel/test/ck_tile/gemm/test_gemm_pipeline_mem.cpp b/projects/composablekernel/test/ck_tile/gemm/test_gemm_pipeline_mem.cpp similarity index 100% rename from composable_kernel/test/ck_tile/gemm/test_gemm_pipeline_mem.cpp rename to projects/composablekernel/test/ck_tile/gemm/test_gemm_pipeline_mem.cpp diff --git a/composable_kernel/test/ck_tile/gemm/test_gemm_pipeline_ut_cases.inc b/projects/composablekernel/test/ck_tile/gemm/test_gemm_pipeline_ut_cases.inc similarity index 100% rename from composable_kernel/test/ck_tile/gemm/test_gemm_pipeline_ut_cases.inc rename to projects/composablekernel/test/ck_tile/gemm/test_gemm_pipeline_ut_cases.inc diff --git a/composable_kernel/test/ck_tile/gemm/test_gemm_pipeline_util.hpp b/projects/composablekernel/test/ck_tile/gemm/test_gemm_pipeline_util.hpp similarity index 100% rename from composable_kernel/test/ck_tile/gemm/test_gemm_pipeline_util.hpp rename to projects/composablekernel/test/ck_tile/gemm/test_gemm_pipeline_util.hpp diff --git a/composable_kernel/test/ck_tile/grouped_gemm/CMakeLists.txt b/projects/composablekernel/test/ck_tile/grouped_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/test/ck_tile/grouped_gemm/CMakeLists.txt rename to projects/composablekernel/test/ck_tile/grouped_gemm/CMakeLists.txt diff --git a/composable_kernel/test/ck_tile/grouped_gemm/test_grouped_gemm.cpp b/projects/composablekernel/test/ck_tile/grouped_gemm/test_grouped_gemm.cpp similarity index 100% rename from composable_kernel/test/ck_tile/grouped_gemm/test_grouped_gemm.cpp rename to projects/composablekernel/test/ck_tile/grouped_gemm/test_grouped_gemm.cpp diff --git a/composable_kernel/test/ck_tile/grouped_gemm/test_grouped_gemm_ut_cases.inc b/projects/composablekernel/test/ck_tile/grouped_gemm/test_grouped_gemm_ut_cases.inc similarity index 100% rename from composable_kernel/test/ck_tile/grouped_gemm/test_grouped_gemm_ut_cases.inc rename to projects/composablekernel/test/ck_tile/grouped_gemm/test_grouped_gemm_ut_cases.inc diff --git a/composable_kernel/test/ck_tile/grouped_gemm/test_grouped_gemm_util.hpp b/projects/composablekernel/test/ck_tile/grouped_gemm/test_grouped_gemm_util.hpp similarity index 100% rename from composable_kernel/test/ck_tile/grouped_gemm/test_grouped_gemm_util.hpp rename to projects/composablekernel/test/ck_tile/grouped_gemm/test_grouped_gemm_util.hpp diff --git a/composable_kernel/test/ck_tile/image_to_column/CMakeLists.txt b/projects/composablekernel/test/ck_tile/image_to_column/CMakeLists.txt similarity index 100% rename from composable_kernel/test/ck_tile/image_to_column/CMakeLists.txt rename to projects/composablekernel/test/ck_tile/image_to_column/CMakeLists.txt diff --git a/composable_kernel/test/ck_tile/image_to_column/test_tile_image_to_column.cpp b/projects/composablekernel/test/ck_tile/image_to_column/test_tile_image_to_column.cpp similarity index 100% rename from composable_kernel/test/ck_tile/image_to_column/test_tile_image_to_column.cpp rename to projects/composablekernel/test/ck_tile/image_to_column/test_tile_image_to_column.cpp diff --git a/composable_kernel/test/contraction/CMakeLists.txt b/projects/composablekernel/test/contraction/CMakeLists.txt similarity index 100% rename from composable_kernel/test/contraction/CMakeLists.txt rename to projects/composablekernel/test/contraction/CMakeLists.txt diff --git a/composable_kernel/test/contraction/test_contraction_interface_xdl.cpp b/projects/composablekernel/test/contraction/test_contraction_interface_xdl.cpp similarity index 100% rename from composable_kernel/test/contraction/test_contraction_interface_xdl.cpp rename to projects/composablekernel/test/contraction/test_contraction_interface_xdl.cpp diff --git a/composable_kernel/test/contraction/test_contraction_xdl.cpp b/projects/composablekernel/test/contraction/test_contraction_xdl.cpp similarity index 100% rename from composable_kernel/test/contraction/test_contraction_xdl.cpp rename to projects/composablekernel/test/contraction/test_contraction_xdl.cpp diff --git a/composable_kernel/test/conv_tensor_rearrange/CMakeLists.txt b/projects/composablekernel/test/conv_tensor_rearrange/CMakeLists.txt similarity index 100% rename from composable_kernel/test/conv_tensor_rearrange/CMakeLists.txt rename to projects/composablekernel/test/conv_tensor_rearrange/CMakeLists.txt diff --git a/composable_kernel/test/conv_tensor_rearrange/test_conv_tensor_rearrange.cpp b/projects/composablekernel/test/conv_tensor_rearrange/test_conv_tensor_rearrange.cpp similarity index 100% rename from composable_kernel/test/conv_tensor_rearrange/test_conv_tensor_rearrange.cpp rename to projects/composablekernel/test/conv_tensor_rearrange/test_conv_tensor_rearrange.cpp diff --git a/composable_kernel/test/conv_tensor_rearrange/test_conv_tensor_rearrange_interface.cpp b/projects/composablekernel/test/conv_tensor_rearrange/test_conv_tensor_rearrange_interface.cpp similarity index 100% rename from composable_kernel/test/conv_tensor_rearrange/test_conv_tensor_rearrange_interface.cpp rename to projects/composablekernel/test/conv_tensor_rearrange/test_conv_tensor_rearrange_interface.cpp diff --git a/composable_kernel/test/conv_util/CMakeLists.txt b/projects/composablekernel/test/conv_util/CMakeLists.txt similarity index 100% rename from composable_kernel/test/conv_util/CMakeLists.txt rename to projects/composablekernel/test/conv_util/CMakeLists.txt diff --git a/composable_kernel/test/conv_util/conv_util.cpp b/projects/composablekernel/test/conv_util/conv_util.cpp similarity index 100% rename from composable_kernel/test/conv_util/conv_util.cpp rename to projects/composablekernel/test/conv_util/conv_util.cpp diff --git a/composable_kernel/test/convnd_bwd_data/CMakeLists.txt b/projects/composablekernel/test/convnd_bwd_data/CMakeLists.txt similarity index 100% rename from composable_kernel/test/convnd_bwd_data/CMakeLists.txt rename to projects/composablekernel/test/convnd_bwd_data/CMakeLists.txt diff --git a/composable_kernel/test/convnd_bwd_data/convnd_bwd_data_xdl.cpp b/projects/composablekernel/test/convnd_bwd_data/convnd_bwd_data_xdl.cpp similarity index 100% rename from composable_kernel/test/convnd_bwd_data/convnd_bwd_data_xdl.cpp rename to projects/composablekernel/test/convnd_bwd_data/convnd_bwd_data_xdl.cpp diff --git a/composable_kernel/test/convnd_fwd/CMakeLists.txt b/projects/composablekernel/test/convnd_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/test/convnd_fwd/CMakeLists.txt rename to projects/composablekernel/test/convnd_fwd/CMakeLists.txt diff --git a/composable_kernel/test/convnd_fwd/convnd_fwd_xdl.cpp b/projects/composablekernel/test/convnd_fwd/convnd_fwd_xdl.cpp similarity index 100% rename from composable_kernel/test/convnd_fwd/convnd_fwd_xdl.cpp rename to projects/composablekernel/test/convnd_fwd/convnd_fwd_xdl.cpp diff --git a/composable_kernel/test/data_type/CMakeLists.txt b/projects/composablekernel/test/data_type/CMakeLists.txt similarity index 100% rename from composable_kernel/test/data_type/CMakeLists.txt rename to projects/composablekernel/test/data_type/CMakeLists.txt diff --git a/composable_kernel/test/data_type/test_bf6.cpp b/projects/composablekernel/test/data_type/test_bf6.cpp similarity index 100% rename from composable_kernel/test/data_type/test_bf6.cpp rename to projects/composablekernel/test/data_type/test_bf6.cpp diff --git a/composable_kernel/test/data_type/test_bf8_fnuz.cpp b/projects/composablekernel/test/data_type/test_bf8_fnuz.cpp similarity index 100% rename from composable_kernel/test/data_type/test_bf8_fnuz.cpp rename to projects/composablekernel/test/data_type/test_bf8_fnuz.cpp diff --git a/composable_kernel/test/data_type/test_bf8_ocp.cpp b/projects/composablekernel/test/data_type/test_bf8_ocp.cpp similarity index 100% rename from composable_kernel/test/data_type/test_bf8_ocp.cpp rename to projects/composablekernel/test/data_type/test_bf8_ocp.cpp diff --git a/composable_kernel/test/data_type/test_bhalf.cpp b/projects/composablekernel/test/data_type/test_bhalf.cpp similarity index 100% rename from composable_kernel/test/data_type/test_bhalf.cpp rename to projects/composablekernel/test/data_type/test_bhalf.cpp diff --git a/composable_kernel/test/data_type/test_custom_type.cpp b/projects/composablekernel/test/data_type/test_custom_type.cpp similarity index 100% rename from composable_kernel/test/data_type/test_custom_type.cpp rename to projects/composablekernel/test/data_type/test_custom_type.cpp diff --git a/composable_kernel/test/data_type/test_e8m0.cpp b/projects/composablekernel/test/data_type/test_e8m0.cpp similarity index 100% rename from composable_kernel/test/data_type/test_e8m0.cpp rename to projects/composablekernel/test/data_type/test_e8m0.cpp diff --git a/composable_kernel/test/data_type/test_fp4.cpp b/projects/composablekernel/test/data_type/test_fp4.cpp similarity index 100% rename from composable_kernel/test/data_type/test_fp4.cpp rename to projects/composablekernel/test/data_type/test_fp4.cpp diff --git a/composable_kernel/test/data_type/test_fp6.cpp b/projects/composablekernel/test/data_type/test_fp6.cpp similarity index 100% rename from composable_kernel/test/data_type/test_fp6.cpp rename to projects/composablekernel/test/data_type/test_fp6.cpp diff --git a/composable_kernel/test/data_type/test_fp8_fnuz.cpp b/projects/composablekernel/test/data_type/test_fp8_fnuz.cpp similarity index 100% rename from composable_kernel/test/data_type/test_fp8_fnuz.cpp rename to projects/composablekernel/test/data_type/test_fp8_fnuz.cpp diff --git a/composable_kernel/test/data_type/test_fp8_ocp.cpp b/projects/composablekernel/test/data_type/test_fp8_ocp.cpp similarity index 100% rename from composable_kernel/test/data_type/test_fp8_ocp.cpp rename to projects/composablekernel/test/data_type/test_fp8_ocp.cpp diff --git a/composable_kernel/test/data_type/test_int4.cpp b/projects/composablekernel/test/data_type/test_int4.cpp similarity index 100% rename from composable_kernel/test/data_type/test_int4.cpp rename to projects/composablekernel/test/data_type/test_int4.cpp diff --git a/composable_kernel/test/data_type/test_mx_bf8.cpp b/projects/composablekernel/test/data_type/test_mx_bf8.cpp similarity index 100% rename from composable_kernel/test/data_type/test_mx_bf8.cpp rename to projects/composablekernel/test/data_type/test_mx_bf8.cpp diff --git a/composable_kernel/test/data_type/test_mx_fp4.cpp b/projects/composablekernel/test/data_type/test_mx_fp4.cpp similarity index 100% rename from composable_kernel/test/data_type/test_mx_fp4.cpp rename to projects/composablekernel/test/data_type/test_mx_fp4.cpp diff --git a/composable_kernel/test/data_type/test_mx_fp8.cpp b/projects/composablekernel/test/data_type/test_mx_fp8.cpp similarity index 100% rename from composable_kernel/test/data_type/test_mx_fp8.cpp rename to projects/composablekernel/test/data_type/test_mx_fp8.cpp diff --git a/composable_kernel/test/data_type/test_pk_i4.cpp b/projects/composablekernel/test/data_type/test_pk_i4.cpp similarity index 100% rename from composable_kernel/test/data_type/test_pk_i4.cpp rename to projects/composablekernel/test/data_type/test_pk_i4.cpp diff --git a/composable_kernel/test/data_type/type_convert_const.cpp b/projects/composablekernel/test/data_type/type_convert_const.cpp similarity index 100% rename from composable_kernel/test/data_type/type_convert_const.cpp rename to projects/composablekernel/test/data_type/type_convert_const.cpp diff --git a/composable_kernel/test/elementwise_normalization/CMakeLists.txt b/projects/composablekernel/test/elementwise_normalization/CMakeLists.txt similarity index 100% rename from composable_kernel/test/elementwise_normalization/CMakeLists.txt rename to projects/composablekernel/test/elementwise_normalization/CMakeLists.txt diff --git a/composable_kernel/test/elementwise_normalization/test_elementwise_layernorm_fp16.cpp b/projects/composablekernel/test/elementwise_normalization/test_elementwise_layernorm_fp16.cpp similarity index 100% rename from composable_kernel/test/elementwise_normalization/test_elementwise_layernorm_fp16.cpp rename to projects/composablekernel/test/elementwise_normalization/test_elementwise_layernorm_fp16.cpp diff --git a/composable_kernel/test/gemm/CMakeLists.txt b/projects/composablekernel/test/gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/test/gemm/CMakeLists.txt rename to projects/composablekernel/test/gemm/CMakeLists.txt diff --git a/composable_kernel/test/gemm/gemm_bf16.cpp b/projects/composablekernel/test/gemm/gemm_bf16.cpp similarity index 100% rename from composable_kernel/test/gemm/gemm_bf16.cpp rename to projects/composablekernel/test/gemm/gemm_bf16.cpp diff --git a/composable_kernel/test/gemm/gemm_fp16.cpp b/projects/composablekernel/test/gemm/gemm_fp16.cpp similarity index 100% rename from composable_kernel/test/gemm/gemm_fp16.cpp rename to projects/composablekernel/test/gemm/gemm_fp16.cpp diff --git a/composable_kernel/test/gemm/gemm_fp32.cpp b/projects/composablekernel/test/gemm/gemm_fp32.cpp similarity index 100% rename from composable_kernel/test/gemm/gemm_fp32.cpp rename to projects/composablekernel/test/gemm/gemm_fp32.cpp diff --git a/composable_kernel/test/gemm/gemm_fp64.cpp b/projects/composablekernel/test/gemm/gemm_fp64.cpp similarity index 100% rename from composable_kernel/test/gemm/gemm_fp64.cpp rename to projects/composablekernel/test/gemm/gemm_fp64.cpp diff --git a/composable_kernel/test/gemm/gemm_int8.cpp b/projects/composablekernel/test/gemm/gemm_int8.cpp similarity index 100% rename from composable_kernel/test/gemm/gemm_int8.cpp rename to projects/composablekernel/test/gemm/gemm_int8.cpp diff --git a/composable_kernel/test/gemm/gemm_standalone_xdl_fp16.cpp b/projects/composablekernel/test/gemm/gemm_standalone_xdl_fp16.cpp similarity index 100% rename from composable_kernel/test/gemm/gemm_standalone_xdl_fp16.cpp rename to projects/composablekernel/test/gemm/gemm_standalone_xdl_fp16.cpp diff --git a/composable_kernel/test/gemm/gemm_util.hpp b/projects/composablekernel/test/gemm/gemm_util.hpp similarity index 100% rename from composable_kernel/test/gemm/gemm_util.hpp rename to projects/composablekernel/test/gemm/gemm_util.hpp diff --git a/composable_kernel/test/gemm/instance/gemm_f16_nn_instance.cpp b/projects/composablekernel/test/gemm/instance/gemm_f16_nn_instance.cpp similarity index 100% rename from composable_kernel/test/gemm/instance/gemm_f16_nn_instance.cpp rename to projects/composablekernel/test/gemm/instance/gemm_f16_nn_instance.cpp diff --git a/composable_kernel/test/gemm/instance/gemm_f16_nn_instance.hpp b/projects/composablekernel/test/gemm/instance/gemm_f16_nn_instance.hpp similarity index 100% rename from composable_kernel/test/gemm/instance/gemm_f16_nn_instance.hpp rename to projects/composablekernel/test/gemm/instance/gemm_f16_nn_instance.hpp diff --git a/composable_kernel/test/gemm/instance/gemm_f16_nt_instance.cpp b/projects/composablekernel/test/gemm/instance/gemm_f16_nt_instance.cpp similarity index 100% rename from composable_kernel/test/gemm/instance/gemm_f16_nt_instance.cpp rename to projects/composablekernel/test/gemm/instance/gemm_f16_nt_instance.cpp diff --git a/composable_kernel/test/gemm/instance/gemm_f16_nt_instance.hpp b/projects/composablekernel/test/gemm/instance/gemm_f16_nt_instance.hpp similarity index 100% rename from composable_kernel/test/gemm/instance/gemm_f16_nt_instance.hpp rename to projects/composablekernel/test/gemm/instance/gemm_f16_nt_instance.hpp diff --git a/composable_kernel/test/gemm/instance/gemm_f16_tn_instance.cpp b/projects/composablekernel/test/gemm/instance/gemm_f16_tn_instance.cpp similarity index 100% rename from composable_kernel/test/gemm/instance/gemm_f16_tn_instance.cpp rename to projects/composablekernel/test/gemm/instance/gemm_f16_tn_instance.cpp diff --git a/composable_kernel/test/gemm/instance/gemm_f16_tn_instance.hpp b/projects/composablekernel/test/gemm/instance/gemm_f16_tn_instance.hpp similarity index 100% rename from composable_kernel/test/gemm/instance/gemm_f16_tn_instance.hpp rename to projects/composablekernel/test/gemm/instance/gemm_f16_tn_instance.hpp diff --git a/composable_kernel/test/gemm/instance/gemm_f16_tt_instance.cpp b/projects/composablekernel/test/gemm/instance/gemm_f16_tt_instance.cpp similarity index 100% rename from composable_kernel/test/gemm/instance/gemm_f16_tt_instance.cpp rename to projects/composablekernel/test/gemm/instance/gemm_f16_tt_instance.cpp diff --git a/composable_kernel/test/gemm/instance/gemm_f16_tt_instance.hpp b/projects/composablekernel/test/gemm/instance/gemm_f16_tt_instance.hpp similarity index 100% rename from composable_kernel/test/gemm/instance/gemm_f16_tt_instance.hpp rename to projects/composablekernel/test/gemm/instance/gemm_f16_tt_instance.hpp diff --git a/composable_kernel/test/gemm/instance/gemm_wavelet_f16_tn_instance.cpp b/projects/composablekernel/test/gemm/instance/gemm_wavelet_f16_tn_instance.cpp similarity index 100% rename from composable_kernel/test/gemm/instance/gemm_wavelet_f16_tn_instance.cpp rename to projects/composablekernel/test/gemm/instance/gemm_wavelet_f16_tn_instance.cpp diff --git a/composable_kernel/test/gemm/instance/gemm_wavelet_f16_tn_instance.hpp b/projects/composablekernel/test/gemm/instance/gemm_wavelet_f16_tn_instance.hpp similarity index 100% rename from composable_kernel/test/gemm/instance/gemm_wavelet_f16_tn_instance.hpp rename to projects/composablekernel/test/gemm/instance/gemm_wavelet_f16_tn_instance.hpp diff --git a/composable_kernel/test/gemm/run_gemm_test.inc b/projects/composablekernel/test/gemm/run_gemm_test.inc similarity index 100% rename from composable_kernel/test/gemm/run_gemm_test.inc rename to projects/composablekernel/test/gemm/run_gemm_test.inc diff --git a/composable_kernel/test/gemm_add/CMakeLists.txt b/projects/composablekernel/test/gemm_add/CMakeLists.txt similarity index 100% rename from composable_kernel/test/gemm_add/CMakeLists.txt rename to projects/composablekernel/test/gemm_add/CMakeLists.txt diff --git a/composable_kernel/test/gemm_add/test_gemm_add_fastgelu_xdl.cpp b/projects/composablekernel/test/gemm_add/test_gemm_add_fastgelu_xdl.cpp similarity index 100% rename from composable_kernel/test/gemm_add/test_gemm_add_fastgelu_xdl.cpp rename to projects/composablekernel/test/gemm_add/test_gemm_add_fastgelu_xdl.cpp diff --git a/composable_kernel/test/gemm_add/test_gemm_add_relu_xdl.cpp b/projects/composablekernel/test/gemm_add/test_gemm_add_relu_xdl.cpp similarity index 100% rename from composable_kernel/test/gemm_add/test_gemm_add_relu_xdl.cpp rename to projects/composablekernel/test/gemm_add/test_gemm_add_relu_xdl.cpp diff --git a/composable_kernel/test/gemm_add/test_gemm_add_silu_xdl.cpp b/projects/composablekernel/test/gemm_add/test_gemm_add_silu_xdl.cpp similarity index 100% rename from composable_kernel/test/gemm_add/test_gemm_add_silu_xdl.cpp rename to projects/composablekernel/test/gemm_add/test_gemm_add_silu_xdl.cpp diff --git a/composable_kernel/test/gemm_add/test_gemm_add_xdl.hpp b/projects/composablekernel/test/gemm_add/test_gemm_add_xdl.hpp similarity index 100% rename from composable_kernel/test/gemm_add/test_gemm_add_xdl.hpp rename to projects/composablekernel/test/gemm_add/test_gemm_add_xdl.hpp diff --git a/composable_kernel/test/gemm_layernorm/CMakeLists.txt b/projects/composablekernel/test/gemm_layernorm/CMakeLists.txt similarity index 100% rename from composable_kernel/test/gemm_layernorm/CMakeLists.txt rename to projects/composablekernel/test/gemm_layernorm/CMakeLists.txt diff --git a/composable_kernel/test/gemm_layernorm/test_gemm_add_relu_add_layernorm_fp16_xdl.cpp b/projects/composablekernel/test/gemm_layernorm/test_gemm_add_relu_add_layernorm_fp16_xdl.cpp similarity index 100% rename from composable_kernel/test/gemm_layernorm/test_gemm_add_relu_add_layernorm_fp16_xdl.cpp rename to projects/composablekernel/test/gemm_layernorm/test_gemm_add_relu_add_layernorm_fp16_xdl.cpp diff --git a/composable_kernel/test/gemm_mx/CMakeLists.txt b/projects/composablekernel/test/gemm_mx/CMakeLists.txt similarity index 100% rename from composable_kernel/test/gemm_mx/CMakeLists.txt rename to projects/composablekernel/test/gemm_mx/CMakeLists.txt diff --git a/composable_kernel/test/gemm_mx/test_gemm_mx.cpp b/projects/composablekernel/test/gemm_mx/test_gemm_mx.cpp similarity index 100% rename from composable_kernel/test/gemm_mx/test_gemm_mx.cpp rename to projects/composablekernel/test/gemm_mx/test_gemm_mx.cpp diff --git a/composable_kernel/test/gemm_mx/test_gemm_mx_util.hpp b/projects/composablekernel/test/gemm_mx/test_gemm_mx_util.hpp similarity index 100% rename from composable_kernel/test/gemm_mx/test_gemm_mx_util.hpp rename to projects/composablekernel/test/gemm_mx/test_gemm_mx_util.hpp diff --git a/composable_kernel/test/gemm_reduce/CMakeLists.txt b/projects/composablekernel/test/gemm_reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/test/gemm_reduce/CMakeLists.txt rename to projects/composablekernel/test/gemm_reduce/CMakeLists.txt diff --git a/composable_kernel/test/gemm_reduce/gemm_reduce_fp16_xdl.cpp b/projects/composablekernel/test/gemm_reduce/gemm_reduce_fp16_xdl.cpp similarity index 100% rename from composable_kernel/test/gemm_reduce/gemm_reduce_fp16_xdl.cpp rename to projects/composablekernel/test/gemm_reduce/gemm_reduce_fp16_xdl.cpp diff --git a/composable_kernel/test/gemm_split_k/CMakeLists.txt b/projects/composablekernel/test/gemm_split_k/CMakeLists.txt similarity index 100% rename from composable_kernel/test/gemm_split_k/CMakeLists.txt rename to projects/composablekernel/test/gemm_split_k/CMakeLists.txt diff --git a/composable_kernel/test/gemm_split_k/test_gemm_splitk_ut_cases.inc b/projects/composablekernel/test/gemm_split_k/test_gemm_splitk_ut_cases.inc similarity index 100% rename from composable_kernel/test/gemm_split_k/test_gemm_splitk_ut_cases.inc rename to projects/composablekernel/test/gemm_split_k/test_gemm_splitk_ut_cases.inc diff --git a/composable_kernel/test/gemm_split_k/test_gemm_splitk_util.hpp b/projects/composablekernel/test/gemm_split_k/test_gemm_splitk_util.hpp similarity index 100% rename from composable_kernel/test/gemm_split_k/test_gemm_splitk_util.hpp rename to projects/composablekernel/test/gemm_split_k/test_gemm_splitk_util.hpp diff --git a/composable_kernel/test/gemm_split_k/test_gemm_splitk_xdl.cpp b/projects/composablekernel/test/gemm_split_k/test_gemm_splitk_xdl.cpp similarity index 100% rename from composable_kernel/test/gemm_split_k/test_gemm_splitk_xdl.cpp rename to projects/composablekernel/test/gemm_split_k/test_gemm_splitk_xdl.cpp diff --git a/composable_kernel/test/gemm_universal/CMakeLists.txt b/projects/composablekernel/test/gemm_universal/CMakeLists.txt similarity index 100% rename from composable_kernel/test/gemm_universal/CMakeLists.txt rename to projects/composablekernel/test/gemm_universal/CMakeLists.txt diff --git a/composable_kernel/test/gemm_universal/test_gemm_universal_ut_cases_bf16.inc b/projects/composablekernel/test/gemm_universal/test_gemm_universal_ut_cases_bf16.inc similarity index 100% rename from composable_kernel/test/gemm_universal/test_gemm_universal_ut_cases_bf16.inc rename to projects/composablekernel/test/gemm_universal/test_gemm_universal_ut_cases_bf16.inc diff --git a/composable_kernel/test/gemm_universal/test_gemm_universal_ut_cases_fp16.inc b/projects/composablekernel/test/gemm_universal/test_gemm_universal_ut_cases_fp16.inc similarity index 100% rename from composable_kernel/test/gemm_universal/test_gemm_universal_ut_cases_fp16.inc rename to projects/composablekernel/test/gemm_universal/test_gemm_universal_ut_cases_fp16.inc diff --git a/composable_kernel/test/gemm_universal/test_gemm_universal_ut_cases_fp8.inc b/projects/composablekernel/test/gemm_universal/test_gemm_universal_ut_cases_fp8.inc similarity index 100% rename from composable_kernel/test/gemm_universal/test_gemm_universal_ut_cases_fp8.inc rename to projects/composablekernel/test/gemm_universal/test_gemm_universal_ut_cases_fp8.inc diff --git a/composable_kernel/test/gemm_universal/test_gemm_universal_util.hpp b/projects/composablekernel/test/gemm_universal/test_gemm_universal_util.hpp similarity index 100% rename from composable_kernel/test/gemm_universal/test_gemm_universal_util.hpp rename to projects/composablekernel/test/gemm_universal/test_gemm_universal_util.hpp diff --git a/composable_kernel/test/gemm_universal/test_gemm_universal_wmma_bf16.cpp b/projects/composablekernel/test/gemm_universal/test_gemm_universal_wmma_bf16.cpp similarity index 100% rename from composable_kernel/test/gemm_universal/test_gemm_universal_wmma_bf16.cpp rename to projects/composablekernel/test/gemm_universal/test_gemm_universal_wmma_bf16.cpp diff --git a/composable_kernel/test/gemm_universal/test_gemm_universal_wmma_fp16.cpp b/projects/composablekernel/test/gemm_universal/test_gemm_universal_wmma_fp16.cpp similarity index 100% rename from composable_kernel/test/gemm_universal/test_gemm_universal_wmma_fp16.cpp rename to projects/composablekernel/test/gemm_universal/test_gemm_universal_wmma_fp16.cpp diff --git a/composable_kernel/test/gemm_universal/test_gemm_universal_wmma_fp8.cpp b/projects/composablekernel/test/gemm_universal/test_gemm_universal_wmma_fp8.cpp similarity index 100% rename from composable_kernel/test/gemm_universal/test_gemm_universal_wmma_fp8.cpp rename to projects/composablekernel/test/gemm_universal/test_gemm_universal_wmma_fp8.cpp diff --git a/composable_kernel/test/gemm_universal/test_gemm_universal_xdl_bf16.cpp b/projects/composablekernel/test/gemm_universal/test_gemm_universal_xdl_bf16.cpp similarity index 100% rename from composable_kernel/test/gemm_universal/test_gemm_universal_xdl_bf16.cpp rename to projects/composablekernel/test/gemm_universal/test_gemm_universal_xdl_bf16.cpp diff --git a/composable_kernel/test/gemm_universal/test_gemm_universal_xdl_fp16.cpp b/projects/composablekernel/test/gemm_universal/test_gemm_universal_xdl_fp16.cpp similarity index 100% rename from composable_kernel/test/gemm_universal/test_gemm_universal_xdl_fp16.cpp rename to projects/composablekernel/test/gemm_universal/test_gemm_universal_xdl_fp16.cpp diff --git a/composable_kernel/test/gemm_universal/test_gemm_universal_xdl_fp8.cpp b/projects/composablekernel/test/gemm_universal/test_gemm_universal_xdl_fp8.cpp similarity index 100% rename from composable_kernel/test/gemm_universal/test_gemm_universal_xdl_fp8.cpp rename to projects/composablekernel/test/gemm_universal/test_gemm_universal_xdl_fp8.cpp diff --git a/composable_kernel/test/gemm_universal_streamk/CMakeLists.txt b/projects/composablekernel/test/gemm_universal_streamk/CMakeLists.txt similarity index 100% rename from composable_kernel/test/gemm_universal_streamk/CMakeLists.txt rename to projects/composablekernel/test/gemm_universal_streamk/CMakeLists.txt diff --git a/composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_ut_cases_bf16.inc b/projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_ut_cases_bf16.inc similarity index 100% rename from composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_ut_cases_bf16.inc rename to projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_ut_cases_bf16.inc diff --git a/composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_ut_cases_fp16.inc b/projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_ut_cases_fp16.inc similarity index 100% rename from composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_ut_cases_fp16.inc rename to projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_ut_cases_fp16.inc diff --git a/composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_ut_cases_fp8.inc b/projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_ut_cases_fp8.inc similarity index 100% rename from composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_ut_cases_fp8.inc rename to projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_ut_cases_fp8.inc diff --git a/composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_util.hpp b/projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_util.hpp similarity index 100% rename from composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_util.hpp rename to projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_util.hpp diff --git a/composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_xdl_bf16.cpp b/projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_xdl_bf16.cpp similarity index 100% rename from composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_xdl_bf16.cpp rename to projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_xdl_bf16.cpp diff --git a/composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_xdl_fp16.cpp b/projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_xdl_fp16.cpp similarity index 100% rename from composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_xdl_fp16.cpp rename to projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_xdl_fp16.cpp diff --git a/composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_xdl_fp8.cpp b/projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_xdl_fp8.cpp similarity index 100% rename from composable_kernel/test/gemm_universal_streamk/test_gemm_universal_streamk_xdl_fp8.cpp rename to projects/composablekernel/test/gemm_universal_streamk/test_gemm_universal_streamk_xdl_fp8.cpp diff --git a/composable_kernel/test/grouped_convnd_bwd_data/CMakeLists.txt b/projects/composablekernel/test/grouped_convnd_bwd_data/CMakeLists.txt similarity index 100% rename from composable_kernel/test/grouped_convnd_bwd_data/CMakeLists.txt rename to projects/composablekernel/test/grouped_convnd_bwd_data/CMakeLists.txt diff --git a/composable_kernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_interface_wmma.cpp b/projects/composablekernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_interface_wmma.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_interface_wmma.cpp rename to projects/composablekernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_interface_wmma.cpp diff --git a/composable_kernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_interface_xdl.cpp b/projects/composablekernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_interface_xdl.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_interface_xdl.cpp rename to projects/composablekernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_interface_xdl.cpp diff --git a/composable_kernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_wmma.cpp b/projects/composablekernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_wmma.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_wmma.cpp rename to projects/composablekernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_wmma.cpp diff --git a/composable_kernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_xdl.cpp b/projects/composablekernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_xdl.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_xdl.cpp rename to projects/composablekernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_xdl.cpp diff --git a/composable_kernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_xdl_large_cases.cpp b/projects/composablekernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_xdl_large_cases.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_xdl_large_cases.cpp rename to projects/composablekernel/test/grouped_convnd_bwd_data/test_grouped_convnd_bwd_data_xdl_large_cases.cpp diff --git a/composable_kernel/test/grouped_convnd_bwd_weight/CMakeLists.txt b/projects/composablekernel/test/grouped_convnd_bwd_weight/CMakeLists.txt similarity index 100% rename from composable_kernel/test/grouped_convnd_bwd_weight/CMakeLists.txt rename to projects/composablekernel/test/grouped_convnd_bwd_weight/CMakeLists.txt diff --git a/composable_kernel/test/grouped_convnd_bwd_weight/test_grouped_conv_bwd_weight_xdl_bilinear.cpp b/projects/composablekernel/test/grouped_convnd_bwd_weight/test_grouped_conv_bwd_weight_xdl_bilinear.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_bwd_weight/test_grouped_conv_bwd_weight_xdl_bilinear.cpp rename to projects/composablekernel/test/grouped_convnd_bwd_weight/test_grouped_conv_bwd_weight_xdl_bilinear.cpp diff --git a/composable_kernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight.cpp b/projects/composablekernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight.cpp rename to projects/composablekernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight.cpp diff --git a/composable_kernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_interface_wmma.cpp b/projects/composablekernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_interface_wmma.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_interface_wmma.cpp rename to projects/composablekernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_interface_wmma.cpp diff --git a/composable_kernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_interface_xdl.cpp b/projects/composablekernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_interface_xdl.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_interface_xdl.cpp rename to projects/composablekernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_interface_xdl.cpp diff --git a/composable_kernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_v3_interface_xdl.cpp b/projects/composablekernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_v3_interface_xdl.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_v3_interface_xdl.cpp rename to projects/composablekernel/test/grouped_convnd_bwd_weight/test_grouped_convnd_bwd_weight_v3_interface_xdl.cpp diff --git a/composable_kernel/test/grouped_convnd_fwd/CMakeLists.txt b/projects/composablekernel/test/grouped_convnd_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/test/grouped_convnd_fwd/CMakeLists.txt rename to projects/composablekernel/test/grouped_convnd_fwd/CMakeLists.txt diff --git a/composable_kernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd.cpp b/projects/composablekernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd.cpp rename to projects/composablekernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd.cpp diff --git a/composable_kernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd_large_cases_xdl.cpp b/projects/composablekernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd_large_cases_xdl.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd_large_cases_xdl.cpp rename to projects/composablekernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd_large_cases_xdl.cpp diff --git a/composable_kernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd_multi_ab_interface.cpp b/projects/composablekernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd_multi_ab_interface.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd_multi_ab_interface.cpp rename to projects/composablekernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd_multi_ab_interface.cpp diff --git a/composable_kernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd_multi_d_interface_compatibility_xdl_wmma.cpp b/projects/composablekernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd_multi_d_interface_compatibility_xdl_wmma.cpp similarity index 100% rename from composable_kernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd_multi_d_interface_compatibility_xdl_wmma.cpp rename to projects/composablekernel/test/grouped_convnd_fwd/test_grouped_convnd_fwd_multi_d_interface_compatibility_xdl_wmma.cpp diff --git a/composable_kernel/test/grouped_gemm/CMakeLists.txt b/projects/composablekernel/test/grouped_gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/test/grouped_gemm/CMakeLists.txt rename to projects/composablekernel/test/grouped_gemm/CMakeLists.txt diff --git a/composable_kernel/test/grouped_gemm/test_grouped_gemm_interface_xdl.cpp b/projects/composablekernel/test/grouped_gemm/test_grouped_gemm_interface_xdl.cpp similarity index 100% rename from composable_kernel/test/grouped_gemm/test_grouped_gemm_interface_xdl.cpp rename to projects/composablekernel/test/grouped_gemm/test_grouped_gemm_interface_xdl.cpp diff --git a/composable_kernel/test/grouped_gemm/test_grouped_gemm_splitk_xdl.cpp b/projects/composablekernel/test/grouped_gemm/test_grouped_gemm_splitk_xdl.cpp similarity index 100% rename from composable_kernel/test/grouped_gemm/test_grouped_gemm_splitk_xdl.cpp rename to projects/composablekernel/test/grouped_gemm/test_grouped_gemm_splitk_xdl.cpp diff --git a/composable_kernel/test/grouped_gemm/test_grouped_gemm_two_stage_multiple_d_splitk_xdl.cpp b/projects/composablekernel/test/grouped_gemm/test_grouped_gemm_two_stage_multiple_d_splitk_xdl.cpp similarity index 100% rename from composable_kernel/test/grouped_gemm/test_grouped_gemm_two_stage_multiple_d_splitk_xdl.cpp rename to projects/composablekernel/test/grouped_gemm/test_grouped_gemm_two_stage_multiple_d_splitk_xdl.cpp diff --git a/composable_kernel/test/grouped_gemm/test_grouped_gemm_two_stage_ut_cases.inc b/projects/composablekernel/test/grouped_gemm/test_grouped_gemm_two_stage_ut_cases.inc similarity index 100% rename from composable_kernel/test/grouped_gemm/test_grouped_gemm_two_stage_ut_cases.inc rename to projects/composablekernel/test/grouped_gemm/test_grouped_gemm_two_stage_ut_cases.inc diff --git a/composable_kernel/test/grouped_gemm/test_grouped_gemm_ut_cases.inc b/projects/composablekernel/test/grouped_gemm/test_grouped_gemm_ut_cases.inc similarity index 100% rename from composable_kernel/test/grouped_gemm/test_grouped_gemm_ut_cases.inc rename to projects/composablekernel/test/grouped_gemm/test_grouped_gemm_ut_cases.inc diff --git a/composable_kernel/test/grouped_gemm/test_grouped_gemm_util.hpp b/projects/composablekernel/test/grouped_gemm/test_grouped_gemm_util.hpp similarity index 100% rename from composable_kernel/test/grouped_gemm/test_grouped_gemm_util.hpp rename to projects/composablekernel/test/grouped_gemm/test_grouped_gemm_util.hpp diff --git a/composable_kernel/test/magic_number_division/CMakeLists.txt b/projects/composablekernel/test/magic_number_division/CMakeLists.txt similarity index 100% rename from composable_kernel/test/magic_number_division/CMakeLists.txt rename to projects/composablekernel/test/magic_number_division/CMakeLists.txt diff --git a/composable_kernel/test/magic_number_division/magic_number_division.cpp b/projects/composablekernel/test/magic_number_division/magic_number_division.cpp similarity index 100% rename from composable_kernel/test/magic_number_division/magic_number_division.cpp rename to projects/composablekernel/test/magic_number_division/magic_number_division.cpp diff --git a/composable_kernel/test/mx_mfma_op/CMakeLists.txt b/projects/composablekernel/test/mx_mfma_op/CMakeLists.txt similarity index 100% rename from composable_kernel/test/mx_mfma_op/CMakeLists.txt rename to projects/composablekernel/test/mx_mfma_op/CMakeLists.txt diff --git a/composable_kernel/test/mx_mfma_op/mx_mfma_op.cpp b/projects/composablekernel/test/mx_mfma_op/mx_mfma_op.cpp similarity index 100% rename from composable_kernel/test/mx_mfma_op/mx_mfma_op.cpp rename to projects/composablekernel/test/mx_mfma_op/mx_mfma_op.cpp diff --git a/composable_kernel/test/mx_mfma_op/mx_mfma_op.hpp b/projects/composablekernel/test/mx_mfma_op/mx_mfma_op.hpp similarity index 100% rename from composable_kernel/test/mx_mfma_op/mx_mfma_op.hpp rename to projects/composablekernel/test/mx_mfma_op/mx_mfma_op.hpp diff --git a/composable_kernel/test/normalization_bwd_data/CMakeLists.txt b/projects/composablekernel/test/normalization_bwd_data/CMakeLists.txt similarity index 100% rename from composable_kernel/test/normalization_bwd_data/CMakeLists.txt rename to projects/composablekernel/test/normalization_bwd_data/CMakeLists.txt diff --git a/composable_kernel/test/normalization_bwd_data/test_groupnorm_bwd_data_fp32.cpp b/projects/composablekernel/test/normalization_bwd_data/test_groupnorm_bwd_data_fp32.cpp similarity index 100% rename from composable_kernel/test/normalization_bwd_data/test_groupnorm_bwd_data_fp32.cpp rename to projects/composablekernel/test/normalization_bwd_data/test_groupnorm_bwd_data_fp32.cpp diff --git a/composable_kernel/test/normalization_bwd_data/test_layernorm2d_bwd_data_fp32.cpp b/projects/composablekernel/test/normalization_bwd_data/test_layernorm2d_bwd_data_fp32.cpp similarity index 100% rename from composable_kernel/test/normalization_bwd_data/test_layernorm2d_bwd_data_fp32.cpp rename to projects/composablekernel/test/normalization_bwd_data/test_layernorm2d_bwd_data_fp32.cpp diff --git a/composable_kernel/test/normalization_bwd_gamma_beta/CMakeLists.txt b/projects/composablekernel/test/normalization_bwd_gamma_beta/CMakeLists.txt similarity index 100% rename from composable_kernel/test/normalization_bwd_gamma_beta/CMakeLists.txt rename to projects/composablekernel/test/normalization_bwd_gamma_beta/CMakeLists.txt diff --git a/composable_kernel/test/normalization_bwd_gamma_beta/test_groupnorm_bwd_gamma_beta_fp32.cpp b/projects/composablekernel/test/normalization_bwd_gamma_beta/test_groupnorm_bwd_gamma_beta_fp32.cpp similarity index 100% rename from composable_kernel/test/normalization_bwd_gamma_beta/test_groupnorm_bwd_gamma_beta_fp32.cpp rename to projects/composablekernel/test/normalization_bwd_gamma_beta/test_groupnorm_bwd_gamma_beta_fp32.cpp diff --git a/composable_kernel/test/normalization_bwd_gamma_beta/test_layernorm2d_bwd_gamma_beta_fp32.cpp b/projects/composablekernel/test/normalization_bwd_gamma_beta/test_layernorm2d_bwd_gamma_beta_fp32.cpp similarity index 100% rename from composable_kernel/test/normalization_bwd_gamma_beta/test_layernorm2d_bwd_gamma_beta_fp32.cpp rename to projects/composablekernel/test/normalization_bwd_gamma_beta/test_layernorm2d_bwd_gamma_beta_fp32.cpp diff --git a/composable_kernel/test/normalization_fwd/CMakeLists.txt b/projects/composablekernel/test/normalization_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/test/normalization_fwd/CMakeLists.txt rename to projects/composablekernel/test/normalization_fwd/CMakeLists.txt diff --git a/composable_kernel/test/normalization_fwd/test_groupnorm_fwd_fp16.cpp b/projects/composablekernel/test/normalization_fwd/test_groupnorm_fwd_fp16.cpp similarity index 100% rename from composable_kernel/test/normalization_fwd/test_groupnorm_fwd_fp16.cpp rename to projects/composablekernel/test/normalization_fwd/test_groupnorm_fwd_fp16.cpp diff --git a/composable_kernel/test/normalization_fwd/test_groupnorm_fwd_fp32.cpp b/projects/composablekernel/test/normalization_fwd/test_groupnorm_fwd_fp32.cpp similarity index 100% rename from composable_kernel/test/normalization_fwd/test_groupnorm_fwd_fp32.cpp rename to projects/composablekernel/test/normalization_fwd/test_groupnorm_fwd_fp32.cpp diff --git a/composable_kernel/test/normalization_fwd/test_layernorm2d_fwd_fp16.cpp b/projects/composablekernel/test/normalization_fwd/test_layernorm2d_fwd_fp16.cpp similarity index 100% rename from composable_kernel/test/normalization_fwd/test_layernorm2d_fwd_fp16.cpp rename to projects/composablekernel/test/normalization_fwd/test_layernorm2d_fwd_fp16.cpp diff --git a/composable_kernel/test/normalization_fwd/test_layernorm2d_fwd_fp32.cpp b/projects/composablekernel/test/normalization_fwd/test_layernorm2d_fwd_fp32.cpp similarity index 100% rename from composable_kernel/test/normalization_fwd/test_layernorm2d_fwd_fp32.cpp rename to projects/composablekernel/test/normalization_fwd/test_layernorm2d_fwd_fp32.cpp diff --git a/composable_kernel/test/normalization_fwd/test_layernorm4d_fwd_fp16.cpp b/projects/composablekernel/test/normalization_fwd/test_layernorm4d_fwd_fp16.cpp similarity index 100% rename from composable_kernel/test/normalization_fwd/test_layernorm4d_fwd_fp16.cpp rename to projects/composablekernel/test/normalization_fwd/test_layernorm4d_fwd_fp16.cpp diff --git a/composable_kernel/test/permute_scale/CMakeLists.txt b/projects/composablekernel/test/permute_scale/CMakeLists.txt similarity index 100% rename from composable_kernel/test/permute_scale/CMakeLists.txt rename to projects/composablekernel/test/permute_scale/CMakeLists.txt diff --git a/composable_kernel/test/permute_scale/test_permute_scale.cpp b/projects/composablekernel/test/permute_scale/test_permute_scale.cpp similarity index 100% rename from composable_kernel/test/permute_scale/test_permute_scale.cpp rename to projects/composablekernel/test/permute_scale/test_permute_scale.cpp diff --git a/composable_kernel/test/pool/CMakeLists.txt b/projects/composablekernel/test/pool/CMakeLists.txt similarity index 100% rename from composable_kernel/test/pool/CMakeLists.txt rename to projects/composablekernel/test/pool/CMakeLists.txt diff --git a/composable_kernel/test/pool/test_avg_pool2d_bwd.cpp b/projects/composablekernel/test/pool/test_avg_pool2d_bwd.cpp similarity index 100% rename from composable_kernel/test/pool/test_avg_pool2d_bwd.cpp rename to projects/composablekernel/test/pool/test_avg_pool2d_bwd.cpp diff --git a/composable_kernel/test/pool/test_avg_pool2d_fwd.cpp b/projects/composablekernel/test/pool/test_avg_pool2d_fwd.cpp similarity index 100% rename from composable_kernel/test/pool/test_avg_pool2d_fwd.cpp rename to projects/composablekernel/test/pool/test_avg_pool2d_fwd.cpp diff --git a/composable_kernel/test/pool/test_avg_pool3d_bwd.cpp b/projects/composablekernel/test/pool/test_avg_pool3d_bwd.cpp similarity index 100% rename from composable_kernel/test/pool/test_avg_pool3d_bwd.cpp rename to projects/composablekernel/test/pool/test_avg_pool3d_bwd.cpp diff --git a/composable_kernel/test/pool/test_avg_pool3d_fwd.cpp b/projects/composablekernel/test/pool/test_avg_pool3d_fwd.cpp similarity index 100% rename from composable_kernel/test/pool/test_avg_pool3d_fwd.cpp rename to projects/composablekernel/test/pool/test_avg_pool3d_fwd.cpp diff --git a/composable_kernel/test/pool/test_max_pool2d_bwd.cpp b/projects/composablekernel/test/pool/test_max_pool2d_bwd.cpp similarity index 100% rename from composable_kernel/test/pool/test_max_pool2d_bwd.cpp rename to projects/composablekernel/test/pool/test_max_pool2d_bwd.cpp diff --git a/composable_kernel/test/pool/test_max_pool2d_fwd.cpp b/projects/composablekernel/test/pool/test_max_pool2d_fwd.cpp similarity index 100% rename from composable_kernel/test/pool/test_max_pool2d_fwd.cpp rename to projects/composablekernel/test/pool/test_max_pool2d_fwd.cpp diff --git a/composable_kernel/test/pool/test_max_pool3d_bwd.cpp b/projects/composablekernel/test/pool/test_max_pool3d_bwd.cpp similarity index 100% rename from composable_kernel/test/pool/test_max_pool3d_bwd.cpp rename to projects/composablekernel/test/pool/test_max_pool3d_bwd.cpp diff --git a/composable_kernel/test/pool/test_max_pool3d_fwd.cpp b/projects/composablekernel/test/pool/test_max_pool3d_fwd.cpp similarity index 100% rename from composable_kernel/test/pool/test_max_pool3d_fwd.cpp rename to projects/composablekernel/test/pool/test_max_pool3d_fwd.cpp diff --git a/composable_kernel/test/pool/test_pool_fwd_common.hpp b/projects/composablekernel/test/pool/test_pool_fwd_common.hpp similarity index 100% rename from composable_kernel/test/pool/test_pool_fwd_common.hpp rename to projects/composablekernel/test/pool/test_pool_fwd_common.hpp diff --git a/composable_kernel/test/position_embedding/CMakeLists.txt b/projects/composablekernel/test/position_embedding/CMakeLists.txt similarity index 100% rename from composable_kernel/test/position_embedding/CMakeLists.txt rename to projects/composablekernel/test/position_embedding/CMakeLists.txt diff --git a/composable_kernel/test/position_embedding/position_embedding.cpp b/projects/composablekernel/test/position_embedding/position_embedding.cpp similarity index 100% rename from composable_kernel/test/position_embedding/position_embedding.cpp rename to projects/composablekernel/test/position_embedding/position_embedding.cpp diff --git a/composable_kernel/test/reduce/CMakeLists.txt b/projects/composablekernel/test/reduce/CMakeLists.txt similarity index 100% rename from composable_kernel/test/reduce/CMakeLists.txt rename to projects/composablekernel/test/reduce/CMakeLists.txt diff --git a/composable_kernel/test/reduce/reduce_no_index.cpp b/projects/composablekernel/test/reduce/reduce_no_index.cpp similarity index 100% rename from composable_kernel/test/reduce/reduce_no_index.cpp rename to projects/composablekernel/test/reduce/reduce_no_index.cpp diff --git a/composable_kernel/test/reduce/reduce_with_index.cpp b/projects/composablekernel/test/reduce/reduce_with_index.cpp similarity index 100% rename from composable_kernel/test/reduce/reduce_with_index.cpp rename to projects/composablekernel/test/reduce/reduce_with_index.cpp diff --git a/composable_kernel/test/reference_conv_fwd/CMakeLists.txt b/projects/composablekernel/test/reference_conv_fwd/CMakeLists.txt similarity index 100% rename from composable_kernel/test/reference_conv_fwd/CMakeLists.txt rename to projects/composablekernel/test/reference_conv_fwd/CMakeLists.txt diff --git a/composable_kernel/test/reference_conv_fwd/reference_conv_fwd.cpp b/projects/composablekernel/test/reference_conv_fwd/reference_conv_fwd.cpp similarity index 100% rename from composable_kernel/test/reference_conv_fwd/reference_conv_fwd.cpp rename to projects/composablekernel/test/reference_conv_fwd/reference_conv_fwd.cpp diff --git a/composable_kernel/test/scatter_gather/CMakeLists.txt b/projects/composablekernel/test/scatter_gather/CMakeLists.txt similarity index 100% rename from composable_kernel/test/scatter_gather/CMakeLists.txt rename to projects/composablekernel/test/scatter_gather/CMakeLists.txt diff --git a/composable_kernel/test/scatter_gather/scatter_gather.cpp b/projects/composablekernel/test/scatter_gather/scatter_gather.cpp similarity index 100% rename from composable_kernel/test/scatter_gather/scatter_gather.cpp rename to projects/composablekernel/test/scatter_gather/scatter_gather.cpp diff --git a/composable_kernel/test/smfmac_op/CMakeLists.txt b/projects/composablekernel/test/smfmac_op/CMakeLists.txt similarity index 100% rename from composable_kernel/test/smfmac_op/CMakeLists.txt rename to projects/composablekernel/test/smfmac_op/CMakeLists.txt diff --git a/composable_kernel/test/smfmac_op/smfmac_op.cpp b/projects/composablekernel/test/smfmac_op/smfmac_op.cpp similarity index 100% rename from composable_kernel/test/smfmac_op/smfmac_op.cpp rename to projects/composablekernel/test/smfmac_op/smfmac_op.cpp diff --git a/composable_kernel/test/smfmac_op/smfmac_op_util.hpp b/projects/composablekernel/test/smfmac_op/smfmac_op_util.hpp similarity index 100% rename from composable_kernel/test/smfmac_op/smfmac_op_util.hpp rename to projects/composablekernel/test/smfmac_op/smfmac_op_util.hpp diff --git a/composable_kernel/test/smfmac_op/smfmac_op_xdl.cpp b/projects/composablekernel/test/smfmac_op/smfmac_op_xdl.cpp similarity index 100% rename from composable_kernel/test/smfmac_op/smfmac_op_xdl.cpp rename to projects/composablekernel/test/smfmac_op/smfmac_op_xdl.cpp diff --git a/composable_kernel/test/softmax/CMakeLists.txt b/projects/composablekernel/test/softmax/CMakeLists.txt similarity index 100% rename from composable_kernel/test/softmax/CMakeLists.txt rename to projects/composablekernel/test/softmax/CMakeLists.txt diff --git a/composable_kernel/test/softmax/test_softmax_interface.cpp b/projects/composablekernel/test/softmax/test_softmax_interface.cpp similarity index 100% rename from composable_kernel/test/softmax/test_softmax_interface.cpp rename to projects/composablekernel/test/softmax/test_softmax_interface.cpp diff --git a/composable_kernel/test/softmax/test_softmax_rank3.cpp b/projects/composablekernel/test/softmax/test_softmax_rank3.cpp similarity index 100% rename from composable_kernel/test/softmax/test_softmax_rank3.cpp rename to projects/composablekernel/test/softmax/test_softmax_rank3.cpp diff --git a/composable_kernel/test/softmax/test_softmax_rank4.cpp b/projects/composablekernel/test/softmax/test_softmax_rank4.cpp similarity index 100% rename from composable_kernel/test/softmax/test_softmax_rank4.cpp rename to projects/composablekernel/test/softmax/test_softmax_rank4.cpp diff --git a/composable_kernel/test/softmax/test_softmax_ut_cases.inc b/projects/composablekernel/test/softmax/test_softmax_ut_cases.inc similarity index 100% rename from composable_kernel/test/softmax/test_softmax_ut_cases.inc rename to projects/composablekernel/test/softmax/test_softmax_ut_cases.inc diff --git a/composable_kernel/test/softmax/test_softmax_util.hpp b/projects/composablekernel/test/softmax/test_softmax_util.hpp similarity index 100% rename from composable_kernel/test/softmax/test_softmax_util.hpp rename to projects/composablekernel/test/softmax/test_softmax_util.hpp diff --git a/composable_kernel/test/space_filling_curve/CMakeLists.txt b/projects/composablekernel/test/space_filling_curve/CMakeLists.txt similarity index 100% rename from composable_kernel/test/space_filling_curve/CMakeLists.txt rename to projects/composablekernel/test/space_filling_curve/CMakeLists.txt diff --git a/composable_kernel/test/space_filling_curve/space_filling_curve.cpp b/projects/composablekernel/test/space_filling_curve/space_filling_curve.cpp similarity index 100% rename from composable_kernel/test/space_filling_curve/space_filling_curve.cpp rename to projects/composablekernel/test/space_filling_curve/space_filling_curve.cpp diff --git a/composable_kernel/test/transpose/CMakeLists.txt b/projects/composablekernel/test/transpose/CMakeLists.txt similarity index 100% rename from composable_kernel/test/transpose/CMakeLists.txt rename to projects/composablekernel/test/transpose/CMakeLists.txt diff --git a/composable_kernel/test/transpose/test_transpose_xdl.cpp b/projects/composablekernel/test/transpose/test_transpose_xdl.cpp similarity index 100% rename from composable_kernel/test/transpose/test_transpose_xdl.cpp rename to projects/composablekernel/test/transpose/test_transpose_xdl.cpp diff --git a/composable_kernel/test/wmma_op/CMakeLists.txt b/projects/composablekernel/test/wmma_op/CMakeLists.txt similarity index 100% rename from composable_kernel/test/wmma_op/CMakeLists.txt rename to projects/composablekernel/test/wmma_op/CMakeLists.txt diff --git a/composable_kernel/test/wmma_op/wmma_op.cpp b/projects/composablekernel/test/wmma_op/wmma_op.cpp similarity index 100% rename from composable_kernel/test/wmma_op/wmma_op.cpp rename to projects/composablekernel/test/wmma_op/wmma_op.cpp diff --git a/composable_kernel/test/wmma_op/wmma_op_util.hpp b/projects/composablekernel/test/wmma_op/wmma_op_util.hpp similarity index 100% rename from composable_kernel/test/wmma_op/wmma_op_util.hpp rename to projects/composablekernel/test/wmma_op/wmma_op_util.hpp diff --git a/composable_kernel/test/wrapper/CMakeLists.txt b/projects/composablekernel/test/wrapper/CMakeLists.txt similarity index 100% rename from composable_kernel/test/wrapper/CMakeLists.txt rename to projects/composablekernel/test/wrapper/CMakeLists.txt diff --git a/composable_kernel/test/wrapper/test_wrapper_copy.cpp b/projects/composablekernel/test/wrapper/test_wrapper_copy.cpp similarity index 100% rename from composable_kernel/test/wrapper/test_wrapper_copy.cpp rename to projects/composablekernel/test/wrapper/test_wrapper_copy.cpp diff --git a/composable_kernel/test/wrapper/test_wrapper_gemm_xdl.cpp b/projects/composablekernel/test/wrapper/test_wrapper_gemm_xdl.cpp similarity index 100% rename from composable_kernel/test/wrapper/test_wrapper_gemm_xdl.cpp rename to projects/composablekernel/test/wrapper/test_wrapper_gemm_xdl.cpp diff --git a/composable_kernel/test/wrapper/test_wrapper_layout.cpp b/projects/composablekernel/test/wrapper/test_wrapper_layout.cpp similarity index 100% rename from composable_kernel/test/wrapper/test_wrapper_layout.cpp rename to projects/composablekernel/test/wrapper/test_wrapper_layout.cpp diff --git a/composable_kernel/test/wrapper/test_wrapper_partition.cpp b/projects/composablekernel/test/wrapper/test_wrapper_partition.cpp similarity index 100% rename from composable_kernel/test/wrapper/test_wrapper_partition.cpp rename to projects/composablekernel/test/wrapper/test_wrapper_partition.cpp diff --git a/composable_kernel/test/wrapper/test_wrapper_tensor.cpp b/projects/composablekernel/test/wrapper/test_wrapper_tensor.cpp similarity index 100% rename from composable_kernel/test/wrapper/test_wrapper_tensor.cpp rename to projects/composablekernel/test/wrapper/test_wrapper_tensor.cpp diff --git a/composable_kernel/tile_engine/CMakeLists.txt b/projects/composablekernel/tile_engine/CMakeLists.txt similarity index 100% rename from composable_kernel/tile_engine/CMakeLists.txt rename to projects/composablekernel/tile_engine/CMakeLists.txt diff --git a/composable_kernel/tile_engine/include/CMakeLists.txt b/projects/composablekernel/tile_engine/include/CMakeLists.txt similarity index 100% rename from composable_kernel/tile_engine/include/CMakeLists.txt rename to projects/composablekernel/tile_engine/include/CMakeLists.txt diff --git a/composable_kernel/tile_engine/ops/CMakeLists.txt b/projects/composablekernel/tile_engine/ops/CMakeLists.txt similarity index 100% rename from composable_kernel/tile_engine/ops/CMakeLists.txt rename to projects/composablekernel/tile_engine/ops/CMakeLists.txt diff --git a/composable_kernel/tile_engine/ops/gemm/CMakeLists.txt b/projects/composablekernel/tile_engine/ops/gemm/CMakeLists.txt similarity index 100% rename from composable_kernel/tile_engine/ops/gemm/CMakeLists.txt rename to projects/composablekernel/tile_engine/ops/gemm/CMakeLists.txt diff --git a/composable_kernel/tile_engine/ops/gemm/README.md b/projects/composablekernel/tile_engine/ops/gemm/README.md similarity index 100% rename from composable_kernel/tile_engine/ops/gemm/README.md rename to projects/composablekernel/tile_engine/ops/gemm/README.md diff --git a/composable_kernel/tile_engine/ops/gemm/configs/instance_combination.json b/projects/composablekernel/tile_engine/ops/gemm/configs/instance_combination.json similarity index 100% rename from composable_kernel/tile_engine/ops/gemm/configs/instance_combination.json rename to projects/composablekernel/tile_engine/ops/gemm/configs/instance_combination.json diff --git a/composable_kernel/tile_engine/ops/gemm/gemm_host_api.cpp b/projects/composablekernel/tile_engine/ops/gemm/gemm_host_api.cpp similarity index 100% rename from composable_kernel/tile_engine/ops/gemm/gemm_host_api.cpp rename to projects/composablekernel/tile_engine/ops/gemm/gemm_host_api.cpp diff --git a/composable_kernel/tile_engine/ops/gemm/gemm_host_api.hpp b/projects/composablekernel/tile_engine/ops/gemm/gemm_host_api.hpp similarity index 100% rename from composable_kernel/tile_engine/ops/gemm/gemm_host_api.hpp rename to projects/composablekernel/tile_engine/ops/gemm/gemm_host_api.hpp diff --git a/composable_kernel/tile_engine/ops/gemm/gemm_instance_builder.py b/projects/composablekernel/tile_engine/ops/gemm/gemm_instance_builder.py similarity index 100% rename from composable_kernel/tile_engine/ops/gemm/gemm_instance_builder.py rename to projects/composablekernel/tile_engine/ops/gemm/gemm_instance_builder.py diff --git a/hipBLAS-common/.azuredevops/rocm-ci.yml b/projects/hipblas-common/.azuredevops/rocm-ci.yml similarity index 100% rename from hipBLAS-common/.azuredevops/rocm-ci.yml rename to projects/hipblas-common/.azuredevops/rocm-ci.yml diff --git a/hipBLAS-common/.github/CODEOWNERS b/projects/hipblas-common/.github/CODEOWNERS similarity index 100% rename from hipBLAS-common/.github/CODEOWNERS rename to projects/hipblas-common/.github/CODEOWNERS diff --git a/hipBLAS-common/CMakeLists.txt b/projects/hipblas-common/CMakeLists.txt similarity index 100% rename from hipBLAS-common/CMakeLists.txt rename to projects/hipblas-common/CMakeLists.txt diff --git a/hipBLAS-common/LICENSE.md b/projects/hipblas-common/LICENSE.md similarity index 100% rename from hipBLAS-common/LICENSE.md rename to projects/hipblas-common/LICENSE.md diff --git a/hipBLAS-common/README.md b/projects/hipblas-common/README.md similarity index 100% rename from hipBLAS-common/README.md rename to projects/hipblas-common/README.md diff --git a/hipBLAS-common/cmake/dependencies.cmake b/projects/hipblas-common/cmake/dependencies.cmake similarity index 100% rename from hipBLAS-common/cmake/dependencies.cmake rename to projects/hipblas-common/cmake/dependencies.cmake diff --git a/hipBLAS-common/cmake/get-cli-arguments.cmake b/projects/hipblas-common/cmake/get-cli-arguments.cmake similarity index 100% rename from hipBLAS-common/cmake/get-cli-arguments.cmake rename to projects/hipblas-common/cmake/get-cli-arguments.cmake diff --git a/hipBLAS-common/cmake/hipblas-common-config.cmake b/projects/hipblas-common/cmake/hipblas-common-config.cmake similarity index 100% rename from hipBLAS-common/cmake/hipblas-common-config.cmake rename to projects/hipblas-common/cmake/hipblas-common-config.cmake diff --git a/hipBLAS-common/library/CMakeLists.txt b/projects/hipblas-common/library/CMakeLists.txt similarity index 100% rename from hipBLAS-common/library/CMakeLists.txt rename to projects/hipblas-common/library/CMakeLists.txt diff --git a/hipBLAS-common/library/include/hipblas-common/hipblas-common.h b/projects/hipblas-common/library/include/hipblas-common/hipblas-common.h similarity index 100% rename from hipBLAS-common/library/include/hipblas-common/hipblas-common.h rename to projects/hipblas-common/library/include/hipblas-common/hipblas-common.h diff --git a/hipBLAS-common/next-cmake/CMakeLists.txt b/projects/hipblas-common/next-cmake/CMakeLists.txt similarity index 100% rename from hipBLAS-common/next-cmake/CMakeLists.txt rename to projects/hipblas-common/next-cmake/CMakeLists.txt diff --git a/hipBLAS-common/rmake.py b/projects/hipblas-common/rmake.py similarity index 100% rename from hipBLAS-common/rmake.py rename to projects/hipblas-common/rmake.py diff --git a/hipBLAS-common/tests/CMakeLists.txt b/projects/hipblas-common/tests/CMakeLists.txt similarity index 100% rename from hipBLAS-common/tests/CMakeLists.txt rename to projects/hipblas-common/tests/CMakeLists.txt diff --git a/hipBLAS-common/tests/main.cpp b/projects/hipblas-common/tests/main.cpp similarity index 100% rename from hipBLAS-common/tests/main.cpp rename to projects/hipblas-common/tests/main.cpp diff --git a/hipBLAS/.azuredevops/rocm-ci.yml b/projects/hipblas/.azuredevops/rocm-ci.yml similarity index 100% rename from hipBLAS/.azuredevops/rocm-ci.yml rename to projects/hipblas/.azuredevops/rocm-ci.yml diff --git a/Tensile/.clang-format b/projects/hipblas/.clang-format old mode 100755 new mode 100644 similarity index 100% rename from Tensile/.clang-format rename to projects/hipblas/.clang-format diff --git a/hipBLAS/.githooks/install b/projects/hipblas/.githooks/install similarity index 100% rename from hipBLAS/.githooks/install rename to projects/hipblas/.githooks/install diff --git a/hipBLAS/.githooks/pre-commit b/projects/hipblas/.githooks/pre-commit similarity index 100% rename from hipBLAS/.githooks/pre-commit rename to projects/hipblas/.githooks/pre-commit diff --git a/hipBLAS/.github/CODEOWNERS b/projects/hipblas/.github/CODEOWNERS similarity index 100% rename from hipBLAS/.github/CODEOWNERS rename to projects/hipblas/.github/CODEOWNERS diff --git a/hipBLAS/.github/CONTRIBUTING.rst b/projects/hipblas/.github/CONTRIBUTING.rst similarity index 100% rename from hipBLAS/.github/CONTRIBUTING.rst rename to projects/hipblas/.github/CONTRIBUTING.rst diff --git a/hipBLAS/.github/ISSUE_TEMPLATE.md b/projects/hipblas/.github/ISSUE_TEMPLATE.md similarity index 100% rename from hipBLAS/.github/ISSUE_TEMPLATE.md rename to projects/hipblas/.github/ISSUE_TEMPLATE.md diff --git a/hipBLAS/.github/PULL_REQUEST_TEMPLATE.md b/projects/hipblas/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from hipBLAS/.github/PULL_REQUEST_TEMPLATE.md rename to projects/hipblas/.github/PULL_REQUEST_TEMPLATE.md diff --git a/hipBLAS/.github/dependabot.yml b/projects/hipblas/.github/dependabot.yml similarity index 100% rename from hipBLAS/.github/dependabot.yml rename to projects/hipblas/.github/dependabot.yml diff --git a/hipBLAS/.gitignore b/projects/hipblas/.gitignore similarity index 100% rename from hipBLAS/.gitignore rename to projects/hipblas/.gitignore diff --git a/hipBLAS/.jenkins/codecov.groovy b/projects/hipblas/.jenkins/codecov.groovy similarity index 100% rename from hipBLAS/.jenkins/codecov.groovy rename to projects/hipblas/.jenkins/codecov.groovy diff --git a/hipBLAS/.jenkins/common.groovy b/projects/hipblas/.jenkins/common.groovy similarity index 100% rename from hipBLAS/.jenkins/common.groovy rename to projects/hipblas/.jenkins/common.groovy diff --git a/hipBLAS/.jenkins/multicompiler.groovy b/projects/hipblas/.jenkins/multicompiler.groovy similarity index 100% rename from hipBLAS/.jenkins/multicompiler.groovy rename to projects/hipblas/.jenkins/multicompiler.groovy diff --git a/hipBLAS/.jenkins/precheckin-cuda.groovy b/projects/hipblas/.jenkins/precheckin-cuda.groovy similarity index 100% rename from hipBLAS/.jenkins/precheckin-cuda.groovy rename to projects/hipblas/.jenkins/precheckin-cuda.groovy diff --git a/hipBLAS/.jenkins/precheckin.groovy b/projects/hipblas/.jenkins/precheckin.groovy similarity index 100% rename from hipBLAS/.jenkins/precheckin.groovy rename to projects/hipblas/.jenkins/precheckin.groovy diff --git a/hipBLAS/.jenkins/static.groovy b/projects/hipblas/.jenkins/static.groovy similarity index 100% rename from hipBLAS/.jenkins/static.groovy rename to projects/hipblas/.jenkins/static.groovy diff --git a/hipBLAS/.jenkins/staticanalysis.groovy b/projects/hipblas/.jenkins/staticanalysis.groovy similarity index 100% rename from hipBLAS/.jenkins/staticanalysis.groovy rename to projects/hipblas/.jenkins/staticanalysis.groovy diff --git a/Tensile/.readthedocs.yaml b/projects/hipblas/.readthedocs.yaml similarity index 100% rename from Tensile/.readthedocs.yaml rename to projects/hipblas/.readthedocs.yaml diff --git a/hipBLAS/CHANGELOG.md b/projects/hipblas/CHANGELOG.md similarity index 100% rename from hipBLAS/CHANGELOG.md rename to projects/hipblas/CHANGELOG.md diff --git a/hipBLAS/CMakeLists.txt b/projects/hipblas/CMakeLists.txt similarity index 100% rename from hipBLAS/CMakeLists.txt rename to projects/hipblas/CMakeLists.txt diff --git a/hipBLAS/LICENSE.md b/projects/hipblas/LICENSE.md similarity index 100% rename from hipBLAS/LICENSE.md rename to projects/hipblas/LICENSE.md diff --git a/hipBLAS/README.md b/projects/hipblas/README.md similarity index 100% rename from hipBLAS/README.md rename to projects/hipblas/README.md diff --git a/hipBLAS/bump_develop_version.sh b/projects/hipblas/bump_develop_version.sh similarity index 100% rename from hipBLAS/bump_develop_version.sh rename to projects/hipblas/bump_develop_version.sh diff --git a/hipBLAS/clients/CMakeLists.txt b/projects/hipblas/clients/CMakeLists.txt similarity index 100% rename from hipBLAS/clients/CMakeLists.txt rename to projects/hipblas/clients/CMakeLists.txt diff --git a/hipBLAS/clients/benchmarks/CMakeLists.txt b/projects/hipblas/clients/benchmarks/CMakeLists.txt similarity index 100% rename from hipBLAS/clients/benchmarks/CMakeLists.txt rename to projects/hipblas/clients/benchmarks/CMakeLists.txt diff --git a/hipBLAS/clients/benchmarks/client.cpp b/projects/hipblas/clients/benchmarks/client.cpp similarity index 100% rename from hipBLAS/clients/benchmarks/client.cpp rename to projects/hipblas/clients/benchmarks/client.cpp diff --git a/hipBLAS/clients/cmake/build-options.cmake b/projects/hipblas/clients/cmake/build-options.cmake similarity index 100% rename from hipBLAS/clients/cmake/build-options.cmake rename to projects/hipblas/clients/cmake/build-options.cmake diff --git a/hipBLAS/clients/common/arg_check.cpp b/projects/hipblas/clients/common/arg_check.cpp similarity index 100% rename from hipBLAS/clients/common/arg_check.cpp rename to projects/hipblas/clients/common/arg_check.cpp diff --git a/hipBLAS/clients/common/argument_model.cpp b/projects/hipblas/clients/common/argument_model.cpp similarity index 100% rename from hipBLAS/clients/common/argument_model.cpp rename to projects/hipblas/clients/common/argument_model.cpp diff --git a/hipBLAS/clients/common/blis_interface.cpp b/projects/hipblas/clients/common/blis_interface.cpp similarity index 100% rename from hipBLAS/clients/common/blis_interface.cpp rename to projects/hipblas/clients/common/blis_interface.cpp diff --git a/hipBLAS/clients/common/cblas_interface.cpp b/projects/hipblas/clients/common/cblas_interface.cpp similarity index 100% rename from hipBLAS/clients/common/cblas_interface.cpp rename to projects/hipblas/clients/common/cblas_interface.cpp diff --git a/hipBLAS/clients/common/clients_common.cpp b/projects/hipblas/clients/common/clients_common.cpp similarity index 100% rename from hipBLAS/clients/common/clients_common.cpp rename to projects/hipblas/clients/common/clients_common.cpp diff --git a/hipBLAS/clients/common/hipblas_arguments.cpp b/projects/hipblas/clients/common/hipblas_arguments.cpp similarity index 100% rename from hipBLAS/clients/common/hipblas_arguments.cpp rename to projects/hipblas/clients/common/hipblas_arguments.cpp diff --git a/hipBLAS/clients/common/hipblas_datatype2string.cpp b/projects/hipblas/clients/common/hipblas_datatype2string.cpp similarity index 100% rename from hipBLAS/clients/common/hipblas_datatype2string.cpp rename to projects/hipblas/clients/common/hipblas_datatype2string.cpp diff --git a/hipBLAS/clients/common/hipblas_gentest.py b/projects/hipblas/clients/common/hipblas_gentest.py similarity index 100% rename from hipBLAS/clients/common/hipblas_gentest.py rename to projects/hipblas/clients/common/hipblas_gentest.py diff --git a/hipBLAS/clients/common/hipblas_parse_data.cpp b/projects/hipblas/clients/common/hipblas_parse_data.cpp similarity index 100% rename from hipBLAS/clients/common/hipblas_parse_data.cpp rename to projects/hipblas/clients/common/hipblas_parse_data.cpp diff --git a/hipBLAS/clients/common/host_alloc.cpp b/projects/hipblas/clients/common/host_alloc.cpp similarity index 100% rename from hipBLAS/clients/common/host_alloc.cpp rename to projects/hipblas/clients/common/host_alloc.cpp diff --git a/hipBLAS/clients/common/near.cpp b/projects/hipblas/clients/common/near.cpp similarity index 100% rename from hipBLAS/clients/common/near.cpp rename to projects/hipblas/clients/common/near.cpp diff --git a/hipBLAS/clients/common/norm.cpp b/projects/hipblas/clients/common/norm.cpp similarity index 100% rename from hipBLAS/clients/common/norm.cpp rename to projects/hipblas/clients/common/norm.cpp diff --git a/hipBLAS/clients/common/unit.cpp b/projects/hipblas/clients/common/unit.cpp similarity index 100% rename from hipBLAS/clients/common/unit.cpp rename to projects/hipblas/clients/common/unit.cpp diff --git a/hipBLAS/clients/common/utility.cpp b/projects/hipblas/clients/common/utility.cpp similarity index 100% rename from hipBLAS/clients/common/utility.cpp rename to projects/hipblas/clients/common/utility.cpp diff --git a/hipBLAS/clients/gtest/CMakeLists.txt b/projects/hipblas/clients/gtest/CMakeLists.txt similarity index 100% rename from hipBLAS/clients/gtest/CMakeLists.txt rename to projects/hipblas/clients/gtest/CMakeLists.txt diff --git a/hipBLAS/clients/gtest/auxil/auxiliary_gtest.cpp b/projects/hipblas/clients/gtest/auxil/auxiliary_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/auxil/auxiliary_gtest.cpp rename to projects/hipblas/clients/gtest/auxil/auxiliary_gtest.cpp diff --git a/hipBLAS/clients/gtest/auxil/set_get_matrix_vector_gtest.cpp b/projects/hipblas/clients/gtest/auxil/set_get_matrix_vector_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/auxil/set_get_matrix_vector_gtest.cpp rename to projects/hipblas/clients/gtest/auxil/set_get_matrix_vector_gtest.cpp diff --git a/hipBLAS/clients/gtest/auxil/set_get_matrix_vector_gtest.yaml b/projects/hipblas/clients/gtest/auxil/set_get_matrix_vector_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/auxil/set_get_matrix_vector_gtest.yaml rename to projects/hipblas/clients/gtest/auxil/set_get_matrix_vector_gtest.yaml diff --git a/hipBLAS/clients/gtest/auxil/set_get_mode_gtest.cpp b/projects/hipblas/clients/gtest/auxil/set_get_mode_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/auxil/set_get_mode_gtest.cpp rename to projects/hipblas/clients/gtest/auxil/set_get_mode_gtest.cpp diff --git a/hipBLAS/clients/gtest/auxil/set_get_mode_gtest.yaml b/projects/hipblas/clients/gtest/auxil/set_get_mode_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/auxil/set_get_mode_gtest.yaml rename to projects/hipblas/clients/gtest/auxil/set_get_mode_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas1/asum_gtest.cpp b/projects/hipblas/clients/gtest/blas1/asum_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas1/asum_gtest.cpp rename to projects/hipblas/clients/gtest/blas1/asum_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas1/asum_gtest.yaml b/projects/hipblas/clients/gtest/blas1/asum_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas1/asum_gtest.yaml rename to projects/hipblas/clients/gtest/blas1/asum_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas1/axpy_gtest.cpp b/projects/hipblas/clients/gtest/blas1/axpy_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas1/axpy_gtest.cpp rename to projects/hipblas/clients/gtest/blas1/axpy_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas1/axpy_gtest.yaml b/projects/hipblas/clients/gtest/blas1/axpy_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas1/axpy_gtest.yaml rename to projects/hipblas/clients/gtest/blas1/axpy_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas1/copy_gtest.cpp b/projects/hipblas/clients/gtest/blas1/copy_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas1/copy_gtest.cpp rename to projects/hipblas/clients/gtest/blas1/copy_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas1/copy_gtest.yaml b/projects/hipblas/clients/gtest/blas1/copy_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas1/copy_gtest.yaml rename to projects/hipblas/clients/gtest/blas1/copy_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas1/dot_gtest.cpp b/projects/hipblas/clients/gtest/blas1/dot_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas1/dot_gtest.cpp rename to projects/hipblas/clients/gtest/blas1/dot_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas1/dot_gtest.yaml b/projects/hipblas/clients/gtest/blas1/dot_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas1/dot_gtest.yaml rename to projects/hipblas/clients/gtest/blas1/dot_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas1/iamaxmin_gtest.cpp b/projects/hipblas/clients/gtest/blas1/iamaxmin_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas1/iamaxmin_gtest.cpp rename to projects/hipblas/clients/gtest/blas1/iamaxmin_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas1/iamaxmin_gtest.yaml b/projects/hipblas/clients/gtest/blas1/iamaxmin_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas1/iamaxmin_gtest.yaml rename to projects/hipblas/clients/gtest/blas1/iamaxmin_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas1/nrm2_gtest.cpp b/projects/hipblas/clients/gtest/blas1/nrm2_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas1/nrm2_gtest.cpp rename to projects/hipblas/clients/gtest/blas1/nrm2_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas1/nrm2_gtest.yaml b/projects/hipblas/clients/gtest/blas1/nrm2_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas1/nrm2_gtest.yaml rename to projects/hipblas/clients/gtest/blas1/nrm2_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas1/rot_gtest.cpp b/projects/hipblas/clients/gtest/blas1/rot_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas1/rot_gtest.cpp rename to projects/hipblas/clients/gtest/blas1/rot_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas1/rot_gtest.yaml b/projects/hipblas/clients/gtest/blas1/rot_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas1/rot_gtest.yaml rename to projects/hipblas/clients/gtest/blas1/rot_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas1/scal_gtest.cpp b/projects/hipblas/clients/gtest/blas1/scal_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas1/scal_gtest.cpp rename to projects/hipblas/clients/gtest/blas1/scal_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas1/scal_gtest.yaml b/projects/hipblas/clients/gtest/blas1/scal_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas1/scal_gtest.yaml rename to projects/hipblas/clients/gtest/blas1/scal_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas1/swap_gtest.cpp b/projects/hipblas/clients/gtest/blas1/swap_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas1/swap_gtest.cpp rename to projects/hipblas/clients/gtest/blas1/swap_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas1/swap_gtest.yaml b/projects/hipblas/clients/gtest/blas1/swap_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas1/swap_gtest.yaml rename to projects/hipblas/clients/gtest/blas1/swap_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/gbmv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/gbmv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/gbmv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/gbmv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/gbmv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/gbmv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/gbmv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/gbmv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/gemv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/gemv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/gemv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/gemv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/gemv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/gemv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/gemv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/gemv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/ger_gtest.cpp b/projects/hipblas/clients/gtest/blas2/ger_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/ger_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/ger_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/ger_gtest.yaml b/projects/hipblas/clients/gtest/blas2/ger_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/ger_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/ger_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/hbmv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/hbmv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/hbmv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/hbmv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/hbmv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/hbmv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/hbmv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/hbmv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/hemv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/hemv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/hemv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/hemv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/hemv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/hemv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/hemv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/hemv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/her2_gtest.cpp b/projects/hipblas/clients/gtest/blas2/her2_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/her2_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/her2_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/her2_gtest.yaml b/projects/hipblas/clients/gtest/blas2/her2_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/her2_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/her2_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/her_gtest.cpp b/projects/hipblas/clients/gtest/blas2/her_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/her_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/her_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/her_gtest.yaml b/projects/hipblas/clients/gtest/blas2/her_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/her_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/her_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/hpmv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/hpmv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/hpmv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/hpmv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/hpmv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/hpmv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/hpmv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/hpmv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/hpr2_gtest.cpp b/projects/hipblas/clients/gtest/blas2/hpr2_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/hpr2_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/hpr2_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/hpr2_gtest.yaml b/projects/hipblas/clients/gtest/blas2/hpr2_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/hpr2_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/hpr2_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/hpr_gtest.cpp b/projects/hipblas/clients/gtest/blas2/hpr_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/hpr_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/hpr_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/hpr_gtest.yaml b/projects/hipblas/clients/gtest/blas2/hpr_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/hpr_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/hpr_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/sbmv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/sbmv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/sbmv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/sbmv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/sbmv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/sbmv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/sbmv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/sbmv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/spmv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/spmv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/spmv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/spmv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/spmv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/spmv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/spmv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/spmv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/spr2_gtest.cpp b/projects/hipblas/clients/gtest/blas2/spr2_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/spr2_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/spr2_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/spr2_gtest.yaml b/projects/hipblas/clients/gtest/blas2/spr2_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/spr2_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/spr2_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/spr_gtest.cpp b/projects/hipblas/clients/gtest/blas2/spr_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/spr_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/spr_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/spr_gtest.yaml b/projects/hipblas/clients/gtest/blas2/spr_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/spr_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/spr_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/symv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/symv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/symv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/symv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/symv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/symv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/symv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/symv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/syr2_gtest.cpp b/projects/hipblas/clients/gtest/blas2/syr2_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/syr2_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/syr2_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/syr2_gtest.yaml b/projects/hipblas/clients/gtest/blas2/syr2_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/syr2_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/syr2_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/syr_gtest.cpp b/projects/hipblas/clients/gtest/blas2/syr_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/syr_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/syr_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/syr_gtest.yaml b/projects/hipblas/clients/gtest/blas2/syr_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/syr_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/syr_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/tbmv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/tbmv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/tbmv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/tbmv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/tbmv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/tbmv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/tbmv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/tbmv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/tbsv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/tbsv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/tbsv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/tbsv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/tbsv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/tbsv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/tbsv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/tbsv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/tpmv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/tpmv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/tpmv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/tpmv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/tpmv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/tpmv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/tpmv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/tpmv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/tpsv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/tpsv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/tpsv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/tpsv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/tpsv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/tpsv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/tpsv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/tpsv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/trmv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/trmv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/trmv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/trmv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/trmv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/trmv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/trmv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/trmv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas2/trsv_gtest.cpp b/projects/hipblas/clients/gtest/blas2/trsv_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas2/trsv_gtest.cpp rename to projects/hipblas/clients/gtest/blas2/trsv_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas2/trsv_gtest.yaml b/projects/hipblas/clients/gtest/blas2/trsv_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas2/trsv_gtest.yaml rename to projects/hipblas/clients/gtest/blas2/trsv_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/dgmm_gtest.cpp b/projects/hipblas/clients/gtest/blas3/dgmm_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/dgmm_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/dgmm_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/dgmm_gtest.yaml b/projects/hipblas/clients/gtest/blas3/dgmm_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/dgmm_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/dgmm_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/geam_gtest.cpp b/projects/hipblas/clients/gtest/blas3/geam_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/geam_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/geam_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/geam_gtest.yaml b/projects/hipblas/clients/gtest/blas3/geam_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/geam_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/geam_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/gemm_gtest.cpp b/projects/hipblas/clients/gtest/blas3/gemm_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/gemm_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/gemm_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/gemm_gtest.yaml b/projects/hipblas/clients/gtest/blas3/gemm_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/gemm_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/gemm_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/hemm_gtest.cpp b/projects/hipblas/clients/gtest/blas3/hemm_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/hemm_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/hemm_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/hemm_gtest.yaml b/projects/hipblas/clients/gtest/blas3/hemm_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/hemm_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/hemm_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/her2k_gtest.cpp b/projects/hipblas/clients/gtest/blas3/her2k_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/her2k_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/her2k_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/her2k_gtest.yaml b/projects/hipblas/clients/gtest/blas3/her2k_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/her2k_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/her2k_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/herk_gtest.cpp b/projects/hipblas/clients/gtest/blas3/herk_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/herk_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/herk_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/herk_gtest.yaml b/projects/hipblas/clients/gtest/blas3/herk_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/herk_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/herk_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/herkx_gtest.cpp b/projects/hipblas/clients/gtest/blas3/herkx_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/herkx_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/herkx_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/herkx_gtest.yaml b/projects/hipblas/clients/gtest/blas3/herkx_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/herkx_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/herkx_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/symm_gtest.cpp b/projects/hipblas/clients/gtest/blas3/symm_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/symm_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/symm_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/symm_gtest.yaml b/projects/hipblas/clients/gtest/blas3/symm_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/symm_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/symm_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/syr2k_gtest.cpp b/projects/hipblas/clients/gtest/blas3/syr2k_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/syr2k_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/syr2k_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/syr2k_gtest.yaml b/projects/hipblas/clients/gtest/blas3/syr2k_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/syr2k_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/syr2k_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/syrk_gtest.cpp b/projects/hipblas/clients/gtest/blas3/syrk_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/syrk_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/syrk_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/syrk_gtest.yaml b/projects/hipblas/clients/gtest/blas3/syrk_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/syrk_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/syrk_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/syrkx_gtest.cpp b/projects/hipblas/clients/gtest/blas3/syrkx_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/syrkx_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/syrkx_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/syrkx_gtest.yaml b/projects/hipblas/clients/gtest/blas3/syrkx_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/syrkx_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/syrkx_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/trmm_gtest.cpp b/projects/hipblas/clients/gtest/blas3/trmm_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/trmm_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/trmm_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/trmm_gtest.yaml b/projects/hipblas/clients/gtest/blas3/trmm_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/trmm_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/trmm_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/trsm_gtest.cpp b/projects/hipblas/clients/gtest/blas3/trsm_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/trsm_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/trsm_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/trsm_gtest.yaml b/projects/hipblas/clients/gtest/blas3/trsm_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/trsm_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/trsm_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas3/trtri_gtest.cpp b/projects/hipblas/clients/gtest/blas3/trtri_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas3/trtri_gtest.cpp rename to projects/hipblas/clients/gtest/blas3/trtri_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas3/trtri_gtest.yaml b/projects/hipblas/clients/gtest/blas3/trtri_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas3/trtri_gtest.yaml rename to projects/hipblas/clients/gtest/blas3/trtri_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas_ex/axpy_ex_gtest.cpp b/projects/hipblas/clients/gtest/blas_ex/axpy_ex_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/axpy_ex_gtest.cpp rename to projects/hipblas/clients/gtest/blas_ex/axpy_ex_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas_ex/axpy_ex_gtest.yaml b/projects/hipblas/clients/gtest/blas_ex/axpy_ex_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/axpy_ex_gtest.yaml rename to projects/hipblas/clients/gtest/blas_ex/axpy_ex_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas_ex/blas1_ex_gtest.hpp b/projects/hipblas/clients/gtest/blas_ex/blas1_ex_gtest.hpp similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/blas1_ex_gtest.hpp rename to projects/hipblas/clients/gtest/blas_ex/blas1_ex_gtest.hpp diff --git a/hipBLAS/clients/gtest/blas_ex/dot_ex_gtest.cpp b/projects/hipblas/clients/gtest/blas_ex/dot_ex_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/dot_ex_gtest.cpp rename to projects/hipblas/clients/gtest/blas_ex/dot_ex_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas_ex/dot_ex_gtest.yaml b/projects/hipblas/clients/gtest/blas_ex/dot_ex_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/dot_ex_gtest.yaml rename to projects/hipblas/clients/gtest/blas_ex/dot_ex_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas_ex/gemm_ex_gtest.cpp b/projects/hipblas/clients/gtest/blas_ex/gemm_ex_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/gemm_ex_gtest.cpp rename to projects/hipblas/clients/gtest/blas_ex/gemm_ex_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas_ex/gemm_ex_gtest.yaml b/projects/hipblas/clients/gtest/blas_ex/gemm_ex_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/gemm_ex_gtest.yaml rename to projects/hipblas/clients/gtest/blas_ex/gemm_ex_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas_ex/nrm2_ex_gtest.cpp b/projects/hipblas/clients/gtest/blas_ex/nrm2_ex_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/nrm2_ex_gtest.cpp rename to projects/hipblas/clients/gtest/blas_ex/nrm2_ex_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas_ex/nrm2_ex_gtest.yaml b/projects/hipblas/clients/gtest/blas_ex/nrm2_ex_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/nrm2_ex_gtest.yaml rename to projects/hipblas/clients/gtest/blas_ex/nrm2_ex_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas_ex/rot_ex_gtest.cpp b/projects/hipblas/clients/gtest/blas_ex/rot_ex_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/rot_ex_gtest.cpp rename to projects/hipblas/clients/gtest/blas_ex/rot_ex_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas_ex/rot_ex_gtest.yaml b/projects/hipblas/clients/gtest/blas_ex/rot_ex_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/rot_ex_gtest.yaml rename to projects/hipblas/clients/gtest/blas_ex/rot_ex_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas_ex/scal_ex_gtest.cpp b/projects/hipblas/clients/gtest/blas_ex/scal_ex_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/scal_ex_gtest.cpp rename to projects/hipblas/clients/gtest/blas_ex/scal_ex_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas_ex/scal_ex_gtest.yaml b/projects/hipblas/clients/gtest/blas_ex/scal_ex_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/scal_ex_gtest.yaml rename to projects/hipblas/clients/gtest/blas_ex/scal_ex_gtest.yaml diff --git a/hipBLAS/clients/gtest/blas_ex/trsm_ex_gtest.cpp b/projects/hipblas/clients/gtest/blas_ex/trsm_ex_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/trsm_ex_gtest.cpp rename to projects/hipblas/clients/gtest/blas_ex/trsm_ex_gtest.cpp diff --git a/hipBLAS/clients/gtest/blas_ex/trsm_ex_gtest.yaml b/projects/hipblas/clients/gtest/blas_ex/trsm_ex_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/blas_ex/trsm_ex_gtest.yaml rename to projects/hipblas/clients/gtest/blas_ex/trsm_ex_gtest.yaml diff --git a/hipBLAS/clients/gtest/hipblas_gtest.yaml b/projects/hipblas/clients/gtest/hipblas_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/hipblas_gtest.yaml rename to projects/hipblas/clients/gtest/hipblas_gtest.yaml diff --git a/hipBLAS/clients/gtest/hipblas_gtest_main.cpp b/projects/hipblas/clients/gtest/hipblas_gtest_main.cpp similarity index 100% rename from hipBLAS/clients/gtest/hipblas_gtest_main.cpp rename to projects/hipblas/clients/gtest/hipblas_gtest_main.cpp diff --git a/hipBLAS/clients/gtest/hipblas_test.cpp b/projects/hipblas/clients/gtest/hipblas_test.cpp similarity index 100% rename from hipBLAS/clients/gtest/hipblas_test.cpp rename to projects/hipblas/clients/gtest/hipblas_test.cpp diff --git a/hipBLAS/clients/gtest/solver/gels_gtest.cpp b/projects/hipblas/clients/gtest/solver/gels_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/solver/gels_gtest.cpp rename to projects/hipblas/clients/gtest/solver/gels_gtest.cpp diff --git a/hipBLAS/clients/gtest/solver/gels_gtest.yaml b/projects/hipblas/clients/gtest/solver/gels_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/solver/gels_gtest.yaml rename to projects/hipblas/clients/gtest/solver/gels_gtest.yaml diff --git a/hipBLAS/clients/gtest/solver/geqrf_gtest.cpp b/projects/hipblas/clients/gtest/solver/geqrf_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/solver/geqrf_gtest.cpp rename to projects/hipblas/clients/gtest/solver/geqrf_gtest.cpp diff --git a/hipBLAS/clients/gtest/solver/geqrf_gtest.yaml b/projects/hipblas/clients/gtest/solver/geqrf_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/solver/geqrf_gtest.yaml rename to projects/hipblas/clients/gtest/solver/geqrf_gtest.yaml diff --git a/hipBLAS/clients/gtest/solver/getrf_gtest.cpp b/projects/hipblas/clients/gtest/solver/getrf_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/solver/getrf_gtest.cpp rename to projects/hipblas/clients/gtest/solver/getrf_gtest.cpp diff --git a/hipBLAS/clients/gtest/solver/getrf_gtest.yaml b/projects/hipblas/clients/gtest/solver/getrf_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/solver/getrf_gtest.yaml rename to projects/hipblas/clients/gtest/solver/getrf_gtest.yaml diff --git a/hipBLAS/clients/gtest/solver/getri_gtest.cpp b/projects/hipblas/clients/gtest/solver/getri_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/solver/getri_gtest.cpp rename to projects/hipblas/clients/gtest/solver/getri_gtest.cpp diff --git a/hipBLAS/clients/gtest/solver/getri_gtest.yaml b/projects/hipblas/clients/gtest/solver/getri_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/solver/getri_gtest.yaml rename to projects/hipblas/clients/gtest/solver/getri_gtest.yaml diff --git a/hipBLAS/clients/gtest/solver/getrs_gtest.cpp b/projects/hipblas/clients/gtest/solver/getrs_gtest.cpp similarity index 100% rename from hipBLAS/clients/gtest/solver/getrs_gtest.cpp rename to projects/hipblas/clients/gtest/solver/getrs_gtest.cpp diff --git a/hipBLAS/clients/gtest/solver/getrs_gtest.yaml b/projects/hipblas/clients/gtest/solver/getrs_gtest.yaml similarity index 100% rename from hipBLAS/clients/gtest/solver/getrs_gtest.yaml rename to projects/hipblas/clients/gtest/solver/getrs_gtest.yaml diff --git a/hipBLAS/clients/include/arg_check.h b/projects/hipblas/clients/include/arg_check.h similarity index 100% rename from hipBLAS/clients/include/arg_check.h rename to projects/hipblas/clients/include/arg_check.h diff --git a/hipBLAS/clients/include/argument_model.hpp b/projects/hipblas/clients/include/argument_model.hpp similarity index 100% rename from hipBLAS/clients/include/argument_model.hpp rename to projects/hipblas/clients/include/argument_model.hpp diff --git a/hipBLAS/clients/include/auxil/testing_set_get_atomics_mode.hpp b/projects/hipblas/clients/include/auxil/testing_set_get_atomics_mode.hpp similarity index 100% rename from hipBLAS/clients/include/auxil/testing_set_get_atomics_mode.hpp rename to projects/hipblas/clients/include/auxil/testing_set_get_atomics_mode.hpp diff --git a/hipBLAS/clients/include/auxil/testing_set_get_math_mode.hpp b/projects/hipblas/clients/include/auxil/testing_set_get_math_mode.hpp similarity index 100% rename from hipBLAS/clients/include/auxil/testing_set_get_math_mode.hpp rename to projects/hipblas/clients/include/auxil/testing_set_get_math_mode.hpp diff --git a/hipBLAS/clients/include/auxil/testing_set_get_matrix.hpp b/projects/hipblas/clients/include/auxil/testing_set_get_matrix.hpp similarity index 100% rename from hipBLAS/clients/include/auxil/testing_set_get_matrix.hpp rename to projects/hipblas/clients/include/auxil/testing_set_get_matrix.hpp diff --git a/hipBLAS/clients/include/auxil/testing_set_get_matrix_async.hpp b/projects/hipblas/clients/include/auxil/testing_set_get_matrix_async.hpp similarity index 100% rename from hipBLAS/clients/include/auxil/testing_set_get_matrix_async.hpp rename to projects/hipblas/clients/include/auxil/testing_set_get_matrix_async.hpp diff --git a/hipBLAS/clients/include/auxil/testing_set_get_pointer_mode.hpp b/projects/hipblas/clients/include/auxil/testing_set_get_pointer_mode.hpp similarity index 100% rename from hipBLAS/clients/include/auxil/testing_set_get_pointer_mode.hpp rename to projects/hipblas/clients/include/auxil/testing_set_get_pointer_mode.hpp diff --git a/hipBLAS/clients/include/auxil/testing_set_get_vector.hpp b/projects/hipblas/clients/include/auxil/testing_set_get_vector.hpp similarity index 100% rename from hipBLAS/clients/include/auxil/testing_set_get_vector.hpp rename to projects/hipblas/clients/include/auxil/testing_set_get_vector.hpp diff --git a/hipBLAS/clients/include/auxil/testing_set_get_vector_async.hpp b/projects/hipblas/clients/include/auxil/testing_set_get_vector_async.hpp similarity index 100% rename from hipBLAS/clients/include/auxil/testing_set_get_vector_async.hpp rename to projects/hipblas/clients/include/auxil/testing_set_get_vector_async.hpp diff --git a/hipBLAS/clients/include/blas1/hipblas_iamax_iamin_ref.hpp b/projects/hipblas/clients/include/blas1/hipblas_iamax_iamin_ref.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/hipblas_iamax_iamin_ref.hpp rename to projects/hipblas/clients/include/blas1/hipblas_iamax_iamin_ref.hpp diff --git a/hipBLAS/clients/include/blas1/testing_asum.hpp b/projects/hipblas/clients/include/blas1/testing_asum.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_asum.hpp rename to projects/hipblas/clients/include/blas1/testing_asum.hpp diff --git a/hipBLAS/clients/include/blas1/testing_asum_batched.hpp b/projects/hipblas/clients/include/blas1/testing_asum_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_asum_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_asum_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_asum_strided_batched.hpp b/projects/hipblas/clients/include/blas1/testing_asum_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_asum_strided_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_asum_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_axpy.hpp b/projects/hipblas/clients/include/blas1/testing_axpy.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_axpy.hpp rename to projects/hipblas/clients/include/blas1/testing_axpy.hpp diff --git a/hipBLAS/clients/include/blas1/testing_axpy_batched.hpp b/projects/hipblas/clients/include/blas1/testing_axpy_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_axpy_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_axpy_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_axpy_strided_batched.hpp b/projects/hipblas/clients/include/blas1/testing_axpy_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_axpy_strided_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_axpy_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_copy.hpp b/projects/hipblas/clients/include/blas1/testing_copy.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_copy.hpp rename to projects/hipblas/clients/include/blas1/testing_copy.hpp diff --git a/hipBLAS/clients/include/blas1/testing_copy_batched.hpp b/projects/hipblas/clients/include/blas1/testing_copy_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_copy_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_copy_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_copy_strided_batched.hpp b/projects/hipblas/clients/include/blas1/testing_copy_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_copy_strided_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_copy_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_dot.hpp b/projects/hipblas/clients/include/blas1/testing_dot.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_dot.hpp rename to projects/hipblas/clients/include/blas1/testing_dot.hpp diff --git a/hipBLAS/clients/include/blas1/testing_dot_batched.hpp b/projects/hipblas/clients/include/blas1/testing_dot_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_dot_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_dot_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_dot_strided_batched.hpp b/projects/hipblas/clients/include/blas1/testing_dot_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_dot_strided_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_dot_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_iamax_iamin.hpp b/projects/hipblas/clients/include/blas1/testing_iamax_iamin.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_iamax_iamin.hpp rename to projects/hipblas/clients/include/blas1/testing_iamax_iamin.hpp diff --git a/hipBLAS/clients/include/blas1/testing_iamax_iamin_batched.hpp b/projects/hipblas/clients/include/blas1/testing_iamax_iamin_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_iamax_iamin_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_iamax_iamin_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_iamax_iamin_strided_batched.hpp b/projects/hipblas/clients/include/blas1/testing_iamax_iamin_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_iamax_iamin_strided_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_iamax_iamin_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_nrm2.hpp b/projects/hipblas/clients/include/blas1/testing_nrm2.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_nrm2.hpp rename to projects/hipblas/clients/include/blas1/testing_nrm2.hpp diff --git a/hipBLAS/clients/include/blas1/testing_nrm2_batched.hpp b/projects/hipblas/clients/include/blas1/testing_nrm2_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_nrm2_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_nrm2_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_nrm2_strided_batched.hpp b/projects/hipblas/clients/include/blas1/testing_nrm2_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_nrm2_strided_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_nrm2_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_rot.hpp b/projects/hipblas/clients/include/blas1/testing_rot.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_rot.hpp rename to projects/hipblas/clients/include/blas1/testing_rot.hpp diff --git a/hipBLAS/clients/include/blas1/testing_rot_batched.hpp b/projects/hipblas/clients/include/blas1/testing_rot_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_rot_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_rot_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_rot_strided_batched.hpp b/projects/hipblas/clients/include/blas1/testing_rot_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_rot_strided_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_rot_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_rotg.hpp b/projects/hipblas/clients/include/blas1/testing_rotg.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_rotg.hpp rename to projects/hipblas/clients/include/blas1/testing_rotg.hpp diff --git a/hipBLAS/clients/include/blas1/testing_rotg_batched.hpp b/projects/hipblas/clients/include/blas1/testing_rotg_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_rotg_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_rotg_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_rotg_strided_batched.hpp b/projects/hipblas/clients/include/blas1/testing_rotg_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_rotg_strided_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_rotg_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_rotm.hpp b/projects/hipblas/clients/include/blas1/testing_rotm.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_rotm.hpp rename to projects/hipblas/clients/include/blas1/testing_rotm.hpp diff --git a/hipBLAS/clients/include/blas1/testing_rotm_batched.hpp b/projects/hipblas/clients/include/blas1/testing_rotm_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_rotm_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_rotm_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_rotm_strided_batched.hpp b/projects/hipblas/clients/include/blas1/testing_rotm_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_rotm_strided_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_rotm_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_rotmg.hpp b/projects/hipblas/clients/include/blas1/testing_rotmg.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_rotmg.hpp rename to projects/hipblas/clients/include/blas1/testing_rotmg.hpp diff --git a/hipBLAS/clients/include/blas1/testing_rotmg_batched.hpp b/projects/hipblas/clients/include/blas1/testing_rotmg_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_rotmg_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_rotmg_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_rotmg_strided_batched.hpp b/projects/hipblas/clients/include/blas1/testing_rotmg_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_rotmg_strided_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_rotmg_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_scal.hpp b/projects/hipblas/clients/include/blas1/testing_scal.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_scal.hpp rename to projects/hipblas/clients/include/blas1/testing_scal.hpp diff --git a/hipBLAS/clients/include/blas1/testing_scal_batched.hpp b/projects/hipblas/clients/include/blas1/testing_scal_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_scal_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_scal_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_scal_strided_batched.hpp b/projects/hipblas/clients/include/blas1/testing_scal_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_scal_strided_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_scal_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_swap.hpp b/projects/hipblas/clients/include/blas1/testing_swap.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_swap.hpp rename to projects/hipblas/clients/include/blas1/testing_swap.hpp diff --git a/hipBLAS/clients/include/blas1/testing_swap_batched.hpp b/projects/hipblas/clients/include/blas1/testing_swap_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_swap_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_swap_batched.hpp diff --git a/hipBLAS/clients/include/blas1/testing_swap_strided_batched.hpp b/projects/hipblas/clients/include/blas1/testing_swap_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas1/testing_swap_strided_batched.hpp rename to projects/hipblas/clients/include/blas1/testing_swap_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas1_gtest.hpp b/projects/hipblas/clients/include/blas1_gtest.hpp similarity index 100% rename from hipBLAS/clients/include/blas1_gtest.hpp rename to projects/hipblas/clients/include/blas1_gtest.hpp diff --git a/hipBLAS/clients/include/blas2/testing_gbmv.hpp b/projects/hipblas/clients/include/blas2/testing_gbmv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_gbmv.hpp rename to projects/hipblas/clients/include/blas2/testing_gbmv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_gbmv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_gbmv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_gbmv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_gbmv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_gbmv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_gbmv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_gbmv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_gbmv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_gemv.hpp b/projects/hipblas/clients/include/blas2/testing_gemv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_gemv.hpp rename to projects/hipblas/clients/include/blas2/testing_gemv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_gemv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_gemv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_gemv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_gemv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_gemv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_gemv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_gemv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_gemv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_ger.hpp b/projects/hipblas/clients/include/blas2/testing_ger.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_ger.hpp rename to projects/hipblas/clients/include/blas2/testing_ger.hpp diff --git a/hipBLAS/clients/include/blas2/testing_ger_batched.hpp b/projects/hipblas/clients/include/blas2/testing_ger_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_ger_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_ger_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_ger_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_ger_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_ger_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_ger_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hbmv.hpp b/projects/hipblas/clients/include/blas2/testing_hbmv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hbmv.hpp rename to projects/hipblas/clients/include/blas2/testing_hbmv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hbmv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_hbmv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hbmv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_hbmv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hbmv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_hbmv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hbmv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_hbmv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hemv.hpp b/projects/hipblas/clients/include/blas2/testing_hemv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hemv.hpp rename to projects/hipblas/clients/include/blas2/testing_hemv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hemv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_hemv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hemv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_hemv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hemv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_hemv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hemv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_hemv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_her.hpp b/projects/hipblas/clients/include/blas2/testing_her.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_her.hpp rename to projects/hipblas/clients/include/blas2/testing_her.hpp diff --git a/hipBLAS/clients/include/blas2/testing_her2.hpp b/projects/hipblas/clients/include/blas2/testing_her2.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_her2.hpp rename to projects/hipblas/clients/include/blas2/testing_her2.hpp diff --git a/hipBLAS/clients/include/blas2/testing_her2_batched.hpp b/projects/hipblas/clients/include/blas2/testing_her2_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_her2_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_her2_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_her2_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_her2_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_her2_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_her2_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_her_batched.hpp b/projects/hipblas/clients/include/blas2/testing_her_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_her_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_her_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_her_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_her_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_her_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_her_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hpmv.hpp b/projects/hipblas/clients/include/blas2/testing_hpmv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hpmv.hpp rename to projects/hipblas/clients/include/blas2/testing_hpmv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hpmv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_hpmv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hpmv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_hpmv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hpmv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_hpmv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hpmv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_hpmv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hpr.hpp b/projects/hipblas/clients/include/blas2/testing_hpr.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hpr.hpp rename to projects/hipblas/clients/include/blas2/testing_hpr.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hpr2.hpp b/projects/hipblas/clients/include/blas2/testing_hpr2.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hpr2.hpp rename to projects/hipblas/clients/include/blas2/testing_hpr2.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hpr2_batched.hpp b/projects/hipblas/clients/include/blas2/testing_hpr2_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hpr2_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_hpr2_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hpr2_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_hpr2_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hpr2_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_hpr2_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hpr_batched.hpp b/projects/hipblas/clients/include/blas2/testing_hpr_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hpr_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_hpr_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_hpr_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_hpr_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_hpr_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_hpr_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_sbmv.hpp b/projects/hipblas/clients/include/blas2/testing_sbmv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_sbmv.hpp rename to projects/hipblas/clients/include/blas2/testing_sbmv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_sbmv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_sbmv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_sbmv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_sbmv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_sbmv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_sbmv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_sbmv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_sbmv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_spmv.hpp b/projects/hipblas/clients/include/blas2/testing_spmv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_spmv.hpp rename to projects/hipblas/clients/include/blas2/testing_spmv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_spmv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_spmv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_spmv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_spmv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_spmv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_spmv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_spmv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_spmv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_spr.hpp b/projects/hipblas/clients/include/blas2/testing_spr.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_spr.hpp rename to projects/hipblas/clients/include/blas2/testing_spr.hpp diff --git a/hipBLAS/clients/include/blas2/testing_spr2.hpp b/projects/hipblas/clients/include/blas2/testing_spr2.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_spr2.hpp rename to projects/hipblas/clients/include/blas2/testing_spr2.hpp diff --git a/hipBLAS/clients/include/blas2/testing_spr2_batched.hpp b/projects/hipblas/clients/include/blas2/testing_spr2_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_spr2_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_spr2_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_spr2_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_spr2_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_spr2_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_spr2_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_spr_batched.hpp b/projects/hipblas/clients/include/blas2/testing_spr_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_spr_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_spr_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_spr_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_spr_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_spr_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_spr_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_symv.hpp b/projects/hipblas/clients/include/blas2/testing_symv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_symv.hpp rename to projects/hipblas/clients/include/blas2/testing_symv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_symv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_symv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_symv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_symv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_symv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_symv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_symv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_symv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_syr.hpp b/projects/hipblas/clients/include/blas2/testing_syr.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_syr.hpp rename to projects/hipblas/clients/include/blas2/testing_syr.hpp diff --git a/hipBLAS/clients/include/blas2/testing_syr2.hpp b/projects/hipblas/clients/include/blas2/testing_syr2.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_syr2.hpp rename to projects/hipblas/clients/include/blas2/testing_syr2.hpp diff --git a/hipBLAS/clients/include/blas2/testing_syr2_batched.hpp b/projects/hipblas/clients/include/blas2/testing_syr2_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_syr2_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_syr2_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_syr2_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_syr2_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_syr2_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_syr2_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_syr_batched.hpp b/projects/hipblas/clients/include/blas2/testing_syr_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_syr_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_syr_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_syr_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_syr_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_syr_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_syr_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_tbmv.hpp b/projects/hipblas/clients/include/blas2/testing_tbmv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_tbmv.hpp rename to projects/hipblas/clients/include/blas2/testing_tbmv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_tbmv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_tbmv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_tbmv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_tbmv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_tbmv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_tbmv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_tbmv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_tbmv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_tbsv.hpp b/projects/hipblas/clients/include/blas2/testing_tbsv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_tbsv.hpp rename to projects/hipblas/clients/include/blas2/testing_tbsv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_tbsv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_tbsv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_tbsv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_tbsv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_tbsv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_tbsv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_tbsv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_tbsv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_tpmv.hpp b/projects/hipblas/clients/include/blas2/testing_tpmv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_tpmv.hpp rename to projects/hipblas/clients/include/blas2/testing_tpmv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_tpmv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_tpmv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_tpmv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_tpmv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_tpmv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_tpmv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_tpmv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_tpmv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_tpsv.hpp b/projects/hipblas/clients/include/blas2/testing_tpsv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_tpsv.hpp rename to projects/hipblas/clients/include/blas2/testing_tpsv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_tpsv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_tpsv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_tpsv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_tpsv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_tpsv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_tpsv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_tpsv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_tpsv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_trmv.hpp b/projects/hipblas/clients/include/blas2/testing_trmv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_trmv.hpp rename to projects/hipblas/clients/include/blas2/testing_trmv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_trmv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_trmv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_trmv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_trmv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_trmv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_trmv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_trmv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_trmv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_trsv.hpp b/projects/hipblas/clients/include/blas2/testing_trsv.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_trsv.hpp rename to projects/hipblas/clients/include/blas2/testing_trsv.hpp diff --git a/hipBLAS/clients/include/blas2/testing_trsv_batched.hpp b/projects/hipblas/clients/include/blas2/testing_trsv_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_trsv_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_trsv_batched.hpp diff --git a/hipBLAS/clients/include/blas2/testing_trsv_strided_batched.hpp b/projects/hipblas/clients/include/blas2/testing_trsv_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas2/testing_trsv_strided_batched.hpp rename to projects/hipblas/clients/include/blas2/testing_trsv_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_dgmm.hpp b/projects/hipblas/clients/include/blas3/testing_dgmm.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_dgmm.hpp rename to projects/hipblas/clients/include/blas3/testing_dgmm.hpp diff --git a/hipBLAS/clients/include/blas3/testing_dgmm_batched.hpp b/projects/hipblas/clients/include/blas3/testing_dgmm_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_dgmm_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_dgmm_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_dgmm_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_dgmm_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_dgmm_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_dgmm_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_geam.hpp b/projects/hipblas/clients/include/blas3/testing_geam.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_geam.hpp rename to projects/hipblas/clients/include/blas3/testing_geam.hpp diff --git a/hipBLAS/clients/include/blas3/testing_geam_batched.hpp b/projects/hipblas/clients/include/blas3/testing_geam_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_geam_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_geam_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_geam_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_geam_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_geam_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_geam_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_gemm.hpp b/projects/hipblas/clients/include/blas3/testing_gemm.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_gemm.hpp rename to projects/hipblas/clients/include/blas3/testing_gemm.hpp diff --git a/hipBLAS/clients/include/blas3/testing_gemm_batched.hpp b/projects/hipblas/clients/include/blas3/testing_gemm_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_gemm_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_gemm_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_gemm_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_gemm_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_gemm_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_gemm_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_hemm.hpp b/projects/hipblas/clients/include/blas3/testing_hemm.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_hemm.hpp rename to projects/hipblas/clients/include/blas3/testing_hemm.hpp diff --git a/hipBLAS/clients/include/blas3/testing_hemm_batched.hpp b/projects/hipblas/clients/include/blas3/testing_hemm_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_hemm_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_hemm_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_hemm_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_hemm_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_hemm_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_hemm_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_her2k.hpp b/projects/hipblas/clients/include/blas3/testing_her2k.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_her2k.hpp rename to projects/hipblas/clients/include/blas3/testing_her2k.hpp diff --git a/hipBLAS/clients/include/blas3/testing_her2k_batched.hpp b/projects/hipblas/clients/include/blas3/testing_her2k_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_her2k_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_her2k_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_her2k_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_her2k_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_her2k_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_her2k_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_herk.hpp b/projects/hipblas/clients/include/blas3/testing_herk.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_herk.hpp rename to projects/hipblas/clients/include/blas3/testing_herk.hpp diff --git a/hipBLAS/clients/include/blas3/testing_herk_batched.hpp b/projects/hipblas/clients/include/blas3/testing_herk_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_herk_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_herk_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_herk_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_herk_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_herk_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_herk_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_herkx.hpp b/projects/hipblas/clients/include/blas3/testing_herkx.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_herkx.hpp rename to projects/hipblas/clients/include/blas3/testing_herkx.hpp diff --git a/hipBLAS/clients/include/blas3/testing_herkx_batched.hpp b/projects/hipblas/clients/include/blas3/testing_herkx_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_herkx_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_herkx_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_herkx_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_herkx_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_herkx_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_herkx_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_symm.hpp b/projects/hipblas/clients/include/blas3/testing_symm.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_symm.hpp rename to projects/hipblas/clients/include/blas3/testing_symm.hpp diff --git a/hipBLAS/clients/include/blas3/testing_symm_batched.hpp b/projects/hipblas/clients/include/blas3/testing_symm_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_symm_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_symm_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_symm_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_symm_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_symm_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_symm_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_syr2k.hpp b/projects/hipblas/clients/include/blas3/testing_syr2k.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_syr2k.hpp rename to projects/hipblas/clients/include/blas3/testing_syr2k.hpp diff --git a/hipBLAS/clients/include/blas3/testing_syr2k_batched.hpp b/projects/hipblas/clients/include/blas3/testing_syr2k_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_syr2k_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_syr2k_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_syr2k_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_syr2k_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_syr2k_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_syr2k_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_syrk.hpp b/projects/hipblas/clients/include/blas3/testing_syrk.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_syrk.hpp rename to projects/hipblas/clients/include/blas3/testing_syrk.hpp diff --git a/hipBLAS/clients/include/blas3/testing_syrk_batched.hpp b/projects/hipblas/clients/include/blas3/testing_syrk_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_syrk_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_syrk_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_syrk_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_syrk_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_syrk_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_syrk_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_syrkx.hpp b/projects/hipblas/clients/include/blas3/testing_syrkx.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_syrkx.hpp rename to projects/hipblas/clients/include/blas3/testing_syrkx.hpp diff --git a/hipBLAS/clients/include/blas3/testing_syrkx_batched.hpp b/projects/hipblas/clients/include/blas3/testing_syrkx_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_syrkx_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_syrkx_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_syrkx_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_syrkx_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_syrkx_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_syrkx_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_trmm.hpp b/projects/hipblas/clients/include/blas3/testing_trmm.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_trmm.hpp rename to projects/hipblas/clients/include/blas3/testing_trmm.hpp diff --git a/hipBLAS/clients/include/blas3/testing_trmm_batched.hpp b/projects/hipblas/clients/include/blas3/testing_trmm_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_trmm_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_trmm_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_trmm_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_trmm_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_trmm_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_trmm_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_trsm.hpp b/projects/hipblas/clients/include/blas3/testing_trsm.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_trsm.hpp rename to projects/hipblas/clients/include/blas3/testing_trsm.hpp diff --git a/hipBLAS/clients/include/blas3/testing_trsm_batched.hpp b/projects/hipblas/clients/include/blas3/testing_trsm_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_trsm_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_trsm_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_trsm_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_trsm_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_trsm_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_trsm_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_trtri.hpp b/projects/hipblas/clients/include/blas3/testing_trtri.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_trtri.hpp rename to projects/hipblas/clients/include/blas3/testing_trtri.hpp diff --git a/hipBLAS/clients/include/blas3/testing_trtri_batched.hpp b/projects/hipblas/clients/include/blas3/testing_trtri_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_trtri_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_trtri_batched.hpp diff --git a/hipBLAS/clients/include/blas3/testing_trtri_strided_batched.hpp b/projects/hipblas/clients/include/blas3/testing_trtri_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/blas3/testing_trtri_strided_batched.hpp rename to projects/hipblas/clients/include/blas3/testing_trtri_strided_batched.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_axpy_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_axpy_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_axpy_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_axpy_batched_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_axpy_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_axpy_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_axpy_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_axpy_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_axpy_strided_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_axpy_strided_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_axpy_strided_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_axpy_strided_batched_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_dot_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_dot_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_dot_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_dot_batched_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_dot_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_dot_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_dot_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_dot_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_dot_strided_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_dot_strided_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_dot_strided_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_dot_strided_batched_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_gemm_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_gemm_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_gemm_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_gemm_batched_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_gemm_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_gemm_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_gemm_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_gemm_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_gemm_strided_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_gemm_strided_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_gemm_strided_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_gemm_strided_batched_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_nrm2_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_nrm2_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_nrm2_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_nrm2_batched_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_nrm2_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_nrm2_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_nrm2_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_nrm2_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_nrm2_strided_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_nrm2_strided_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_nrm2_strided_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_nrm2_strided_batched_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_rot_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_rot_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_rot_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_rot_batched_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_rot_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_rot_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_rot_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_rot_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_rot_strided_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_rot_strided_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_rot_strided_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_rot_strided_batched_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_scal_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_scal_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_scal_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_scal_batched_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_scal_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_scal_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_scal_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_scal_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_scal_strided_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_scal_strided_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_scal_strided_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_scal_strided_batched_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_trsm_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_trsm_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_trsm_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_trsm_batched_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_trsm_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_trsm_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_trsm_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_trsm_ex.hpp diff --git a/hipBLAS/clients/include/blas_ex/testing_trsm_strided_batched_ex.hpp b/projects/hipblas/clients/include/blas_ex/testing_trsm_strided_batched_ex.hpp similarity index 100% rename from hipBLAS/clients/include/blas_ex/testing_trsm_strided_batched_ex.hpp rename to projects/hipblas/clients/include/blas_ex/testing_trsm_strided_batched_ex.hpp diff --git a/hipBLAS/clients/include/bytes.hpp b/projects/hipblas/clients/include/bytes.hpp similarity index 100% rename from hipBLAS/clients/include/bytes.hpp rename to projects/hipblas/clients/include/bytes.hpp diff --git a/hipBLAS/clients/include/cblas_interface.h b/projects/hipblas/clients/include/cblas_interface.h similarity index 100% rename from hipBLAS/clients/include/cblas_interface.h rename to projects/hipblas/clients/include/cblas_interface.h diff --git a/hipBLAS/clients/include/clients_common.hpp b/projects/hipblas/clients/include/clients_common.hpp similarity index 100% rename from hipBLAS/clients/include/clients_common.hpp rename to projects/hipblas/clients/include/clients_common.hpp diff --git a/hipBLAS/clients/include/d_vector.hpp b/projects/hipblas/clients/include/d_vector.hpp similarity index 100% rename from hipBLAS/clients/include/d_vector.hpp rename to projects/hipblas/clients/include/d_vector.hpp diff --git a/hipBLAS/clients/include/device_batch_matrix.hpp b/projects/hipblas/clients/include/device_batch_matrix.hpp similarity index 100% rename from hipBLAS/clients/include/device_batch_matrix.hpp rename to projects/hipblas/clients/include/device_batch_matrix.hpp diff --git a/hipBLAS/clients/include/device_batch_vector.hpp b/projects/hipblas/clients/include/device_batch_vector.hpp similarity index 100% rename from hipBLAS/clients/include/device_batch_vector.hpp rename to projects/hipblas/clients/include/device_batch_vector.hpp diff --git a/hipBLAS/clients/include/device_matrix.hpp b/projects/hipblas/clients/include/device_matrix.hpp similarity index 100% rename from hipBLAS/clients/include/device_matrix.hpp rename to projects/hipblas/clients/include/device_matrix.hpp diff --git a/hipBLAS/clients/include/device_strided_batch_matrix.hpp b/projects/hipblas/clients/include/device_strided_batch_matrix.hpp similarity index 100% rename from hipBLAS/clients/include/device_strided_batch_matrix.hpp rename to projects/hipblas/clients/include/device_strided_batch_matrix.hpp diff --git a/hipBLAS/clients/include/device_strided_batch_vector.hpp b/projects/hipblas/clients/include/device_strided_batch_vector.hpp similarity index 100% rename from hipBLAS/clients/include/device_strided_batch_vector.hpp rename to projects/hipblas/clients/include/device_strided_batch_vector.hpp diff --git a/hipBLAS/clients/include/device_vector.hpp b/projects/hipblas/clients/include/device_vector.hpp similarity index 100% rename from hipBLAS/clients/include/device_vector.hpp rename to projects/hipblas/clients/include/device_vector.hpp diff --git a/hipBLAS/clients/include/flops.hpp b/projects/hipblas/clients/include/flops.hpp similarity index 100% rename from hipBLAS/clients/include/flops.hpp rename to projects/hipblas/clients/include/flops.hpp diff --git a/hipBLAS/clients/include/hipblas.hpp b/projects/hipblas/clients/include/hipblas.hpp similarity index 100% rename from hipBLAS/clients/include/hipblas.hpp rename to projects/hipblas/clients/include/hipblas.hpp diff --git a/hipBLAS/clients/include/hipblas_arguments.hpp b/projects/hipblas/clients/include/hipblas_arguments.hpp similarity index 100% rename from hipBLAS/clients/include/hipblas_arguments.hpp rename to projects/hipblas/clients/include/hipblas_arguments.hpp diff --git a/hipBLAS/clients/include/hipblas_common.yaml b/projects/hipblas/clients/include/hipblas_common.yaml similarity index 100% rename from hipBLAS/clients/include/hipblas_common.yaml rename to projects/hipblas/clients/include/hipblas_common.yaml diff --git a/hipBLAS/clients/include/hipblas_data.hpp b/projects/hipblas/clients/include/hipblas_data.hpp similarity index 100% rename from hipBLAS/clients/include/hipblas_data.hpp rename to projects/hipblas/clients/include/hipblas_data.hpp diff --git a/hipBLAS/clients/include/hipblas_datatype2string.hpp b/projects/hipblas/clients/include/hipblas_datatype2string.hpp similarity index 100% rename from hipBLAS/clients/include/hipblas_datatype2string.hpp rename to projects/hipblas/clients/include/hipblas_datatype2string.hpp diff --git a/hipBLAS/clients/include/hipblas_fortran.h.in b/projects/hipblas/clients/include/hipblas_fortran.h.in similarity index 100% rename from hipBLAS/clients/include/hipblas_fortran.h.in rename to projects/hipblas/clients/include/hipblas_fortran.h.in diff --git a/hipBLAS/clients/include/hipblas_fortran.hpp b/projects/hipblas/clients/include/hipblas_fortran.hpp similarity index 100% rename from hipBLAS/clients/include/hipblas_fortran.hpp rename to projects/hipblas/clients/include/hipblas_fortran.hpp diff --git a/hipBLAS/clients/include/hipblas_fortran_blas.f90 b/projects/hipblas/clients/include/hipblas_fortran_blas.f90 similarity index 100% rename from hipBLAS/clients/include/hipblas_fortran_blas.f90 rename to projects/hipblas/clients/include/hipblas_fortran_blas.f90 diff --git a/hipBLAS/clients/include/hipblas_fortran_blas_64.f90 b/projects/hipblas/clients/include/hipblas_fortran_blas_64.f90 similarity index 100% rename from hipBLAS/clients/include/hipblas_fortran_blas_64.f90 rename to projects/hipblas/clients/include/hipblas_fortran_blas_64.f90 diff --git a/hipBLAS/clients/include/hipblas_fortran_module.f90 b/projects/hipblas/clients/include/hipblas_fortran_module.f90 similarity index 100% rename from hipBLAS/clients/include/hipblas_fortran_module.f90 rename to projects/hipblas/clients/include/hipblas_fortran_module.f90 diff --git a/hipBLAS/clients/include/hipblas_fortran_no_solver_module.f90 b/projects/hipblas/clients/include/hipblas_fortran_no_solver_module.f90 similarity index 100% rename from hipBLAS/clients/include/hipblas_fortran_no_solver_module.f90 rename to projects/hipblas/clients/include/hipblas_fortran_no_solver_module.f90 diff --git a/hipBLAS/clients/include/hipblas_fortran_solver.f90 b/projects/hipblas/clients/include/hipblas_fortran_solver.f90 similarity index 100% rename from hipBLAS/clients/include/hipblas_fortran_solver.f90 rename to projects/hipblas/clients/include/hipblas_fortran_solver.f90 diff --git a/hipBLAS/clients/include/hipblas_init.hpp b/projects/hipblas/clients/include/hipblas_init.hpp similarity index 100% rename from hipBLAS/clients/include/hipblas_init.hpp rename to projects/hipblas/clients/include/hipblas_init.hpp diff --git a/hipBLAS/clients/include/hipblas_matrix.hpp b/projects/hipblas/clients/include/hipblas_matrix.hpp similarity index 100% rename from hipBLAS/clients/include/hipblas_matrix.hpp rename to projects/hipblas/clients/include/hipblas_matrix.hpp diff --git a/hipBLAS/clients/include/hipblas_no_fortran.hpp b/projects/hipblas/clients/include/hipblas_no_fortran.hpp similarity index 100% rename from hipBLAS/clients/include/hipblas_no_fortran.hpp rename to projects/hipblas/clients/include/hipblas_no_fortran.hpp diff --git a/hipBLAS/clients/include/hipblas_parse_data.hpp b/projects/hipblas/clients/include/hipblas_parse_data.hpp similarity index 100% rename from hipBLAS/clients/include/hipblas_parse_data.hpp rename to projects/hipblas/clients/include/hipblas_parse_data.hpp diff --git a/hipBLAS/clients/include/hipblas_smoke.yaml b/projects/hipblas/clients/include/hipblas_smoke.yaml similarity index 100% rename from hipBLAS/clients/include/hipblas_smoke.yaml rename to projects/hipblas/clients/include/hipblas_smoke.yaml diff --git a/hipBLAS/clients/include/hipblas_template.yaml b/projects/hipblas/clients/include/hipblas_template.yaml similarity index 100% rename from hipBLAS/clients/include/hipblas_template.yaml rename to projects/hipblas/clients/include/hipblas_template.yaml diff --git a/hipBLAS/clients/include/hipblas_test.hpp b/projects/hipblas/clients/include/hipblas_test.hpp similarity index 100% rename from hipBLAS/clients/include/hipblas_test.hpp rename to projects/hipblas/clients/include/hipblas_test.hpp diff --git a/hipBLAS/clients/include/hipblas_unique_ptr.hpp b/projects/hipblas/clients/include/hipblas_unique_ptr.hpp similarity index 100% rename from hipBLAS/clients/include/hipblas_unique_ptr.hpp rename to projects/hipblas/clients/include/hipblas_unique_ptr.hpp diff --git a/hipBLAS/clients/include/hipblas_vector.hpp b/projects/hipblas/clients/include/hipblas_vector.hpp similarity index 100% rename from hipBLAS/clients/include/hipblas_vector.hpp rename to projects/hipblas/clients/include/hipblas_vector.hpp diff --git a/hipBLAS/clients/include/host_alloc.hpp b/projects/hipblas/clients/include/host_alloc.hpp similarity index 100% rename from hipBLAS/clients/include/host_alloc.hpp rename to projects/hipblas/clients/include/host_alloc.hpp diff --git a/hipBLAS/clients/include/host_batch_matrix.hpp b/projects/hipblas/clients/include/host_batch_matrix.hpp similarity index 100% rename from hipBLAS/clients/include/host_batch_matrix.hpp rename to projects/hipblas/clients/include/host_batch_matrix.hpp diff --git a/hipBLAS/clients/include/host_batch_vector.hpp b/projects/hipblas/clients/include/host_batch_vector.hpp similarity index 100% rename from hipBLAS/clients/include/host_batch_vector.hpp rename to projects/hipblas/clients/include/host_batch_vector.hpp diff --git a/hipBLAS/clients/include/host_matrix.hpp b/projects/hipblas/clients/include/host_matrix.hpp similarity index 100% rename from hipBLAS/clients/include/host_matrix.hpp rename to projects/hipblas/clients/include/host_matrix.hpp diff --git a/hipBLAS/clients/include/host_strided_batch_matrix.hpp b/projects/hipblas/clients/include/host_strided_batch_matrix.hpp similarity index 100% rename from hipBLAS/clients/include/host_strided_batch_matrix.hpp rename to projects/hipblas/clients/include/host_strided_batch_matrix.hpp diff --git a/hipBLAS/clients/include/host_strided_batch_vector.hpp b/projects/hipblas/clients/include/host_strided_batch_vector.hpp similarity index 100% rename from hipBLAS/clients/include/host_strided_batch_vector.hpp rename to projects/hipblas/clients/include/host_strided_batch_vector.hpp diff --git a/hipBLAS/clients/include/host_vector.hpp b/projects/hipblas/clients/include/host_vector.hpp similarity index 100% rename from hipBLAS/clients/include/host_vector.hpp rename to projects/hipblas/clients/include/host_vector.hpp diff --git a/hipBLAS/clients/include/lapack_utilities.hpp b/projects/hipblas/clients/include/lapack_utilities.hpp similarity index 100% rename from hipBLAS/clients/include/lapack_utilities.hpp rename to projects/hipblas/clients/include/lapack_utilities.hpp diff --git a/hipBLAS/clients/include/near.h b/projects/hipblas/clients/include/near.h similarity index 100% rename from hipBLAS/clients/include/near.h rename to projects/hipblas/clients/include/near.h diff --git a/hipBLAS/clients/include/norm.h b/projects/hipblas/clients/include/norm.h similarity index 100% rename from hipBLAS/clients/include/norm.h rename to projects/hipblas/clients/include/norm.h diff --git a/hipBLAS/clients/include/program_options.hpp b/projects/hipblas/clients/include/program_options.hpp similarity index 100% rename from hipBLAS/clients/include/program_options.hpp rename to projects/hipblas/clients/include/program_options.hpp diff --git a/hipBLAS/clients/include/solver/testing_gels.hpp b/projects/hipblas/clients/include/solver/testing_gels.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_gels.hpp rename to projects/hipblas/clients/include/solver/testing_gels.hpp diff --git a/hipBLAS/clients/include/solver/testing_gels_batched.hpp b/projects/hipblas/clients/include/solver/testing_gels_batched.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_gels_batched.hpp rename to projects/hipblas/clients/include/solver/testing_gels_batched.hpp diff --git a/hipBLAS/clients/include/solver/testing_gels_strided_batched.hpp b/projects/hipblas/clients/include/solver/testing_gels_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_gels_strided_batched.hpp rename to projects/hipblas/clients/include/solver/testing_gels_strided_batched.hpp diff --git a/hipBLAS/clients/include/solver/testing_geqrf.hpp b/projects/hipblas/clients/include/solver/testing_geqrf.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_geqrf.hpp rename to projects/hipblas/clients/include/solver/testing_geqrf.hpp diff --git a/hipBLAS/clients/include/solver/testing_geqrf_batched.hpp b/projects/hipblas/clients/include/solver/testing_geqrf_batched.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_geqrf_batched.hpp rename to projects/hipblas/clients/include/solver/testing_geqrf_batched.hpp diff --git a/hipBLAS/clients/include/solver/testing_geqrf_strided_batched.hpp b/projects/hipblas/clients/include/solver/testing_geqrf_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_geqrf_strided_batched.hpp rename to projects/hipblas/clients/include/solver/testing_geqrf_strided_batched.hpp diff --git a/hipBLAS/clients/include/solver/testing_getrf.hpp b/projects/hipblas/clients/include/solver/testing_getrf.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_getrf.hpp rename to projects/hipblas/clients/include/solver/testing_getrf.hpp diff --git a/hipBLAS/clients/include/solver/testing_getrf_batched.hpp b/projects/hipblas/clients/include/solver/testing_getrf_batched.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_getrf_batched.hpp rename to projects/hipblas/clients/include/solver/testing_getrf_batched.hpp diff --git a/hipBLAS/clients/include/solver/testing_getrf_npvt.hpp b/projects/hipblas/clients/include/solver/testing_getrf_npvt.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_getrf_npvt.hpp rename to projects/hipblas/clients/include/solver/testing_getrf_npvt.hpp diff --git a/hipBLAS/clients/include/solver/testing_getrf_npvt_batched.hpp b/projects/hipblas/clients/include/solver/testing_getrf_npvt_batched.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_getrf_npvt_batched.hpp rename to projects/hipblas/clients/include/solver/testing_getrf_npvt_batched.hpp diff --git a/hipBLAS/clients/include/solver/testing_getrf_npvt_strided_batched.hpp b/projects/hipblas/clients/include/solver/testing_getrf_npvt_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_getrf_npvt_strided_batched.hpp rename to projects/hipblas/clients/include/solver/testing_getrf_npvt_strided_batched.hpp diff --git a/hipBLAS/clients/include/solver/testing_getrf_strided_batched.hpp b/projects/hipblas/clients/include/solver/testing_getrf_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_getrf_strided_batched.hpp rename to projects/hipblas/clients/include/solver/testing_getrf_strided_batched.hpp diff --git a/hipBLAS/clients/include/solver/testing_getri_batched.hpp b/projects/hipblas/clients/include/solver/testing_getri_batched.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_getri_batched.hpp rename to projects/hipblas/clients/include/solver/testing_getri_batched.hpp diff --git a/hipBLAS/clients/include/solver/testing_getri_npvt_batched.hpp b/projects/hipblas/clients/include/solver/testing_getri_npvt_batched.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_getri_npvt_batched.hpp rename to projects/hipblas/clients/include/solver/testing_getri_npvt_batched.hpp diff --git a/hipBLAS/clients/include/solver/testing_getrs.hpp b/projects/hipblas/clients/include/solver/testing_getrs.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_getrs.hpp rename to projects/hipblas/clients/include/solver/testing_getrs.hpp diff --git a/hipBLAS/clients/include/solver/testing_getrs_batched.hpp b/projects/hipblas/clients/include/solver/testing_getrs_batched.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_getrs_batched.hpp rename to projects/hipblas/clients/include/solver/testing_getrs_batched.hpp diff --git a/hipBLAS/clients/include/solver/testing_getrs_strided_batched.hpp b/projects/hipblas/clients/include/solver/testing_getrs_strided_batched.hpp similarity index 100% rename from hipBLAS/clients/include/solver/testing_getrs_strided_batched.hpp rename to projects/hipblas/clients/include/solver/testing_getrs_strided_batched.hpp diff --git a/hipBLAS/clients/include/syrkx_reference.hpp b/projects/hipblas/clients/include/syrkx_reference.hpp similarity index 100% rename from hipBLAS/clients/include/syrkx_reference.hpp rename to projects/hipblas/clients/include/syrkx_reference.hpp diff --git a/hipBLAS/clients/include/test_cleanup.hpp b/projects/hipblas/clients/include/test_cleanup.hpp similarity index 100% rename from hipBLAS/clients/include/test_cleanup.hpp rename to projects/hipblas/clients/include/test_cleanup.hpp diff --git a/hipBLAS/clients/include/testing_common.hpp b/projects/hipblas/clients/include/testing_common.hpp similarity index 100% rename from hipBLAS/clients/include/testing_common.hpp rename to projects/hipblas/clients/include/testing_common.hpp diff --git a/hipBLAS/clients/include/testing_macros.hpp b/projects/hipblas/clients/include/testing_macros.hpp similarity index 100% rename from hipBLAS/clients/include/testing_macros.hpp rename to projects/hipblas/clients/include/testing_macros.hpp diff --git a/hipBLAS/clients/include/tuple_helper.hpp b/projects/hipblas/clients/include/tuple_helper.hpp similarity index 100% rename from hipBLAS/clients/include/tuple_helper.hpp rename to projects/hipblas/clients/include/tuple_helper.hpp diff --git a/hipBLAS/clients/include/type_dispatch.hpp b/projects/hipblas/clients/include/type_dispatch.hpp similarity index 100% rename from hipBLAS/clients/include/type_dispatch.hpp rename to projects/hipblas/clients/include/type_dispatch.hpp diff --git a/hipBLAS/clients/include/type_utils.h b/projects/hipblas/clients/include/type_utils.h similarity index 100% rename from hipBLAS/clients/include/type_utils.h rename to projects/hipblas/clients/include/type_utils.h diff --git a/hipBLAS/clients/include/unit.h b/projects/hipblas/clients/include/unit.h similarity index 100% rename from hipBLAS/clients/include/unit.h rename to projects/hipblas/clients/include/unit.h diff --git a/hipBLAS/clients/include/utility.h b/projects/hipblas/clients/include/utility.h similarity index 100% rename from hipBLAS/clients/include/utility.h rename to projects/hipblas/clients/include/utility.h diff --git a/hipBLAS/clients/samples/CMakeLists.txt b/projects/hipblas/clients/samples/CMakeLists.txt similarity index 100% rename from hipBLAS/clients/samples/CMakeLists.txt rename to projects/hipblas/clients/samples/CMakeLists.txt diff --git a/hipBLAS/clients/samples/example_bfdot_hip_bfloat16.cpp b/projects/hipblas/clients/samples/example_bfdot_hip_bfloat16.cpp similarity index 100% rename from hipBLAS/clients/samples/example_bfdot_hip_bfloat16.cpp rename to projects/hipblas/clients/samples/example_bfdot_hip_bfloat16.cpp diff --git a/hipBLAS/clients/samples/example_c.c b/projects/hipblas/clients/samples/example_c.c similarity index 100% rename from hipBLAS/clients/samples/example_c.c rename to projects/hipblas/clients/samples/example_c.c diff --git a/hipBLAS/clients/samples/example_gemm_ex.cpp b/projects/hipblas/clients/samples/example_gemm_ex.cpp similarity index 100% rename from hipBLAS/clients/samples/example_gemm_ex.cpp rename to projects/hipblas/clients/samples/example_gemm_ex.cpp diff --git a/hipBLAS/clients/samples/example_gemm_ex_fortran.F90 b/projects/hipblas/clients/samples/example_gemm_ex_fortran.F90 similarity index 100% rename from hipBLAS/clients/samples/example_gemm_ex_fortran.F90 rename to projects/hipblas/clients/samples/example_gemm_ex_fortran.F90 diff --git a/hipBLAS/clients/samples/example_hgemm.cpp b/projects/hipblas/clients/samples/example_hgemm.cpp similarity index 100% rename from hipBLAS/clients/samples/example_hgemm.cpp rename to projects/hipblas/clients/samples/example_hgemm.cpp diff --git a/hipBLAS/clients/samples/example_hgemm_hip_half.cpp b/projects/hipblas/clients/samples/example_hgemm_hip_half.cpp similarity index 100% rename from hipBLAS/clients/samples/example_hgemm_hip_half.cpp rename to projects/hipblas/clients/samples/example_hgemm_hip_half.cpp diff --git a/hipBLAS/clients/samples/example_hip_complex_her2.cpp b/projects/hipblas/clients/samples/example_hip_complex_her2.cpp similarity index 100% rename from hipBLAS/clients/samples/example_hip_complex_her2.cpp rename to projects/hipblas/clients/samples/example_hip_complex_her2.cpp diff --git a/hipBLAS/clients/samples/example_scal_ex.cpp b/projects/hipblas/clients/samples/example_scal_ex.cpp similarity index 100% rename from hipBLAS/clients/samples/example_scal_ex.cpp rename to projects/hipblas/clients/samples/example_scal_ex.cpp diff --git a/hipBLAS/clients/samples/example_sgemm.cpp b/projects/hipblas/clients/samples/example_sgemm.cpp similarity index 100% rename from hipBLAS/clients/samples/example_sgemm.cpp rename to projects/hipblas/clients/samples/example_sgemm.cpp diff --git a/hipBLAS/clients/samples/example_sgemm_strided_batched.cpp b/projects/hipblas/clients/samples/example_sgemm_strided_batched.cpp similarity index 100% rename from hipBLAS/clients/samples/example_sgemm_strided_batched.cpp rename to projects/hipblas/clients/samples/example_sgemm_strided_batched.cpp diff --git a/hipBLAS/clients/samples/example_sscal.cpp b/projects/hipblas/clients/samples/example_sscal.cpp similarity index 100% rename from hipBLAS/clients/samples/example_sscal.cpp rename to projects/hipblas/clients/samples/example_sscal.cpp diff --git a/hipBLAS/clients/samples/example_sscal_fortran.F90 b/projects/hipblas/clients/samples/example_sscal_fortran.F90 similarity index 100% rename from hipBLAS/clients/samples/example_sscal_fortran.F90 rename to projects/hipblas/clients/samples/example_sscal_fortran.F90 diff --git a/hipBLAS/clients/samples/example_strmm.cpp b/projects/hipblas/clients/samples/example_strmm.cpp similarity index 100% rename from hipBLAS/clients/samples/example_strmm.cpp rename to projects/hipblas/clients/samples/example_strmm.cpp diff --git a/hipBLAS/cmake/dependencies.cmake b/projects/hipblas/cmake/dependencies.cmake similarity index 100% rename from hipBLAS/cmake/dependencies.cmake rename to projects/hipblas/cmake/dependencies.cmake diff --git a/hipBLAS/cmake/get-cli-arguments.cmake b/projects/hipblas/cmake/get-cli-arguments.cmake similarity index 100% rename from hipBLAS/cmake/get-cli-arguments.cmake rename to projects/hipblas/cmake/get-cli-arguments.cmake diff --git a/hipBLAS/cmake/get-rocm-cmake.cmake b/projects/hipblas/cmake/get-rocm-cmake.cmake similarity index 100% rename from hipBLAS/cmake/get-rocm-cmake.cmake rename to projects/hipblas/cmake/get-rocm-cmake.cmake diff --git a/hipBLAS/deps/CMakeLists.txt b/projects/hipblas/deps/CMakeLists.txt similarity index 100% rename from hipBLAS/deps/CMakeLists.txt rename to projects/hipblas/deps/CMakeLists.txt diff --git a/hipBLAS/deps/external-gtest.cmake b/projects/hipblas/deps/external-gtest.cmake similarity index 100% rename from hipBLAS/deps/external-gtest.cmake rename to projects/hipblas/deps/external-gtest.cmake diff --git a/hipBLAS/deps/external-lapack.cmake b/projects/hipblas/deps/external-lapack.cmake similarity index 100% rename from hipBLAS/deps/external-lapack.cmake rename to projects/hipblas/deps/external-lapack.cmake diff --git a/hipBLAS/deps/requirements.txt b/projects/hipblas/deps/requirements.txt similarity index 100% rename from hipBLAS/deps/requirements.txt rename to projects/hipblas/deps/requirements.txt diff --git a/hipBLAS/docs/CMakeLists.txt b/projects/hipblas/docs/CMakeLists.txt similarity index 100% rename from hipBLAS/docs/CMakeLists.txt rename to projects/hipblas/docs/CMakeLists.txt diff --git a/hipBLAS/docs/cleanup_text.sh b/projects/hipblas/docs/cleanup_text.sh similarity index 100% rename from hipBLAS/docs/cleanup_text.sh rename to projects/hipblas/docs/cleanup_text.sh diff --git a/hipBLAS/docs/conceptual/library-source-code-organization.rst b/projects/hipblas/docs/conceptual/library-source-code-organization.rst similarity index 100% rename from hipBLAS/docs/conceptual/library-source-code-organization.rst rename to projects/hipblas/docs/conceptual/library-source-code-organization.rst diff --git a/hipBLAS/docs/conf.py b/projects/hipblas/docs/conf.py similarity index 100% rename from hipBLAS/docs/conf.py rename to projects/hipblas/docs/conf.py diff --git a/hipBLAS/docs/doxygen/.gitignore b/projects/hipblas/docs/doxygen/.gitignore similarity index 100% rename from hipBLAS/docs/doxygen/.gitignore rename to projects/hipblas/docs/doxygen/.gitignore diff --git a/hipBLAS/docs/doxygen/Doxyfile b/projects/hipblas/docs/doxygen/Doxyfile similarity index 100% rename from hipBLAS/docs/doxygen/Doxyfile rename to projects/hipblas/docs/doxygen/Doxyfile diff --git a/hipBLAS/docs/how-to/contributing-to-hipblas.rst b/projects/hipblas/docs/how-to/contributing-to-hipblas.rst similarity index 100% rename from hipBLAS/docs/how-to/contributing-to-hipblas.rst rename to projects/hipblas/docs/how-to/contributing-to-hipblas.rst diff --git a/hipBLAS/docs/how-to/using-hipblas-clients.rst b/projects/hipblas/docs/how-to/using-hipblas-clients.rst similarity index 100% rename from hipBLAS/docs/how-to/using-hipblas-clients.rst rename to projects/hipblas/docs/how-to/using-hipblas-clients.rst diff --git a/hipBLAS/docs/index.rst b/projects/hipblas/docs/index.rst similarity index 100% rename from hipBLAS/docs/index.rst rename to projects/hipblas/docs/index.rst diff --git a/hipBLAS/docs/install/Linux_Install_Guide.rst b/projects/hipblas/docs/install/Linux_Install_Guide.rst similarity index 100% rename from hipBLAS/docs/install/Linux_Install_Guide.rst rename to projects/hipblas/docs/install/Linux_Install_Guide.rst diff --git a/hipBLAS/docs/install/Windows_Install_Guide.rst b/projects/hipblas/docs/install/Windows_Install_Guide.rst similarity index 100% rename from hipBLAS/docs/install/Windows_Install_Guide.rst rename to projects/hipblas/docs/install/Windows_Install_Guide.rst diff --git a/hipBLAS/docs/install/prerequisites.rst b/projects/hipblas/docs/install/prerequisites.rst similarity index 100% rename from hipBLAS/docs/install/prerequisites.rst rename to projects/hipblas/docs/install/prerequisites.rst diff --git a/hipBLAS/docs/license.rst b/projects/hipblas/docs/license.rst similarity index 100% rename from hipBLAS/docs/license.rst rename to projects/hipblas/docs/license.rst diff --git a/hipBLAS/docs/reference/data-type-support.rst b/projects/hipblas/docs/reference/data-type-support.rst similarity index 100% rename from hipBLAS/docs/reference/data-type-support.rst rename to projects/hipblas/docs/reference/data-type-support.rst diff --git a/hipBLAS/docs/reference/deprecation.rst b/projects/hipblas/docs/reference/deprecation.rst similarity index 100% rename from hipBLAS/docs/reference/deprecation.rst rename to projects/hipblas/docs/reference/deprecation.rst diff --git a/hipBLAS/docs/reference/hipblas-api-functions.rst b/projects/hipblas/docs/reference/hipblas-api-functions.rst similarity index 100% rename from hipBLAS/docs/reference/hipblas-api-functions.rst rename to projects/hipblas/docs/reference/hipblas-api-functions.rst diff --git a/hipBLAS/docs/sphinx/_toc.yml.in b/projects/hipblas/docs/sphinx/_toc.yml.in similarity index 100% rename from hipBLAS/docs/sphinx/_toc.yml.in rename to projects/hipblas/docs/sphinx/_toc.yml.in diff --git a/hipBLAS/docs/sphinx/requirements.in b/projects/hipblas/docs/sphinx/requirements.in similarity index 100% rename from hipBLAS/docs/sphinx/requirements.in rename to projects/hipblas/docs/sphinx/requirements.in diff --git a/hipBLAS/docs/sphinx/requirements.txt b/projects/hipblas/docs/sphinx/requirements.txt similarity index 100% rename from hipBLAS/docs/sphinx/requirements.txt rename to projects/hipblas/docs/sphinx/requirements.txt diff --git a/hipBLAS/install.sh b/projects/hipblas/install.sh similarity index 100% rename from hipBLAS/install.sh rename to projects/hipblas/install.sh diff --git a/hipBLAS/library/CMakeLists.txt b/projects/hipblas/library/CMakeLists.txt similarity index 100% rename from hipBLAS/library/CMakeLists.txt rename to projects/hipblas/library/CMakeLists.txt diff --git a/hipBLAS/library/include/hipblas-version.h.in b/projects/hipblas/library/include/hipblas-version.h.in similarity index 100% rename from hipBLAS/library/include/hipblas-version.h.in rename to projects/hipblas/library/include/hipblas-version.h.in diff --git a/hipBLAS/library/include/hipblas.h b/projects/hipblas/library/include/hipblas.h similarity index 100% rename from hipBLAS/library/include/hipblas.h rename to projects/hipblas/library/include/hipblas.h diff --git a/hipBLAS/library/src/CMakeLists.txt b/projects/hipblas/library/src/CMakeLists.txt similarity index 100% rename from hipBLAS/library/src/CMakeLists.txt rename to projects/hipblas/library/src/CMakeLists.txt diff --git a/hipBLAS/library/src/amd_detail/hipblas.cpp b/projects/hipblas/library/src/amd_detail/hipblas.cpp similarity index 100% rename from hipBLAS/library/src/amd_detail/hipblas.cpp rename to projects/hipblas/library/src/amd_detail/hipblas.cpp diff --git a/hipBLAS/library/src/hipblas-config.cmake.in b/projects/hipblas/library/src/hipblas-config.cmake.in similarity index 100% rename from hipBLAS/library/src/hipblas-config.cmake.in rename to projects/hipblas/library/src/hipblas-config.cmake.in diff --git a/hipBLAS/library/src/hipblas_auxiliary.cpp b/projects/hipblas/library/src/hipblas_auxiliary.cpp similarity index 100% rename from hipBLAS/library/src/hipblas_auxiliary.cpp rename to projects/hipblas/library/src/hipblas_auxiliary.cpp diff --git a/hipBLAS/library/src/hipblas_module.f90 b/projects/hipblas/library/src/hipblas_module.f90 similarity index 100% rename from hipBLAS/library/src/hipblas_module.f90 rename to projects/hipblas/library/src/hipblas_module.f90 diff --git a/hipBLAS/library/src/include/exceptions.hpp b/projects/hipblas/library/src/include/exceptions.hpp similarity index 100% rename from hipBLAS/library/src/include/exceptions.hpp rename to projects/hipblas/library/src/include/exceptions.hpp diff --git a/hipBLAS/library/src/nvidia_detail/hipblas.cpp b/projects/hipblas/library/src/nvidia_detail/hipblas.cpp similarity index 100% rename from hipBLAS/library/src/nvidia_detail/hipblas.cpp rename to projects/hipblas/library/src/nvidia_detail/hipblas.cpp diff --git a/hipBLAS/rdeps.py b/projects/hipblas/rdeps.py similarity index 100% rename from hipBLAS/rdeps.py rename to projects/hipblas/rdeps.py diff --git a/hipBLAS/rdeps.xml b/projects/hipblas/rdeps.xml similarity index 100% rename from hipBLAS/rdeps.xml rename to projects/hipblas/rdeps.xml diff --git a/hipBLAS/rmake.py b/projects/hipblas/rmake.py similarity index 100% rename from hipBLAS/rmake.py rename to projects/hipblas/rmake.py diff --git a/hipBLAS/rtest.py b/projects/hipblas/rtest.py similarity index 100% rename from hipBLAS/rtest.py rename to projects/hipblas/rtest.py diff --git a/hipBLAS/rtest.xml b/projects/hipblas/rtest.xml similarity index 100% rename from hipBLAS/rtest.xml rename to projects/hipblas/rtest.xml diff --git a/hipBLAS/scripts/performance/blas/combine_plots.py b/projects/hipblas/scripts/performance/blas/combine_plots.py similarity index 100% rename from hipBLAS/scripts/performance/blas/combine_plots.py rename to projects/hipblas/scripts/performance/blas/combine_plots.py diff --git a/hipBLAS/scripts/performance/blas/commandrunner.py b/projects/hipblas/scripts/performance/blas/commandrunner.py similarity index 100% rename from hipBLAS/scripts/performance/blas/commandrunner.py rename to projects/hipblas/scripts/performance/blas/commandrunner.py diff --git a/hipBLAS/scripts/performance/blas/datagraphs.asy b/projects/hipblas/scripts/performance/blas/datagraphs.asy similarity index 100% rename from hipBLAS/scripts/performance/blas/datagraphs.asy rename to projects/hipblas/scripts/performance/blas/datagraphs.asy diff --git a/hipBLAS/scripts/performance/blas/getspecs.py b/projects/hipblas/scripts/performance/blas/getspecs.py similarity index 100% rename from hipBLAS/scripts/performance/blas/getspecs.py rename to projects/hipblas/scripts/performance/blas/getspecs.py diff --git a/hipBLAS/scripts/performance/blas/hipblas_gentest.py b/projects/hipblas/scripts/performance/blas/hipblas_gentest.py similarity index 100% rename from hipBLAS/scripts/performance/blas/hipblas_gentest.py rename to projects/hipblas/scripts/performance/blas/hipblas_gentest.py diff --git a/hipBLAS/scripts/performance/blas/performancereport.py b/projects/hipblas/scripts/performance/blas/performancereport.py similarity index 100% rename from hipBLAS/scripts/performance/blas/performancereport.py rename to projects/hipblas/scripts/performance/blas/performancereport.py diff --git a/hipBLAS/scripts/performance/blas/stats.asy b/projects/hipblas/scripts/performance/blas/stats.asy similarity index 100% rename from hipBLAS/scripts/performance/blas/stats.asy rename to projects/hipblas/scripts/performance/blas/stats.asy diff --git a/hipBLAS/scripts/performance/blas/timing.py b/projects/hipblas/scripts/performance/blas/timing.py similarity index 100% rename from hipBLAS/scripts/performance/blas/timing.py rename to projects/hipblas/scripts/performance/blas/timing.py diff --git a/hipBLAS/scripts/performance/blas/utils.asy b/projects/hipblas/scripts/performance/blas/utils.asy similarity index 100% rename from hipBLAS/scripts/performance/blas/utils.asy rename to projects/hipblas/scripts/performance/blas/utils.asy diff --git a/hipBLAS/scripts/performance/multiplot/README b/projects/hipblas/scripts/performance/multiplot/README similarity index 100% rename from hipBLAS/scripts/performance/multiplot/README rename to projects/hipblas/scripts/performance/multiplot/README diff --git a/hipBLAS/scripts/performance/multiplot/benchmark.py b/projects/hipblas/scripts/performance/multiplot/benchmark.py similarity index 100% rename from hipBLAS/scripts/performance/multiplot/benchmark.py rename to projects/hipblas/scripts/performance/multiplot/benchmark.py diff --git a/hipBLAS/scripts/performance/multiplot/benchmark_plot.sh b/projects/hipblas/scripts/performance/multiplot/benchmark_plot.sh similarity index 100% rename from hipBLAS/scripts/performance/multiplot/benchmark_plot.sh rename to projects/hipblas/scripts/performance/multiplot/benchmark_plot.sh diff --git a/hipBLAS/scripts/performance/multiplot/blas1/axpy.yaml b/projects/hipblas/scripts/performance/multiplot/blas1/axpy.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/axpy.yaml rename to projects/hipblas/scripts/performance/multiplot/blas1/axpy.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas1/dot.yaml b/projects/hipblas/scripts/performance/multiplot/blas1/dot.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/dot.yaml rename to projects/hipblas/scripts/performance/multiplot/blas1/dot.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas1/gfx90a/axpy.csv b/projects/hipblas/scripts/performance/multiplot/blas1/gfx90a/axpy.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/gfx90a/axpy.csv rename to projects/hipblas/scripts/performance/multiplot/blas1/gfx90a/axpy.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas1/gfx90a/dot.csv b/projects/hipblas/scripts/performance/multiplot/blas1/gfx90a/dot.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/gfx90a/dot.csv rename to projects/hipblas/scripts/performance/multiplot/blas1/gfx90a/dot.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas1/gfx90a/machine_spec.yaml b/projects/hipblas/scripts/performance/multiplot/blas1/gfx90a/machine_spec.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/gfx90a/machine_spec.yaml rename to projects/hipblas/scripts/performance/multiplot/blas1/gfx90a/machine_spec.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas1/gfx90a/nrm2.csv b/projects/hipblas/scripts/performance/multiplot/blas1/gfx90a/nrm2.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/gfx90a/nrm2.csv rename to projects/hipblas/scripts/performance/multiplot/blas1/gfx90a/nrm2.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas1/gfx90a/scal.csv b/projects/hipblas/scripts/performance/multiplot/blas1/gfx90a/scal.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/gfx90a/scal.csv rename to projects/hipblas/scripts/performance/multiplot/blas1/gfx90a/scal.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas1/iamax.yaml b/projects/hipblas/scripts/performance/multiplot/blas1/iamax.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/iamax.yaml rename to projects/hipblas/scripts/performance/multiplot/blas1/iamax.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas1/nrm2.yaml b/projects/hipblas/scripts/performance/multiplot/blas1/nrm2.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/nrm2.yaml rename to projects/hipblas/scripts/performance/multiplot/blas1/nrm2.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas1/ref/axpy.csv b/projects/hipblas/scripts/performance/multiplot/blas1/ref/axpy.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/ref/axpy.csv rename to projects/hipblas/scripts/performance/multiplot/blas1/ref/axpy.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas1/ref/dot.csv b/projects/hipblas/scripts/performance/multiplot/blas1/ref/dot.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/ref/dot.csv rename to projects/hipblas/scripts/performance/multiplot/blas1/ref/dot.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas1/ref/nrm2.csv b/projects/hipblas/scripts/performance/multiplot/blas1/ref/nrm2.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/ref/nrm2.csv rename to projects/hipblas/scripts/performance/multiplot/blas1/ref/nrm2.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas1/ref/scal.csv b/projects/hipblas/scripts/performance/multiplot/blas1/ref/scal.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/ref/scal.csv rename to projects/hipblas/scripts/performance/multiplot/blas1/ref/scal.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas1/scal.yaml b/projects/hipblas/scripts/performance/multiplot/blas1/scal.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas1/scal.yaml rename to projects/hipblas/scripts/performance/multiplot/blas1/scal.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gbmv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/gbmv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gbmv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/gbmv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gemv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/gemv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gemv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/gemv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ger.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/ger.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ger.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/ger.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/gbmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/gbmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/gbmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/gbmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/gemv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/gemv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/gemv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/gemv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/ger.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/ger.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/ger.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/ger.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/hbmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/hbmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/hbmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/hbmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/hemv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/hemv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/hemv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/hemv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/her.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/her.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/her.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/her.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/her2.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/her2.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/her2.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/her2.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/hpmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/hpmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/hpmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/hpmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/hpr.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/hpr.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/hpr.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/hpr.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/hpr2.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/hpr2.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/hpr2.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/hpr2.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/machine_spec.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/machine_spec.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/machine_spec.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/machine_spec.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/sbmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/sbmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/sbmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/sbmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/spmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/spmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/spmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/spmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/spr.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/spr.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/spr.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/spr.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/spr2.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/spr2.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/spr2.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/spr2.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/symv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/symv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/symv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/symv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/syr.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/syr.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/syr.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/syr.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/syr2.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/syr2.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/syr2.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/syr2.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/tbmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/tbmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/tbmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/tbmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/tpmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/tpmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/tpmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/tpmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/gfx90a/trmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/trmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/gfx90a/trmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/gfx90a/trmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/hbmv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/hbmv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/hbmv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/hbmv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/hemv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/hemv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/hemv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/hemv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/her.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/her.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/her.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/her.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/her2.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/her2.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/her2.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/her2.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/hpmv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/hpmv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/hpmv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/hpmv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/hpr.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/hpr.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/hpr.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/hpr.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/hpr2.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/hpr2.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/hpr2.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/hpr2.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/gbmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/gbmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/gbmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/gbmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/gemv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/gemv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/gemv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/gemv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/ger.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/ger.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/ger.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/ger.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/hbmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/hbmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/hbmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/hbmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/hemv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/hemv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/hemv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/hemv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/her.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/her.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/her.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/her.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/her2.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/her2.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/her2.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/her2.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/hpmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/hpmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/hpmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/hpmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/hpr.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/hpr.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/hpr.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/hpr.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/hpr2.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/hpr2.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/hpr2.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/hpr2.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/sbmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/sbmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/sbmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/sbmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/spmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/spmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/spmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/spmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/spr.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/spr.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/spr.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/spr.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/spr2.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/spr2.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/spr2.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/spr2.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/symv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/symv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/symv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/symv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/syr.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/syr.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/syr.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/syr.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/syr2.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/syr2.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/syr2.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/syr2.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/tbmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/tbmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/tbmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/tbmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/tpmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/tpmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/tpmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/tpmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/ref/trmv.csv b/projects/hipblas/scripts/performance/multiplot/blas2/ref/trmv.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/ref/trmv.csv rename to projects/hipblas/scripts/performance/multiplot/blas2/ref/trmv.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas2/sbmv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/sbmv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/sbmv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/sbmv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/spmv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/spmv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/spmv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/spmv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/spr.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/spr.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/spr.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/spr.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/spr2.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/spr2.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/spr2.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/spr2.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/symv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/symv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/symv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/symv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/syr.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/syr.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/syr.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/syr.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/syr2.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/syr2.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/syr2.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/syr2.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/tbmv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/tbmv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/tbmv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/tbmv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/tbsv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/tbsv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/tbsv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/tbsv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/tpmv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/tpmv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/tpmv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/tpmv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/tpsv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/tpsv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/tpsv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/tpsv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/trmv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/trmv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/trmv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/trmv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas2/trsv.yaml b/projects/hipblas/scripts/performance/multiplot/blas2/trsv.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas2/trsv.yaml rename to projects/hipblas/scripts/performance/multiplot/blas2/trsv.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas3/gemm.yaml b/projects/hipblas/scripts/performance/multiplot/blas3/gemm.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/gemm.yaml rename to projects/hipblas/scripts/performance/multiplot/blas3/gemm.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas3/gfx90a/gemm.csv b/projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/gemm.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/gfx90a/gemm.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/gemm.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/gfx90a/hemm.csv b/projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/hemm.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/gfx90a/hemm.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/hemm.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/gfx90a/her2k.csv b/projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/her2k.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/gfx90a/her2k.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/her2k.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/gfx90a/herk.csv b/projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/herk.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/gfx90a/herk.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/herk.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/gfx90a/herkx.csv b/projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/herkx.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/gfx90a/herkx.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/herkx.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/gfx90a/machine_spec.yaml b/projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/machine_spec.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/gfx90a/machine_spec.yaml rename to projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/machine_spec.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas3/gfx90a/symm.csv b/projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/symm.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/gfx90a/symm.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/symm.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/gfx90a/syr2k.csv b/projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/syr2k.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/gfx90a/syr2k.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/syr2k.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/gfx90a/syrk.csv b/projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/syrk.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/gfx90a/syrk.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/syrk.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/gfx90a/syrkx.csv b/projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/syrkx.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/gfx90a/syrkx.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/syrkx.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/gfx90a/trmm.csv b/projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/trmm.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/gfx90a/trmm.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/trmm.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/gfx90a/trsm.csv b/projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/trsm.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/gfx90a/trsm.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/gfx90a/trsm.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/hemm.yaml b/projects/hipblas/scripts/performance/multiplot/blas3/hemm.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/hemm.yaml rename to projects/hipblas/scripts/performance/multiplot/blas3/hemm.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas3/her2k.yaml b/projects/hipblas/scripts/performance/multiplot/blas3/her2k.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/her2k.yaml rename to projects/hipblas/scripts/performance/multiplot/blas3/her2k.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas3/herk.yaml b/projects/hipblas/scripts/performance/multiplot/blas3/herk.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/herk.yaml rename to projects/hipblas/scripts/performance/multiplot/blas3/herk.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas3/herkx.yaml b/projects/hipblas/scripts/performance/multiplot/blas3/herkx.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/herkx.yaml rename to projects/hipblas/scripts/performance/multiplot/blas3/herkx.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas3/ref/gemm.csv b/projects/hipblas/scripts/performance/multiplot/blas3/ref/gemm.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/ref/gemm.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/ref/gemm.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/ref/hemm.csv b/projects/hipblas/scripts/performance/multiplot/blas3/ref/hemm.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/ref/hemm.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/ref/hemm.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/ref/her2k.csv b/projects/hipblas/scripts/performance/multiplot/blas3/ref/her2k.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/ref/her2k.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/ref/her2k.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/ref/herk.csv b/projects/hipblas/scripts/performance/multiplot/blas3/ref/herk.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/ref/herk.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/ref/herk.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/ref/herkx.csv b/projects/hipblas/scripts/performance/multiplot/blas3/ref/herkx.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/ref/herkx.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/ref/herkx.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/ref/symm.csv b/projects/hipblas/scripts/performance/multiplot/blas3/ref/symm.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/ref/symm.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/ref/symm.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/ref/syr2k.csv b/projects/hipblas/scripts/performance/multiplot/blas3/ref/syr2k.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/ref/syr2k.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/ref/syr2k.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/ref/syrk.csv b/projects/hipblas/scripts/performance/multiplot/blas3/ref/syrk.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/ref/syrk.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/ref/syrk.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/ref/syrkx.csv b/projects/hipblas/scripts/performance/multiplot/blas3/ref/syrkx.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/ref/syrkx.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/ref/syrkx.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/ref/trmm.csv b/projects/hipblas/scripts/performance/multiplot/blas3/ref/trmm.csv similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/ref/trmm.csv rename to projects/hipblas/scripts/performance/multiplot/blas3/ref/trmm.csv diff --git a/hipBLAS/scripts/performance/multiplot/blas3/symm.yaml b/projects/hipblas/scripts/performance/multiplot/blas3/symm.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/symm.yaml rename to projects/hipblas/scripts/performance/multiplot/blas3/symm.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas3/syr2k.yaml b/projects/hipblas/scripts/performance/multiplot/blas3/syr2k.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/syr2k.yaml rename to projects/hipblas/scripts/performance/multiplot/blas3/syr2k.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas3/syrk.yaml b/projects/hipblas/scripts/performance/multiplot/blas3/syrk.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/syrk.yaml rename to projects/hipblas/scripts/performance/multiplot/blas3/syrk.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas3/syrkx.yaml b/projects/hipblas/scripts/performance/multiplot/blas3/syrkx.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/syrkx.yaml rename to projects/hipblas/scripts/performance/multiplot/blas3/syrkx.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas3/trmm.yaml b/projects/hipblas/scripts/performance/multiplot/blas3/trmm.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/trmm.yaml rename to projects/hipblas/scripts/performance/multiplot/blas3/trmm.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas3/trmm_outofplace.yaml b/projects/hipblas/scripts/performance/multiplot/blas3/trmm_outofplace.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/trmm_outofplace.yaml rename to projects/hipblas/scripts/performance/multiplot/blas3/trmm_outofplace.yaml diff --git a/hipBLAS/scripts/performance/multiplot/blas3/trsm.yaml b/projects/hipblas/scripts/performance/multiplot/blas3/trsm.yaml similarity index 100% rename from hipBLAS/scripts/performance/multiplot/blas3/trsm.yaml rename to projects/hipblas/scripts/performance/multiplot/blas3/trsm.yaml diff --git a/hipBLAS/scripts/performance/multiplot/plot.py b/projects/hipblas/scripts/performance/multiplot/plot.py similarity index 100% rename from hipBLAS/scripts/performance/multiplot/plot.py rename to projects/hipblas/scripts/performance/multiplot/plot.py diff --git a/hipBLAS/toolchain-linux.cmake b/projects/hipblas/toolchain-linux.cmake similarity index 100% rename from hipBLAS/toolchain-linux.cmake rename to projects/hipblas/toolchain-linux.cmake diff --git a/hipBLAS/toolchain-windows.cmake b/projects/hipblas/toolchain-windows.cmake similarity index 100% rename from hipBLAS/toolchain-windows.cmake rename to projects/hipblas/toolchain-windows.cmake diff --git a/hipBLASLt/.azuredevops/rocm-ci.yml b/projects/hipblaslt/.azuredevops/rocm-ci.yml similarity index 100% rename from hipBLASLt/.azuredevops/rocm-ci.yml rename to projects/hipblaslt/.azuredevops/rocm-ci.yml diff --git a/hipBLAS/.clang-format b/projects/hipblaslt/.clang-format old mode 100644 new mode 100755 similarity index 100% rename from hipBLAS/.clang-format rename to projects/hipblaslt/.clang-format diff --git a/hipBLASLt/.githooks/install b/projects/hipblaslt/.githooks/install similarity index 100% rename from hipBLASLt/.githooks/install rename to projects/hipblaslt/.githooks/install diff --git a/hipBLASLt/.githooks/pre-commit b/projects/hipblaslt/.githooks/pre-commit similarity index 100% rename from hipBLASLt/.githooks/pre-commit rename to projects/hipblaslt/.githooks/pre-commit diff --git a/composable_kernel/.github/ISSUE_TEMPLATE/config.yml b/projects/hipblaslt/.github/ISSUE_TEMPLATE/config.yml similarity index 100% rename from composable_kernel/.github/ISSUE_TEMPLATE/config.yml rename to projects/hipblaslt/.github/ISSUE_TEMPLATE/config.yml diff --git a/hipBLASLt/.github/ISSUE_TEMPLATE/issue_report.yml b/projects/hipblaslt/.github/ISSUE_TEMPLATE/issue_report.yml similarity index 100% rename from hipBLASLt/.github/ISSUE_TEMPLATE/issue_report.yml rename to projects/hipblaslt/.github/ISSUE_TEMPLATE/issue_report.yml diff --git a/hipBLASLt/.github/dependabot.yml b/projects/hipblaslt/.github/dependabot.yml similarity index 100% rename from hipBLASLt/.github/dependabot.yml rename to projects/hipblaslt/.github/dependabot.yml diff --git a/hipBLASLt/.gitignore b/projects/hipblaslt/.gitignore similarity index 100% rename from hipBLASLt/.gitignore rename to projects/hipblaslt/.gitignore diff --git a/composable_kernel/.readthedocs.yaml b/projects/hipblaslt/.readthedocs.yaml similarity index 100% rename from composable_kernel/.readthedocs.yaml rename to projects/hipblaslt/.readthedocs.yaml diff --git a/hipBLASLt/CHANGELOG.md b/projects/hipblaslt/CHANGELOG.md similarity index 100% rename from hipBLASLt/CHANGELOG.md rename to projects/hipblaslt/CHANGELOG.md diff --git a/hipBLASLt/CMakeLists.txt b/projects/hipblaslt/CMakeLists.txt similarity index 100% rename from hipBLASLt/CMakeLists.txt rename to projects/hipblaslt/CMakeLists.txt diff --git a/hipBLASLt/CODEOWNERS b/projects/hipblaslt/CODEOWNERS similarity index 100% rename from hipBLASLt/CODEOWNERS rename to projects/hipblaslt/CODEOWNERS diff --git a/hipBLASLt/LICENSE.md b/projects/hipblaslt/LICENSE.md similarity index 100% rename from hipBLASLt/LICENSE.md rename to projects/hipblaslt/LICENSE.md diff --git a/hipBLASLt/README.md b/projects/hipblaslt/README.md similarity index 100% rename from hipBLASLt/README.md rename to projects/hipblaslt/README.md diff --git a/hipBLASLt/clients/CMakeLists.txt b/projects/hipblaslt/clients/CMakeLists.txt similarity index 100% rename from hipBLASLt/clients/CMakeLists.txt rename to projects/hipblaslt/clients/CMakeLists.txt diff --git a/hipBLASLt/clients/benchmarks/CMakeLists.txt b/projects/hipblaslt/clients/benchmarks/CMakeLists.txt similarity index 100% rename from hipBLASLt/clients/benchmarks/CMakeLists.txt rename to projects/hipblaslt/clients/benchmarks/CMakeLists.txt diff --git a/hipBLASLt/clients/benchmarks/README.md b/projects/hipblaslt/clients/benchmarks/README.md similarity index 100% rename from hipBLASLt/clients/benchmarks/README.md rename to projects/hipblaslt/clients/benchmarks/README.md diff --git a/hipBLASLt/clients/benchmarks/client.cpp b/projects/hipblaslt/clients/benchmarks/client.cpp similarity index 100% rename from hipBLASLt/clients/benchmarks/client.cpp rename to projects/hipblaslt/clients/benchmarks/client.cpp diff --git a/hipBLASLt/clients/benchmarks/client_api_overhead.cpp b/projects/hipblaslt/clients/benchmarks/client_api_overhead.cpp similarity index 100% rename from hipBLASLt/clients/benchmarks/client_api_overhead.cpp rename to projects/hipblaslt/clients/benchmarks/client_api_overhead.cpp diff --git a/hipBLASLt/clients/benchmarks/client_extop_amax.cpp b/projects/hipblaslt/clients/benchmarks/client_extop_amax.cpp similarity index 100% rename from hipBLASLt/clients/benchmarks/client_extop_amax.cpp rename to projects/hipblaslt/clients/benchmarks/client_extop_amax.cpp diff --git a/hipBLASLt/clients/benchmarks/client_extop_layernorm.cpp b/projects/hipblaslt/clients/benchmarks/client_extop_layernorm.cpp similarity index 100% rename from hipBLASLt/clients/benchmarks/client_extop_layernorm.cpp rename to projects/hipblaslt/clients/benchmarks/client_extop_layernorm.cpp diff --git a/hipBLASLt/clients/benchmarks/client_extop_matrixtransform.cpp b/projects/hipblaslt/clients/benchmarks/client_extop_matrixtransform.cpp similarity index 100% rename from hipBLASLt/clients/benchmarks/client_extop_matrixtransform.cpp rename to projects/hipblaslt/clients/benchmarks/client_extop_matrixtransform.cpp diff --git a/hipBLASLt/clients/benchmarks/client_extop_softmax.cpp b/projects/hipblaslt/clients/benchmarks/client_extop_softmax.cpp similarity index 100% rename from hipBLASLt/clients/benchmarks/client_extop_softmax.cpp rename to projects/hipblaslt/clients/benchmarks/client_extop_softmax.cpp diff --git a/hipBLASLt/clients/benchmarks/client_groupedgemm_fixed_mk.cpp b/projects/hipblaslt/clients/benchmarks/client_groupedgemm_fixed_mk.cpp similarity index 100% rename from hipBLASLt/clients/benchmarks/client_groupedgemm_fixed_mk.cpp rename to projects/hipblaslt/clients/benchmarks/client_groupedgemm_fixed_mk.cpp diff --git a/hipBLASLt/clients/benchmarks/client_sequence.cpp b/projects/hipblaslt/clients/benchmarks/client_sequence.cpp similarity index 100% rename from hipBLASLt/clients/benchmarks/client_sequence.cpp rename to projects/hipblaslt/clients/benchmarks/client_sequence.cpp diff --git a/hipBLASLt/clients/benchmarks/program_options.hpp b/projects/hipblaslt/clients/benchmarks/program_options.hpp similarity index 100% rename from hipBLASLt/clients/benchmarks/program_options.hpp rename to projects/hipblaslt/clients/benchmarks/program_options.hpp diff --git a/hipBLASLt/clients/benchmarks/sequence.yaml b/projects/hipblaslt/clients/benchmarks/sequence.yaml similarity index 100% rename from hipBLASLt/clients/benchmarks/sequence.yaml rename to projects/hipblaslt/clients/benchmarks/sequence.yaml diff --git a/hipBLASLt/clients/common/argument_model.cpp b/projects/hipblaslt/clients/common/argument_model.cpp similarity index 100% rename from hipBLASLt/clients/common/argument_model.cpp rename to projects/hipblaslt/clients/common/argument_model.cpp diff --git a/hipBLASLt/clients/common/blis_interface.cpp b/projects/hipblaslt/clients/common/blis_interface.cpp similarity index 100% rename from hipBLASLt/clients/common/blis_interface.cpp rename to projects/hipblaslt/clients/common/blis_interface.cpp diff --git a/hipBLASLt/clients/common/cblas_interface.cpp b/projects/hipblaslt/clients/common/cblas_interface.cpp similarity index 100% rename from hipBLASLt/clients/common/cblas_interface.cpp rename to projects/hipblaslt/clients/common/cblas_interface.cpp diff --git a/hipBLASLt/clients/common/d_vector.cpp b/projects/hipblaslt/clients/common/d_vector.cpp similarity index 100% rename from hipBLASLt/clients/common/d_vector.cpp rename to projects/hipblaslt/clients/common/d_vector.cpp diff --git a/hipBLASLt/clients/common/efficiency_monitor.cpp b/projects/hipblaslt/clients/common/efficiency_monitor.cpp similarity index 100% rename from hipBLASLt/clients/common/efficiency_monitor.cpp rename to projects/hipblaslt/clients/common/efficiency_monitor.cpp diff --git a/hipBLASLt/clients/common/hipblaslt_arguments.cpp b/projects/hipblaslt/clients/common/hipblaslt_arguments.cpp similarity index 100% rename from hipBLASLt/clients/common/hipblaslt_arguments.cpp rename to projects/hipblaslt/clients/common/hipblaslt_arguments.cpp diff --git a/hipBLASLt/clients/common/hipblaslt_gentest.py b/projects/hipblaslt/clients/common/hipblaslt_gentest.py similarity index 100% rename from hipBLASLt/clients/common/hipblaslt_gentest.py rename to projects/hipblaslt/clients/common/hipblaslt_gentest.py diff --git a/hipBLASLt/clients/common/hipblaslt_init_device.cpp b/projects/hipblaslt/clients/common/hipblaslt_init_device.cpp similarity index 100% rename from hipBLASLt/clients/common/hipblaslt_init_device.cpp rename to projects/hipblaslt/clients/common/hipblaslt_init_device.cpp diff --git a/hipBLASLt/clients/common/hipblaslt_parse_data.cpp b/projects/hipblaslt/clients/common/hipblaslt_parse_data.cpp similarity index 100% rename from hipBLASLt/clients/common/hipblaslt_parse_data.cpp rename to projects/hipblaslt/clients/common/hipblaslt_parse_data.cpp diff --git a/hipBLASLt/clients/common/hipblaslt_random.cpp b/projects/hipblaslt/clients/common/hipblaslt_random.cpp similarity index 100% rename from hipBLASLt/clients/common/hipblaslt_random.cpp rename to projects/hipblaslt/clients/common/hipblaslt_random.cpp diff --git a/hipBLASLt/clients/common/mxDataGen.cpp b/projects/hipblaslt/clients/common/mxDataGen.cpp similarity index 100% rename from hipBLASLt/clients/common/mxDataGen.cpp rename to projects/hipblaslt/clients/common/mxDataGen.cpp diff --git a/hipBLASLt/clients/common/singletons.cpp b/projects/hipblaslt/clients/common/singletons.cpp similarity index 100% rename from hipBLASLt/clients/common/singletons.cpp rename to projects/hipblaslt/clients/common/singletons.cpp diff --git a/hipBLASLt/clients/common/utility.cpp b/projects/hipblaslt/clients/common/utility.cpp similarity index 100% rename from hipBLASLt/clients/common/utility.cpp rename to projects/hipblaslt/clients/common/utility.cpp diff --git a/hipBLASLt/clients/gtest/CMakeLists.txt b/projects/hipblaslt/clients/gtest/CMakeLists.txt similarity index 100% rename from hipBLASLt/clients/gtest/CMakeLists.txt rename to projects/hipblaslt/clients/gtest/CMakeLists.txt diff --git a/hipBLASLt/clients/gtest/README.md b/projects/hipblaslt/clients/gtest/README.md similarity index 100% rename from hipBLASLt/clients/gtest/README.md rename to projects/hipblaslt/clients/gtest/README.md diff --git a/hipBLASLt/clients/gtest/auxiliary_gtest.cpp b/projects/hipblaslt/clients/gtest/auxiliary_gtest.cpp similarity index 100% rename from hipBLASLt/clients/gtest/auxiliary_gtest.cpp rename to projects/hipblaslt/clients/gtest/auxiliary_gtest.cpp diff --git a/hipBLASLt/clients/gtest/auxiliary_gtest.yaml b/projects/hipblaslt/clients/gtest/auxiliary_gtest.yaml similarity index 100% rename from hipBLASLt/clients/gtest/auxiliary_gtest.yaml rename to projects/hipblaslt/clients/gtest/auxiliary_gtest.yaml diff --git a/hipBLASLt/clients/gtest/hipblaslt_gtest.yaml b/projects/hipblaslt/clients/gtest/hipblaslt_gtest.yaml similarity index 100% rename from hipBLASLt/clients/gtest/hipblaslt_gtest.yaml rename to projects/hipblaslt/clients/gtest/hipblaslt_gtest.yaml diff --git a/hipBLASLt/clients/gtest/hipblaslt_gtest_ext_op.cpp b/projects/hipblaslt/clients/gtest/hipblaslt_gtest_ext_op.cpp similarity index 100% rename from hipBLASLt/clients/gtest/hipblaslt_gtest_ext_op.cpp rename to projects/hipblaslt/clients/gtest/hipblaslt_gtest_ext_op.cpp diff --git a/hipBLASLt/clients/gtest/hipblaslt_gtest_main.cpp b/projects/hipblaslt/clients/gtest/hipblaslt_gtest_main.cpp similarity index 100% rename from hipBLASLt/clients/gtest/hipblaslt_gtest_main.cpp rename to projects/hipblaslt/clients/gtest/hipblaslt_gtest_main.cpp diff --git a/hipBLASLt/clients/gtest/hipblaslt_test.cpp b/projects/hipblaslt/clients/gtest/hipblaslt_test.cpp similarity index 100% rename from hipBLASLt/clients/gtest/hipblaslt_test.cpp rename to projects/hipblaslt/clients/gtest/hipblaslt_test.cpp diff --git a/hipBLASLt/clients/gtest/known_bugs.yaml b/projects/hipblaslt/clients/gtest/known_bugs.yaml similarity index 100% rename from hipBLASLt/clients/gtest/known_bugs.yaml rename to projects/hipblaslt/clients/gtest/known_bugs.yaml diff --git a/hipBLASLt/clients/gtest/matmul_common.yaml b/projects/hipblaslt/clients/gtest/matmul_common.yaml similarity index 100% rename from hipBLASLt/clients/gtest/matmul_common.yaml rename to projects/hipblaslt/clients/gtest/matmul_common.yaml diff --git a/hipBLASLt/clients/gtest/matmul_gtest.cpp b/projects/hipblaslt/clients/gtest/matmul_gtest.cpp similarity index 100% rename from hipBLASLt/clients/gtest/matmul_gtest.cpp rename to projects/hipblaslt/clients/gtest/matmul_gtest.cpp diff --git a/hipBLASLt/clients/gtest/matmul_gtest.yaml b/projects/hipblaslt/clients/gtest/matmul_gtest.yaml similarity index 100% rename from hipBLASLt/clients/gtest/matmul_gtest.yaml rename to projects/hipblaslt/clients/gtest/matmul_gtest.yaml diff --git a/hipBLASLt/clients/gtest/matrix_transform_gtest.cpp b/projects/hipblaslt/clients/gtest/matrix_transform_gtest.cpp similarity index 100% rename from hipBLASLt/clients/gtest/matrix_transform_gtest.cpp rename to projects/hipblaslt/clients/gtest/matrix_transform_gtest.cpp diff --git a/hipBLASLt/clients/gtest/rocroller_gtest.yaml b/projects/hipblaslt/clients/gtest/rocroller_gtest.yaml similarity index 100% rename from hipBLASLt/clients/gtest/rocroller_gtest.yaml rename to projects/hipblaslt/clients/gtest/rocroller_gtest.yaml diff --git a/hipBLASLt/clients/gtest/smoke_gtest.yaml b/projects/hipblaslt/clients/gtest/smoke_gtest.yaml similarity index 100% rename from hipBLASLt/clients/gtest/smoke_gtest.yaml rename to projects/hipblaslt/clients/gtest/smoke_gtest.yaml diff --git a/hipBLASLt/clients/include/TensorDataManipulation.hpp b/projects/hipblaslt/clients/include/TensorDataManipulation.hpp similarity index 100% rename from hipBLASLt/clients/include/TensorDataManipulation.hpp rename to projects/hipblaslt/clients/include/TensorDataManipulation.hpp diff --git a/hipBLASLt/clients/include/allclose.hpp b/projects/hipblaslt/clients/include/allclose.hpp similarity index 100% rename from hipBLASLt/clients/include/allclose.hpp rename to projects/hipblaslt/clients/include/allclose.hpp diff --git a/hipBLASLt/clients/include/argument_model.hpp b/projects/hipblaslt/clients/include/argument_model.hpp similarity index 100% rename from hipBLASLt/clients/include/argument_model.hpp rename to projects/hipblaslt/clients/include/argument_model.hpp diff --git a/hipBLASLt/clients/include/cblas_interface.hpp b/projects/hipblaslt/clients/include/cblas_interface.hpp similarity index 100% rename from hipBLASLt/clients/include/cblas_interface.hpp rename to projects/hipblaslt/clients/include/cblas_interface.hpp diff --git a/hipBLASLt/clients/include/d_vector.hpp b/projects/hipblaslt/clients/include/d_vector.hpp similarity index 100% rename from hipBLASLt/clients/include/d_vector.hpp rename to projects/hipblaslt/clients/include/d_vector.hpp diff --git a/hipBLASLt/clients/include/datatype_interface.hpp b/projects/hipblaslt/clients/include/datatype_interface.hpp similarity index 100% rename from hipBLASLt/clients/include/datatype_interface.hpp rename to projects/hipblaslt/clients/include/datatype_interface.hpp diff --git a/hipBLASLt/clients/include/device_vector.hpp b/projects/hipblaslt/clients/include/device_vector.hpp similarity index 100% rename from hipBLASLt/clients/include/device_vector.hpp rename to projects/hipblaslt/clients/include/device_vector.hpp diff --git a/hipBLASLt/clients/include/efficiency_monitor.hpp b/projects/hipblaslt/clients/include/efficiency_monitor.hpp similarity index 100% rename from hipBLASLt/clients/include/efficiency_monitor.hpp rename to projects/hipblaslt/clients/include/efficiency_monitor.hpp diff --git a/hipBLASLt/clients/include/flops.hpp b/projects/hipblaslt/clients/include/flops.hpp similarity index 100% rename from hipBLASLt/clients/include/flops.hpp rename to projects/hipblaslt/clients/include/flops.hpp diff --git a/hipBLASLt/clients/include/hipBuffer.hpp b/projects/hipblaslt/clients/include/hipBuffer.hpp similarity index 100% rename from hipBLASLt/clients/include/hipBuffer.hpp rename to projects/hipblaslt/clients/include/hipBuffer.hpp diff --git a/hipBLASLt/clients/include/hipblaslt_arguments.hpp b/projects/hipblaslt/clients/include/hipblaslt_arguments.hpp similarity index 100% rename from hipBLASLt/clients/include/hipblaslt_arguments.hpp rename to projects/hipblaslt/clients/include/hipblaslt_arguments.hpp diff --git a/hipBLASLt/clients/include/hipblaslt_common.yaml b/projects/hipblaslt/clients/include/hipblaslt_common.yaml similarity index 100% rename from hipBLASLt/clients/include/hipblaslt_common.yaml rename to projects/hipblaslt/clients/include/hipblaslt_common.yaml diff --git a/hipBLASLt/clients/include/hipblaslt_data.hpp b/projects/hipblaslt/clients/include/hipblaslt_data.hpp similarity index 100% rename from hipBLASLt/clients/include/hipblaslt_data.hpp rename to projects/hipblaslt/clients/include/hipblaslt_data.hpp diff --git a/hipBLASLt/clients/include/hipblaslt_datatype2string.hpp b/projects/hipblaslt/clients/include/hipblaslt_datatype2string.hpp similarity index 100% rename from hipBLASLt/clients/include/hipblaslt_datatype2string.hpp rename to projects/hipblaslt/clients/include/hipblaslt_datatype2string.hpp diff --git a/hipBLASLt/clients/include/hipblaslt_init.hpp b/projects/hipblaslt/clients/include/hipblaslt_init.hpp similarity index 100% rename from hipBLASLt/clients/include/hipblaslt_init.hpp rename to projects/hipblaslt/clients/include/hipblaslt_init.hpp diff --git a/hipBLASLt/clients/include/hipblaslt_math.hpp b/projects/hipblaslt/clients/include/hipblaslt_math.hpp similarity index 100% rename from hipBLASLt/clients/include/hipblaslt_math.hpp rename to projects/hipblaslt/clients/include/hipblaslt_math.hpp diff --git a/hipBLASLt/clients/include/hipblaslt_parse_data.hpp b/projects/hipblaslt/clients/include/hipblaslt_parse_data.hpp similarity index 100% rename from hipBLASLt/clients/include/hipblaslt_parse_data.hpp rename to projects/hipblaslt/clients/include/hipblaslt_parse_data.hpp diff --git a/hipBLASLt/clients/include/hipblaslt_random.hpp b/projects/hipblaslt/clients/include/hipblaslt_random.hpp similarity index 100% rename from hipBLASLt/clients/include/hipblaslt_random.hpp rename to projects/hipblaslt/clients/include/hipblaslt_random.hpp diff --git a/hipBLASLt/clients/include/hipblaslt_template.yaml b/projects/hipblaslt/clients/include/hipblaslt_template.yaml similarity index 100% rename from hipBLASLt/clients/include/hipblaslt_template.yaml rename to projects/hipblaslt/clients/include/hipblaslt_template.yaml diff --git a/hipBLASLt/clients/include/hipblaslt_test.hpp b/projects/hipblaslt/clients/include/hipblaslt_test.hpp similarity index 100% rename from hipBLASLt/clients/include/hipblaslt_test.hpp rename to projects/hipblaslt/clients/include/hipblaslt_test.hpp diff --git a/hipBLASLt/clients/include/hipblaslt_vector.hpp b/projects/hipblaslt/clients/include/hipblaslt_vector.hpp similarity index 100% rename from hipBLASLt/clients/include/hipblaslt_vector.hpp rename to projects/hipblaslt/clients/include/hipblaslt_vector.hpp diff --git a/hipBLASLt/clients/include/host_vector.hpp b/projects/hipblaslt/clients/include/host_vector.hpp similarity index 100% rename from hipBLASLt/clients/include/host_vector.hpp rename to projects/hipblaslt/clients/include/host_vector.hpp diff --git a/hipBLASLt/clients/include/mxDataGen.hpp b/projects/hipblaslt/clients/include/mxDataGen.hpp similarity index 100% rename from hipBLASLt/clients/include/mxDataGen.hpp rename to projects/hipblaslt/clients/include/mxDataGen.hpp diff --git a/hipBLASLt/clients/include/near.hpp b/projects/hipblaslt/clients/include/near.hpp similarity index 100% rename from hipBLASLt/clients/include/near.hpp rename to projects/hipblaslt/clients/include/near.hpp diff --git a/hipBLASLt/clients/include/norm.hpp b/projects/hipblaslt/clients/include/norm.hpp similarity index 100% rename from hipBLASLt/clients/include/norm.hpp rename to projects/hipblaslt/clients/include/norm.hpp diff --git a/hipBLASLt/clients/include/singletons.hpp b/projects/hipblaslt/clients/include/singletons.hpp similarity index 100% rename from hipBLASLt/clients/include/singletons.hpp rename to projects/hipblaslt/clients/include/singletons.hpp diff --git a/hipBLASLt/clients/include/test_cleanup.hpp b/projects/hipblaslt/clients/include/test_cleanup.hpp similarity index 100% rename from hipBLASLt/clients/include/test_cleanup.hpp rename to projects/hipblaslt/clients/include/test_cleanup.hpp diff --git a/hipBLASLt/clients/include/testing_auxiliary.hpp b/projects/hipblaslt/clients/include/testing_auxiliary.hpp similarity index 100% rename from hipBLASLt/clients/include/testing_auxiliary.hpp rename to projects/hipblaslt/clients/include/testing_auxiliary.hpp diff --git a/hipBLASLt/clients/include/testing_matmul.hpp b/projects/hipblaslt/clients/include/testing_matmul.hpp similarity index 100% rename from hipBLASLt/clients/include/testing_matmul.hpp rename to projects/hipblaslt/clients/include/testing_matmul.hpp diff --git a/hipBLASLt/clients/include/unit.hpp b/projects/hipblaslt/clients/include/unit.hpp similarity index 100% rename from hipBLASLt/clients/include/unit.hpp rename to projects/hipblaslt/clients/include/unit.hpp diff --git a/hipBLASLt/clients/include/utility.hpp b/projects/hipblaslt/clients/include/utility.hpp similarity index 100% rename from hipBLASLt/clients/include/utility.hpp rename to projects/hipblaslt/clients/include/utility.hpp diff --git a/hipBLASLt/clients/samples/01_basic_gemm/sample_hipblaslt_gemm.cpp b/projects/hipblaslt/clients/samples/01_basic_gemm/sample_hipblaslt_gemm.cpp similarity index 100% rename from hipBLASLt/clients/samples/01_basic_gemm/sample_hipblaslt_gemm.cpp rename to projects/hipblaslt/clients/samples/01_basic_gemm/sample_hipblaslt_gemm.cpp diff --git a/hipBLASLt/clients/samples/01_basic_gemm_ext/sample_hipblaslt_gemm_ext.cpp b/projects/hipblaslt/clients/samples/01_basic_gemm_ext/sample_hipblaslt_gemm_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/01_basic_gemm_ext/sample_hipblaslt_gemm_ext.cpp rename to projects/hipblaslt/clients/samples/01_basic_gemm_ext/sample_hipblaslt_gemm_ext.cpp diff --git a/hipBLASLt/clients/samples/02_batched_gemm/sample_hipblaslt_gemm_batched.cpp b/projects/hipblaslt/clients/samples/02_batched_gemm/sample_hipblaslt_gemm_batched.cpp similarity index 100% rename from hipBLASLt/clients/samples/02_batched_gemm/sample_hipblaslt_gemm_batched.cpp rename to projects/hipblaslt/clients/samples/02_batched_gemm/sample_hipblaslt_gemm_batched.cpp diff --git a/hipBLASLt/clients/samples/02_batched_gemm_ext/sample_hipblaslt_gemm_batched_ext.cpp b/projects/hipblaslt/clients/samples/02_batched_gemm_ext/sample_hipblaslt_gemm_batched_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/02_batched_gemm_ext/sample_hipblaslt_gemm_batched_ext.cpp rename to projects/hipblaslt/clients/samples/02_batched_gemm_ext/sample_hipblaslt_gemm_batched_ext.cpp diff --git a/hipBLASLt/clients/samples/03_splitk_gemm_ext/sample_hipblaslt_gemm_tuning_splitk_ext.cpp b/projects/hipblaslt/clients/samples/03_splitk_gemm_ext/sample_hipblaslt_gemm_tuning_splitk_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/03_splitk_gemm_ext/sample_hipblaslt_gemm_tuning_splitk_ext.cpp rename to projects/hipblaslt/clients/samples/03_splitk_gemm_ext/sample_hipblaslt_gemm_tuning_splitk_ext.cpp diff --git a/hipBLASLt/clients/samples/04_gemm_bias/sample_hipblaslt_gemm_bias.cpp b/projects/hipblaslt/clients/samples/04_gemm_bias/sample_hipblaslt_gemm_bias.cpp similarity index 100% rename from hipBLASLt/clients/samples/04_gemm_bias/sample_hipblaslt_gemm_bias.cpp rename to projects/hipblaslt/clients/samples/04_gemm_bias/sample_hipblaslt_gemm_bias.cpp diff --git a/hipBLASLt/clients/samples/04_gemm_bias_ext/sample_hipblaslt_gemm_bias_ext.cpp b/projects/hipblaslt/clients/samples/04_gemm_bias_ext/sample_hipblaslt_gemm_bias_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/04_gemm_bias_ext/sample_hipblaslt_gemm_bias_ext.cpp rename to projects/hipblaslt/clients/samples/04_gemm_bias_ext/sample_hipblaslt_gemm_bias_ext.cpp diff --git a/hipBLASLt/clients/samples/05_get_all_algos_gemm/sample_hipblaslt_gemm_get_all_algos.cpp b/projects/hipblaslt/clients/samples/05_get_all_algos_gemm/sample_hipblaslt_gemm_get_all_algos.cpp similarity index 100% rename from hipBLASLt/clients/samples/05_get_all_algos_gemm/sample_hipblaslt_gemm_get_all_algos.cpp rename to projects/hipblaslt/clients/samples/05_get_all_algos_gemm/sample_hipblaslt_gemm_get_all_algos.cpp diff --git a/hipBLASLt/clients/samples/05_get_all_algos_gemm_ext/sample_hipblaslt_gemm_get_all_algos_ext.cpp b/projects/hipblaslt/clients/samples/05_get_all_algos_gemm_ext/sample_hipblaslt_gemm_get_all_algos_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/05_get_all_algos_gemm_ext/sample_hipblaslt_gemm_get_all_algos_ext.cpp rename to projects/hipblaslt/clients/samples/05_get_all_algos_gemm_ext/sample_hipblaslt_gemm_get_all_algos_ext.cpp diff --git a/hipBLASLt/clients/samples/06_get_algo_by_index_gemm_ext/sample_hipblaslt_gemm_get_algo_by_index_ext.cpp b/projects/hipblaslt/clients/samples/06_get_algo_by_index_gemm_ext/sample_hipblaslt_gemm_get_algo_by_index_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/06_get_algo_by_index_gemm_ext/sample_hipblaslt_gemm_get_algo_by_index_ext.cpp rename to projects/hipblaslt/clients/samples/06_get_algo_by_index_gemm_ext/sample_hipblaslt_gemm_get_algo_by_index_ext.cpp diff --git a/hipBLASLt/clients/samples/07_gemm_alpha_vec_ext/sample_hipblaslt_gemm_alphavec_ext.cpp b/projects/hipblaslt/clients/samples/07_gemm_alpha_vec_ext/sample_hipblaslt_gemm_alphavec_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/07_gemm_alpha_vec_ext/sample_hipblaslt_gemm_alphavec_ext.cpp rename to projects/hipblaslt/clients/samples/07_gemm_alpha_vec_ext/sample_hipblaslt_gemm_alphavec_ext.cpp diff --git a/hipBLASLt/clients/samples/08_gemm_gelu_aux_bias/sample_hipblaslt_gemm_gelu_aux_bias.cpp b/projects/hipblaslt/clients/samples/08_gemm_gelu_aux_bias/sample_hipblaslt_gemm_gelu_aux_bias.cpp similarity index 100% rename from hipBLASLt/clients/samples/08_gemm_gelu_aux_bias/sample_hipblaslt_gemm_gelu_aux_bias.cpp rename to projects/hipblaslt/clients/samples/08_gemm_gelu_aux_bias/sample_hipblaslt_gemm_gelu_aux_bias.cpp diff --git a/hipBLASLt/clients/samples/08_gemm_gelu_aux_bias_ext/sample_hipblaslt_gemm_gelu_aux_bias_ext.cpp b/projects/hipblaslt/clients/samples/08_gemm_gelu_aux_bias_ext/sample_hipblaslt_gemm_gelu_aux_bias_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/08_gemm_gelu_aux_bias_ext/sample_hipblaslt_gemm_gelu_aux_bias_ext.cpp rename to projects/hipblaslt/clients/samples/08_gemm_gelu_aux_bias_ext/sample_hipblaslt_gemm_gelu_aux_bias_ext.cpp diff --git a/hipBLASLt/clients/samples/09_gemm_amax/sample_hipblaslt_gemm_amax.cpp b/projects/hipblaslt/clients/samples/09_gemm_amax/sample_hipblaslt_gemm_amax.cpp similarity index 100% rename from hipBLASLt/clients/samples/09_gemm_amax/sample_hipblaslt_gemm_amax.cpp rename to projects/hipblaslt/clients/samples/09_gemm_amax/sample_hipblaslt_gemm_amax.cpp diff --git a/hipBLASLt/clients/samples/09_gemm_amax_ext/sample_hipblaslt_gemm_amax_ext.cpp b/projects/hipblaslt/clients/samples/09_gemm_amax_ext/sample_hipblaslt_gemm_amax_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/09_gemm_amax_ext/sample_hipblaslt_gemm_amax_ext.cpp rename to projects/hipblaslt/clients/samples/09_gemm_amax_ext/sample_hipblaslt_gemm_amax_ext.cpp diff --git a/hipBLASLt/clients/samples/10_gemm_amax_with_scale/sample_hipblaslt_gemm_amax_with_scale.cpp b/projects/hipblaslt/clients/samples/10_gemm_amax_with_scale/sample_hipblaslt_gemm_amax_with_scale.cpp similarity index 100% rename from hipBLASLt/clients/samples/10_gemm_amax_with_scale/sample_hipblaslt_gemm_amax_with_scale.cpp rename to projects/hipblaslt/clients/samples/10_gemm_amax_with_scale/sample_hipblaslt_gemm_amax_with_scale.cpp diff --git a/hipBLASLt/clients/samples/10_gemm_amax_with_scale_ext/sample_hipblaslt_gemm_amax_with_scale_ext.cpp b/projects/hipblaslt/clients/samples/10_gemm_amax_with_scale_ext/sample_hipblaslt_gemm_amax_with_scale_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/10_gemm_amax_with_scale_ext/sample_hipblaslt_gemm_amax_with_scale_ext.cpp rename to projects/hipblaslt/clients/samples/10_gemm_amax_with_scale_ext/sample_hipblaslt_gemm_amax_with_scale_ext.cpp diff --git a/hipBLASLt/clients/samples/11_gemm_bgradb/sample_hipblaslt_gemm_bgradb.cpp b/projects/hipblaslt/clients/samples/11_gemm_bgradb/sample_hipblaslt_gemm_bgradb.cpp similarity index 100% rename from hipBLASLt/clients/samples/11_gemm_bgradb/sample_hipblaslt_gemm_bgradb.cpp rename to projects/hipblaslt/clients/samples/11_gemm_bgradb/sample_hipblaslt_gemm_bgradb.cpp diff --git a/hipBLASLt/clients/samples/11_gemm_bgradb_ext/sample_hipblaslt_gemm_ext_bgradb.cpp b/projects/hipblaslt/clients/samples/11_gemm_bgradb_ext/sample_hipblaslt_gemm_ext_bgradb.cpp similarity index 100% rename from hipBLASLt/clients/samples/11_gemm_bgradb_ext/sample_hipblaslt_gemm_ext_bgradb.cpp rename to projects/hipblaslt/clients/samples/11_gemm_bgradb_ext/sample_hipblaslt_gemm_ext_bgradb.cpp diff --git a/hipBLASLt/clients/samples/12_gemm_dgelu_bgrad/sample_hipblaslt_gemm_dgelu_bgrad.cpp b/projects/hipblaslt/clients/samples/12_gemm_dgelu_bgrad/sample_hipblaslt_gemm_dgelu_bgrad.cpp similarity index 100% rename from hipBLASLt/clients/samples/12_gemm_dgelu_bgrad/sample_hipblaslt_gemm_dgelu_bgrad.cpp rename to projects/hipblaslt/clients/samples/12_gemm_dgelu_bgrad/sample_hipblaslt_gemm_dgelu_bgrad.cpp diff --git a/hipBLASLt/clients/samples/12_gemm_dgelu_bgrad_ext/sample_hipblaslt_gemm_dgelu_bgrad_ext.cpp b/projects/hipblaslt/clients/samples/12_gemm_dgelu_bgrad_ext/sample_hipblaslt_gemm_dgelu_bgrad_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/12_gemm_dgelu_bgrad_ext/sample_hipblaslt_gemm_dgelu_bgrad_ext.cpp rename to projects/hipblaslt/clients/samples/12_gemm_dgelu_bgrad_ext/sample_hipblaslt_gemm_dgelu_bgrad_ext.cpp diff --git a/hipBLASLt/clients/samples/13_is_tuned_gemm_ext/sample_hipblaslt_gemm_is_tuned_ext.cpp b/projects/hipblaslt/clients/samples/13_is_tuned_gemm_ext/sample_hipblaslt_gemm_is_tuned_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/13_is_tuned_gemm_ext/sample_hipblaslt_gemm_is_tuned_ext.cpp rename to projects/hipblaslt/clients/samples/13_is_tuned_gemm_ext/sample_hipblaslt_gemm_is_tuned_ext.cpp diff --git a/hipBLASLt/clients/samples/14_tuning_wgm_gemm_ext/sample_hipblaslt_gemm_tuning_wgm_ext.cpp b/projects/hipblaslt/clients/samples/14_tuning_wgm_gemm_ext/sample_hipblaslt_gemm_tuning_wgm_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/14_tuning_wgm_gemm_ext/sample_hipblaslt_gemm_tuning_wgm_ext.cpp rename to projects/hipblaslt/clients/samples/14_tuning_wgm_gemm_ext/sample_hipblaslt_gemm_tuning_wgm_ext.cpp diff --git a/hipBLASLt/clients/samples/15_gemm_scale_a_b/sample_hipblaslt_gemm_with_scale_a_b.cpp b/projects/hipblaslt/clients/samples/15_gemm_scale_a_b/sample_hipblaslt_gemm_with_scale_a_b.cpp similarity index 100% rename from hipBLASLt/clients/samples/15_gemm_scale_a_b/sample_hipblaslt_gemm_with_scale_a_b.cpp rename to projects/hipblaslt/clients/samples/15_gemm_scale_a_b/sample_hipblaslt_gemm_with_scale_a_b.cpp diff --git a/hipBLASLt/clients/samples/15_gemm_scale_a_b_ext/sample_hipblaslt_gemm_with_scale_a_b_ext.cpp b/projects/hipblaslt/clients/samples/15_gemm_scale_a_b_ext/sample_hipblaslt_gemm_with_scale_a_b_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/15_gemm_scale_a_b_ext/sample_hipblaslt_gemm_with_scale_a_b_ext.cpp rename to projects/hipblaslt/clients/samples/15_gemm_scale_a_b_ext/sample_hipblaslt_gemm_with_scale_a_b_ext.cpp diff --git a/hipBLASLt/clients/samples/16_gemm_grouped_ext/sample_hipblaslt_groupedgemm_ext.cpp b/projects/hipblaslt/clients/samples/16_gemm_grouped_ext/sample_hipblaslt_groupedgemm_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/16_gemm_grouped_ext/sample_hipblaslt_groupedgemm_ext.cpp rename to projects/hipblaslt/clients/samples/16_gemm_grouped_ext/sample_hipblaslt_groupedgemm_ext.cpp diff --git a/hipBLASLt/clients/samples/17_fixed_mk_gemm_grouped_ext/sample_hipblaslt_groupedgemm_fixed_mk_ext.cpp b/projects/hipblaslt/clients/samples/17_fixed_mk_gemm_grouped_ext/sample_hipblaslt_groupedgemm_fixed_mk_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/17_fixed_mk_gemm_grouped_ext/sample_hipblaslt_groupedgemm_fixed_mk_ext.cpp rename to projects/hipblaslt/clients/samples/17_fixed_mk_gemm_grouped_ext/sample_hipblaslt_groupedgemm_fixed_mk_ext.cpp diff --git a/hipBLASLt/clients/samples/18_get_all_algos_gemm_grouped_ext/sample_hipblaslt_groupedgemm_get_all_algos_ext.cpp b/projects/hipblaslt/clients/samples/18_get_all_algos_gemm_grouped_ext/sample_hipblaslt_groupedgemm_get_all_algos_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/18_get_all_algos_gemm_grouped_ext/sample_hipblaslt_groupedgemm_get_all_algos_ext.cpp rename to projects/hipblaslt/clients/samples/18_get_all_algos_gemm_grouped_ext/sample_hipblaslt_groupedgemm_get_all_algos_ext.cpp diff --git a/hipBLASLt/clients/samples/19_mix_precision_gemm/sample_hipblaslt_gemm_mix_precision.cpp b/projects/hipblaslt/clients/samples/19_mix_precision_gemm/sample_hipblaslt_gemm_mix_precision.cpp similarity index 100% rename from hipBLASLt/clients/samples/19_mix_precision_gemm/sample_hipblaslt_gemm_mix_precision.cpp rename to projects/hipblaslt/clients/samples/19_mix_precision_gemm/sample_hipblaslt_gemm_mix_precision.cpp diff --git a/hipBLASLt/clients/samples/19_mix_precision_gemm_ext/sample_hipblaslt_gemm_mix_precision_ext.cpp b/projects/hipblaslt/clients/samples/19_mix_precision_gemm_ext/sample_hipblaslt_gemm_mix_precision_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/19_mix_precision_gemm_ext/sample_hipblaslt_gemm_mix_precision_ext.cpp rename to projects/hipblaslt/clients/samples/19_mix_precision_gemm_ext/sample_hipblaslt_gemm_mix_precision_ext.cpp diff --git a/hipBLASLt/clients/samples/20_mix_precision_gemm_amax_ext/sample_hipblaslt_gemm_mix_precision_with_amax_ext.cpp b/projects/hipblaslt/clients/samples/20_mix_precision_gemm_amax_ext/sample_hipblaslt_gemm_mix_precision_with_amax_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/20_mix_precision_gemm_amax_ext/sample_hipblaslt_gemm_mix_precision_with_amax_ext.cpp rename to projects/hipblaslt/clients/samples/20_mix_precision_gemm_amax_ext/sample_hipblaslt_gemm_mix_precision_with_amax_ext.cpp diff --git a/hipBLASLt/clients/samples/21_gemm_cvtA_cvtB/sample_hipblaslt_gemm_attr_tciA_tciB.cpp b/projects/hipblaslt/clients/samples/21_gemm_cvtA_cvtB/sample_hipblaslt_gemm_attr_tciA_tciB.cpp similarity index 100% rename from hipBLASLt/clients/samples/21_gemm_cvtA_cvtB/sample_hipblaslt_gemm_attr_tciA_tciB.cpp rename to projects/hipblaslt/clients/samples/21_gemm_cvtA_cvtB/sample_hipblaslt_gemm_attr_tciA_tciB.cpp diff --git a/hipBLASLt/clients/samples/22_layernorm_ext/sample_hipblaslt_ext_op_layernorm.cpp b/projects/hipblaslt/clients/samples/22_layernorm_ext/sample_hipblaslt_ext_op_layernorm.cpp similarity index 100% rename from hipBLASLt/clients/samples/22_layernorm_ext/sample_hipblaslt_ext_op_layernorm.cpp rename to projects/hipblaslt/clients/samples/22_layernorm_ext/sample_hipblaslt_ext_op_layernorm.cpp diff --git a/hipBLASLt/clients/samples/23_amax_ext/sample_hipblaslt_ext_op_amax.cpp b/projects/hipblaslt/clients/samples/23_amax_ext/sample_hipblaslt_ext_op_amax.cpp similarity index 100% rename from hipBLASLt/clients/samples/23_amax_ext/sample_hipblaslt_ext_op_amax.cpp rename to projects/hipblaslt/clients/samples/23_amax_ext/sample_hipblaslt_ext_op_amax.cpp diff --git a/hipBLASLt/clients/samples/24_amax_with_scale_ext/sample_hipblaslt_ext_op_amax_with_scale.cpp b/projects/hipblaslt/clients/samples/24_amax_with_scale_ext/sample_hipblaslt_ext_op_amax_with_scale.cpp similarity index 100% rename from hipBLASLt/clients/samples/24_amax_with_scale_ext/sample_hipblaslt_ext_op_amax_with_scale.cpp rename to projects/hipblaslt/clients/samples/24_amax_with_scale_ext/sample_hipblaslt_ext_op_amax_with_scale.cpp diff --git a/hipBLASLt/clients/samples/25_gemm_with_TF32/sample_hipblaslt_gemm_with_TF32.cpp b/projects/hipblaslt/clients/samples/25_gemm_with_TF32/sample_hipblaslt_gemm_with_TF32.cpp similarity index 100% rename from hipBLASLt/clients/samples/25_gemm_with_TF32/sample_hipblaslt_gemm_with_TF32.cpp rename to projects/hipblaslt/clients/samples/25_gemm_with_TF32/sample_hipblaslt_gemm_with_TF32.cpp diff --git a/hipBLASLt/clients/samples/26_gemm_swizzle_a/sample_hipblaslt_gemm_bias_swizzle_a_ext.cpp b/projects/hipblaslt/clients/samples/26_gemm_swizzle_a/sample_hipblaslt_gemm_bias_swizzle_a_ext.cpp similarity index 100% rename from hipBLASLt/clients/samples/26_gemm_swizzle_a/sample_hipblaslt_gemm_bias_swizzle_a_ext.cpp rename to projects/hipblaslt/clients/samples/26_gemm_swizzle_a/sample_hipblaslt_gemm_bias_swizzle_a_ext.cpp diff --git a/hipBLASLt/clients/samples/26_gemm_swizzle_a/sample_hipblaslt_gemm_swizzle_a.cpp b/projects/hipblaslt/clients/samples/26_gemm_swizzle_a/sample_hipblaslt_gemm_swizzle_a.cpp similarity index 100% rename from hipBLASLt/clients/samples/26_gemm_swizzle_a/sample_hipblaslt_gemm_swizzle_a.cpp rename to projects/hipblaslt/clients/samples/26_gemm_swizzle_a/sample_hipblaslt_gemm_swizzle_a.cpp diff --git a/hipBLASLt/clients/samples/26_gemm_swizzle_a/sample_hipblaslt_weight_swizzle_padding.cpp b/projects/hipblaslt/clients/samples/26_gemm_swizzle_a/sample_hipblaslt_weight_swizzle_padding.cpp similarity index 100% rename from hipBLASLt/clients/samples/26_gemm_swizzle_a/sample_hipblaslt_weight_swizzle_padding.cpp rename to projects/hipblaslt/clients/samples/26_gemm_swizzle_a/sample_hipblaslt_weight_swizzle_padding.cpp diff --git a/hipBLASLt/clients/samples/27_gemm_swish_bias/sample_hipblaslt_gemm_swish_bias.cpp b/projects/hipblaslt/clients/samples/27_gemm_swish_bias/sample_hipblaslt_gemm_swish_bias.cpp similarity index 100% rename from hipBLASLt/clients/samples/27_gemm_swish_bias/sample_hipblaslt_gemm_swish_bias.cpp rename to projects/hipblaslt/clients/samples/27_gemm_swish_bias/sample_hipblaslt_gemm_swish_bias.cpp diff --git a/hipBLASLt/clients/samples/CMakeLists.txt b/projects/hipblaslt/clients/samples/CMakeLists.txt similarity index 100% rename from hipBLASLt/clients/samples/CMakeLists.txt rename to projects/hipblaslt/clients/samples/CMakeLists.txt diff --git a/hipBLASLt/clients/samples/common/helper.h b/projects/hipblaslt/clients/samples/common/helper.h similarity index 100% rename from hipBLASLt/clients/samples/common/helper.h rename to projects/hipblaslt/clients/samples/common/helper.h diff --git a/hipBLASLt/clients/samples/deprecated/sample_hipblaslt_gemm_ext_deprecated.cpp b/projects/hipblaslt/clients/samples/deprecated/sample_hipblaslt_gemm_ext_deprecated.cpp similarity index 100% rename from hipBLASLt/clients/samples/deprecated/sample_hipblaslt_gemm_ext_deprecated.cpp rename to projects/hipblaslt/clients/samples/deprecated/sample_hipblaslt_gemm_ext_deprecated.cpp diff --git a/hipBLASLt/clients/scripts/performance/bench.py b/projects/hipblaslt/clients/scripts/performance/bench.py similarity index 100% rename from hipBLASLt/clients/scripts/performance/bench.py rename to projects/hipblaslt/clients/scripts/performance/bench.py diff --git a/hipBLASLt/clients/scripts/performance/bench_sample.py b/projects/hipblaslt/clients/scripts/performance/bench_sample.py similarity index 100% rename from hipBLASLt/clients/scripts/performance/bench_sample.py rename to projects/hipblaslt/clients/scripts/performance/bench_sample.py diff --git a/hipBLASLt/clients/scripts/performance/generator.py b/projects/hipblaslt/clients/scripts/performance/generator.py similarity index 100% rename from hipBLASLt/clients/scripts/performance/generator.py rename to projects/hipblaslt/clients/scripts/performance/generator.py diff --git a/hipBLASLt/clients/scripts/performance/git_info.py b/projects/hipblaslt/clients/scripts/performance/git_info.py similarity index 100% rename from hipBLASLt/clients/scripts/performance/git_info.py rename to projects/hipblaslt/clients/scripts/performance/git_info.py diff --git a/hipBLASLt/clients/scripts/performance/hipblaslt-perf b/projects/hipblaslt/clients/scripts/performance/hipblaslt-perf similarity index 100% rename from hipBLASLt/clients/scripts/performance/hipblaslt-perf rename to projects/hipblaslt/clients/scripts/performance/hipblaslt-perf diff --git a/hipBLASLt/clients/scripts/performance/problems/matmul_probset1_bench.yaml b/projects/hipblaslt/clients/scripts/performance/problems/matmul_probset1_bench.yaml similarity index 100% rename from hipBLASLt/clients/scripts/performance/problems/matmul_probset1_bench.yaml rename to projects/hipblaslt/clients/scripts/performance/problems/matmul_probset1_bench.yaml diff --git a/hipBLASLt/clients/scripts/performance/problems/matmul_probset2_bench.yaml b/projects/hipblaslt/clients/scripts/performance/problems/matmul_probset2_bench.yaml similarity index 100% rename from hipBLASLt/clients/scripts/performance/problems/matmul_probset2_bench.yaml rename to projects/hipblaslt/clients/scripts/performance/problems/matmul_probset2_bench.yaml diff --git a/hipBLASLt/clients/scripts/performance/specs.py b/projects/hipblaslt/clients/scripts/performance/specs.py similarity index 100% rename from hipBLASLt/clients/scripts/performance/specs.py rename to projects/hipblaslt/clients/scripts/performance/specs.py diff --git a/hipBLASLt/clients/scripts/performance/suites.py b/projects/hipblaslt/clients/scripts/performance/suites.py similarity index 100% rename from hipBLASLt/clients/scripts/performance/suites.py rename to projects/hipblaslt/clients/scripts/performance/suites.py diff --git a/hipBLASLt/cmake/Dependencies.cmake b/projects/hipblaslt/cmake/Dependencies.cmake similarity index 100% rename from hipBLASLt/cmake/Dependencies.cmake rename to projects/hipblaslt/cmake/Dependencies.cmake diff --git a/hipBLASLt/cmake/Packaging.cmake b/projects/hipblaslt/cmake/Packaging.cmake similarity index 100% rename from hipBLASLt/cmake/Packaging.cmake rename to projects/hipblaslt/cmake/Packaging.cmake diff --git a/hipBLASLt/cmake/Utilities.cmake b/projects/hipblaslt/cmake/Utilities.cmake similarity index 100% rename from hipBLASLt/cmake/Utilities.cmake rename to projects/hipblaslt/cmake/Utilities.cmake diff --git a/hipBLASLt/cmake/Verbose.cmake b/projects/hipblaslt/cmake/Verbose.cmake similarity index 100% rename from hipBLASLt/cmake/Verbose.cmake rename to projects/hipblaslt/cmake/Verbose.cmake diff --git a/hipBLASLt/cmake/findBLIS.cmake b/projects/hipblaslt/cmake/findBLIS.cmake similarity index 100% rename from hipBLASLt/cmake/findBLIS.cmake rename to projects/hipblaslt/cmake/findBLIS.cmake diff --git a/hipBLASLt/cmake/get-cli-arguments.cmake b/projects/hipblaslt/cmake/get-cli-arguments.cmake similarity index 100% rename from hipBLASLt/cmake/get-cli-arguments.cmake rename to projects/hipblaslt/cmake/get-cli-arguments.cmake diff --git a/hipBLASLt/cmake/hipblaslt-config.cmake b/projects/hipblaslt/cmake/hipblaslt-config.cmake similarity index 100% rename from hipBLASLt/cmake/hipblaslt-config.cmake rename to projects/hipblaslt/cmake/hipblaslt-config.cmake diff --git a/hipBLASLt/cmake/virtualenv.cmake b/projects/hipblaslt/cmake/virtualenv.cmake similarity index 100% rename from hipBLASLt/cmake/virtualenv.cmake rename to projects/hipblaslt/cmake/virtualenv.cmake diff --git a/hipBLASLt/deps/CMakeLists.txt b/projects/hipblaslt/deps/CMakeLists.txt similarity index 100% rename from hipBLASLt/deps/CMakeLists.txt rename to projects/hipblaslt/deps/CMakeLists.txt diff --git a/hipBLASLt/deps/external-gtest.cmake b/projects/hipblaslt/deps/external-gtest.cmake similarity index 100% rename from hipBLASLt/deps/external-gtest.cmake rename to projects/hipblaslt/deps/external-gtest.cmake diff --git a/hipBLASLt/deps/external-lapack.cmake b/projects/hipblaslt/deps/external-lapack.cmake similarity index 100% rename from hipBLASLt/deps/external-lapack.cmake rename to projects/hipblaslt/deps/external-lapack.cmake diff --git a/hipBLASLt/docker/Dockerfile b/projects/hipblaslt/docker/Dockerfile similarity index 100% rename from hipBLASLt/docker/Dockerfile rename to projects/hipblaslt/docker/Dockerfile diff --git a/hipBLASLt/docker/README.md b/projects/hipblaslt/docker/README.md similarity index 100% rename from hipBLASLt/docker/README.md rename to projects/hipblaslt/docker/README.md diff --git a/hipBLASLt/docs/.gitignore b/projects/hipblaslt/docs/.gitignore similarity index 100% rename from hipBLASLt/docs/.gitignore rename to projects/hipblaslt/docs/.gitignore diff --git a/hipBLASLt/docs/CMakeLists.txt b/projects/hipblaslt/docs/CMakeLists.txt similarity index 100% rename from hipBLASLt/docs/CMakeLists.txt rename to projects/hipblaslt/docs/CMakeLists.txt diff --git a/hipBLASLt/docs/cleanup_text.sh b/projects/hipblaslt/docs/cleanup_text.sh similarity index 100% rename from hipBLASLt/docs/cleanup_text.sh rename to projects/hipblaslt/docs/cleanup_text.sh diff --git a/hipBLASLt/docs/conceptual/hipblaslt-clients.rst b/projects/hipblaslt/docs/conceptual/hipblaslt-clients.rst similarity index 100% rename from hipBLASLt/docs/conceptual/hipblaslt-clients.rst rename to projects/hipblaslt/docs/conceptual/hipblaslt-clients.rst diff --git a/hipBLASLt/docs/conceptual/hipblaslt-library-organization.rst b/projects/hipblaslt/docs/conceptual/hipblaslt-library-organization.rst similarity index 100% rename from hipBLASLt/docs/conceptual/hipblaslt-library-organization.rst rename to projects/hipblaslt/docs/conceptual/hipblaslt-library-organization.rst diff --git a/hipBLASLt/docs/conf.py b/projects/hipblaslt/docs/conf.py similarity index 100% rename from hipBLASLt/docs/conf.py rename to projects/hipblaslt/docs/conf.py diff --git a/hipBLASLt/docs/doxygen/.gitignore b/projects/hipblaslt/docs/doxygen/.gitignore similarity index 100% rename from hipBLASLt/docs/doxygen/.gitignore rename to projects/hipblaslt/docs/doxygen/.gitignore diff --git a/hipBLASLt/docs/doxygen/Doxyfile b/projects/hipblaslt/docs/doxygen/Doxyfile similarity index 100% rename from hipBLASLt/docs/doxygen/Doxyfile rename to projects/hipblaslt/docs/doxygen/Doxyfile diff --git a/hipBLASLt/docs/how-to/how-to-use-hipblaslt-offline-tuning.rst b/projects/hipblaslt/docs/how-to/how-to-use-hipblaslt-offline-tuning.rst similarity index 100% rename from hipBLASLt/docs/how-to/how-to-use-hipblaslt-offline-tuning.rst rename to projects/hipblaslt/docs/how-to/how-to-use-hipblaslt-offline-tuning.rst diff --git a/hipBLASLt/docs/how-to/how-to-use-hipblaslt-tuning-utility.rst b/projects/hipblaslt/docs/how-to/how-to-use-hipblaslt-tuning-utility.rst similarity index 100% rename from hipBLASLt/docs/how-to/how-to-use-hipblaslt-tuning-utility.rst rename to projects/hipblaslt/docs/how-to/how-to-use-hipblaslt-tuning-utility.rst diff --git a/hipBLASLt/docs/how-to/how-to-use-streamk.rst b/projects/hipblaslt/docs/how-to/how-to-use-streamk.rst similarity index 100% rename from hipBLASLt/docs/how-to/how-to-use-streamk.rst rename to projects/hipblaslt/docs/how-to/how-to-use-streamk.rst diff --git a/hipBLASLt/docs/how-to/use-logging-heuristics.rst b/projects/hipblaslt/docs/how-to/use-logging-heuristics.rst similarity index 100% rename from hipBLASLt/docs/how-to/use-logging-heuristics.rst rename to projects/hipblaslt/docs/how-to/use-logging-heuristics.rst diff --git a/hipBLASLt/docs/images/hipblaslt-tuning-folder-structure.png b/projects/hipblaslt/docs/images/hipblaslt-tuning-folder-structure.png similarity index 100% rename from hipBLASLt/docs/images/hipblaslt-tuning-folder-structure.png rename to projects/hipblaslt/docs/images/hipblaslt-tuning-folder-structure.png diff --git a/hipBLASLt/docs/index.rst b/projects/hipblaslt/docs/index.rst similarity index 100% rename from hipBLASLt/docs/index.rst rename to projects/hipblaslt/docs/index.rst diff --git a/hipBLASLt/docs/install/building-installing-hipblaslt.rst b/projects/hipblaslt/docs/install/building-installing-hipblaslt.rst similarity index 100% rename from hipBLASLt/docs/install/building-installing-hipblaslt.rst rename to projects/hipblaslt/docs/install/building-installing-hipblaslt.rst diff --git a/hipBLASLt/docs/license.rst b/projects/hipblaslt/docs/license.rst similarity index 100% rename from hipBLASLt/docs/license.rst rename to projects/hipblaslt/docs/license.rst diff --git a/hipBLASLt/docs/reference/api-reference.rst b/projects/hipblaslt/docs/reference/api-reference.rst similarity index 100% rename from hipBLASLt/docs/reference/api-reference.rst rename to projects/hipblaslt/docs/reference/api-reference.rst diff --git a/hipBLASLt/docs/reference/data-type-support.rst b/projects/hipblaslt/docs/reference/data-type-support.rst similarity index 100% rename from hipBLASLt/docs/reference/data-type-support.rst rename to projects/hipblaslt/docs/reference/data-type-support.rst diff --git a/hipBLASLt/docs/reference/datatypes.rst b/projects/hipblaslt/docs/reference/datatypes.rst similarity index 100% rename from hipBLASLt/docs/reference/datatypes.rst rename to projects/hipblaslt/docs/reference/datatypes.rst diff --git a/hipBLASLt/docs/reference/ext-ops.rst b/projects/hipblaslt/docs/reference/ext-ops.rst similarity index 100% rename from hipBLASLt/docs/reference/ext-ops.rst rename to projects/hipblaslt/docs/reference/ext-ops.rst diff --git a/hipBLASLt/docs/reference/ext-reference.rst b/projects/hipblaslt/docs/reference/ext-reference.rst similarity index 100% rename from hipBLASLt/docs/reference/ext-reference.rst rename to projects/hipblaslt/docs/reference/ext-reference.rst diff --git a/hipBLASLt/docs/samples/client_extop_softmax.rst b/projects/hipblaslt/docs/samples/client_extop_softmax.rst similarity index 100% rename from hipBLASLt/docs/samples/client_extop_softmax.rst rename to projects/hipblaslt/docs/samples/client_extop_softmax.rst diff --git a/hipBLASLt/docs/samples/sample_hipblaslt_ext_op_amax.rst b/projects/hipblaslt/docs/samples/sample_hipblaslt_ext_op_amax.rst similarity index 100% rename from hipBLASLt/docs/samples/sample_hipblaslt_ext_op_amax.rst rename to projects/hipblaslt/docs/samples/sample_hipblaslt_ext_op_amax.rst diff --git a/hipBLASLt/docs/samples/sample_hipblaslt_ext_op_amax_with_scale.rst b/projects/hipblaslt/docs/samples/sample_hipblaslt_ext_op_amax_with_scale.rst similarity index 100% rename from hipBLASLt/docs/samples/sample_hipblaslt_ext_op_amax_with_scale.rst rename to projects/hipblaslt/docs/samples/sample_hipblaslt_ext_op_amax_with_scale.rst diff --git a/hipBLASLt/docs/samples/sample_hipblaslt_ext_op_layernorm.rst b/projects/hipblaslt/docs/samples/sample_hipblaslt_ext_op_layernorm.rst similarity index 100% rename from hipBLASLt/docs/samples/sample_hipblaslt_ext_op_layernorm.rst rename to projects/hipblaslt/docs/samples/sample_hipblaslt_ext_op_layernorm.rst diff --git a/hipBLASLt/docs/samples/samples.rst b/projects/hipblaslt/docs/samples/samples.rst similarity index 100% rename from hipBLASLt/docs/samples/samples.rst rename to projects/hipblaslt/docs/samples/samples.rst diff --git a/hipBLASLt/docs/sphinx/_toc.yml.in b/projects/hipblaslt/docs/sphinx/_toc.yml.in similarity index 100% rename from hipBLASLt/docs/sphinx/_toc.yml.in rename to projects/hipblaslt/docs/sphinx/_toc.yml.in diff --git a/hipBLASLt/docs/sphinx/requirements.in b/projects/hipblaslt/docs/sphinx/requirements.in similarity index 100% rename from hipBLASLt/docs/sphinx/requirements.in rename to projects/hipblaslt/docs/sphinx/requirements.in diff --git a/hipBLASLt/docs/sphinx/requirements.txt b/projects/hipblaslt/docs/sphinx/requirements.txt similarity index 100% rename from hipBLASLt/docs/sphinx/requirements.txt rename to projects/hipblaslt/docs/sphinx/requirements.txt diff --git a/hipBLASLt/docs/what-is-hipBLASLt.rst b/projects/hipblaslt/docs/what-is-hipBLASLt.rst similarity index 100% rename from hipBLASLt/docs/what-is-hipBLASLt.rst rename to projects/hipblaslt/docs/what-is-hipBLASLt.rst diff --git a/hipBLASLt/install.sh b/projects/hipblaslt/install.sh similarity index 100% rename from hipBLASLt/install.sh rename to projects/hipblaslt/install.sh diff --git a/hipBLASLt/library/CMakeLists.txt b/projects/hipblaslt/library/CMakeLists.txt similarity index 100% rename from hipBLASLt/library/CMakeLists.txt rename to projects/hipblaslt/library/CMakeLists.txt diff --git a/hipBLASLt/library/include/hipblaslt-version.h.in b/projects/hipblaslt/library/include/hipblaslt-version.h.in similarity index 100% rename from hipBLASLt/library/include/hipblaslt-version.h.in rename to projects/hipblaslt/library/include/hipblaslt-version.h.in diff --git a/hipBLASLt/library/include/hipblaslt/hipblaslt-ext-op.h b/projects/hipblaslt/library/include/hipblaslt/hipblaslt-ext-op.h similarity index 100% rename from hipBLASLt/library/include/hipblaslt/hipblaslt-ext-op.h rename to projects/hipblaslt/library/include/hipblaslt/hipblaslt-ext-op.h diff --git a/hipBLASLt/library/include/hipblaslt/hipblaslt-ext.hpp b/projects/hipblaslt/library/include/hipblaslt/hipblaslt-ext.hpp similarity index 100% rename from hipBLASLt/library/include/hipblaslt/hipblaslt-ext.hpp rename to projects/hipblaslt/library/include/hipblaslt/hipblaslt-ext.hpp diff --git a/hipBLASLt/library/include/hipblaslt/hipblaslt-types.h b/projects/hipblaslt/library/include/hipblaslt/hipblaslt-types.h similarity index 100% rename from hipBLASLt/library/include/hipblaslt/hipblaslt-types.h rename to projects/hipblaslt/library/include/hipblaslt/hipblaslt-types.h diff --git a/hipBLASLt/library/include/hipblaslt/hipblaslt.h b/projects/hipblaslt/library/include/hipblaslt/hipblaslt.h similarity index 100% rename from hipBLASLt/library/include/hipblaslt/hipblaslt.h rename to projects/hipblaslt/library/include/hipblaslt/hipblaslt.h diff --git a/hipBLASLt/library/include/hipblaslt/hipblaslt_float8.h b/projects/hipblaslt/library/include/hipblaslt/hipblaslt_float8.h similarity index 100% rename from hipBLASLt/library/include/hipblaslt/hipblaslt_float8.h rename to projects/hipblaslt/library/include/hipblaslt/hipblaslt_float8.h diff --git a/hipBLASLt/library/include/hipblaslt/hipblaslt_float8_bc.h b/projects/hipblaslt/library/include/hipblaslt/hipblaslt_float8_bc.h similarity index 100% rename from hipBLASLt/library/include/hipblaslt/hipblaslt_float8_bc.h rename to projects/hipblaslt/library/include/hipblaslt/hipblaslt_float8_bc.h diff --git a/hipBLASLt/library/include/hipblaslt/hipblaslt_xfloat32.h b/projects/hipblaslt/library/include/hipblaslt/hipblaslt_xfloat32.h similarity index 100% rename from hipBLASLt/library/include/hipblaslt/hipblaslt_xfloat32.h rename to projects/hipblaslt/library/include/hipblaslt/hipblaslt_xfloat32.h diff --git a/hipBLASLt/library/src/CMakeLists.txt b/projects/hipblaslt/library/src/CMakeLists.txt similarity index 100% rename from hipBLASLt/library/src/CMakeLists.txt rename to projects/hipblaslt/library/src/CMakeLists.txt diff --git a/hipBLASLt/library/src/amd_detail/hipblaslt-ext-op-internal.hpp b/projects/hipblaslt/library/src/amd_detail/hipblaslt-ext-op-internal.hpp similarity index 100% rename from hipBLASLt/library/src/amd_detail/hipblaslt-ext-op-internal.hpp rename to projects/hipblaslt/library/src/amd_detail/hipblaslt-ext-op-internal.hpp diff --git a/hipBLASLt/library/src/amd_detail/hipblaslt-ext-op.cpp b/projects/hipblaslt/library/src/amd_detail/hipblaslt-ext-op.cpp similarity index 100% rename from hipBLASLt/library/src/amd_detail/hipblaslt-ext-op.cpp rename to projects/hipblaslt/library/src/amd_detail/hipblaslt-ext-op.cpp diff --git a/hipBLASLt/library/src/amd_detail/hipblaslt-ext.cpp b/projects/hipblaslt/library/src/amd_detail/hipblaslt-ext.cpp similarity index 100% rename from hipBLASLt/library/src/amd_detail/hipblaslt-ext.cpp rename to projects/hipblaslt/library/src/amd_detail/hipblaslt-ext.cpp diff --git a/hipBLASLt/library/src/amd_detail/hipblaslt.cpp b/projects/hipblaslt/library/src/amd_detail/hipblaslt.cpp similarity index 100% rename from hipBLASLt/library/src/amd_detail/hipblaslt.cpp rename to projects/hipblaslt/library/src/amd_detail/hipblaslt.cpp diff --git a/hipBLASLt/library/src/amd_detail/hipblaslt_internal.hpp b/projects/hipblaslt/library/src/amd_detail/hipblaslt_internal.hpp similarity index 100% rename from hipBLASLt/library/src/amd_detail/hipblaslt_internal.hpp rename to projects/hipblaslt/library/src/amd_detail/hipblaslt_internal.hpp diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/CMakeLists.txt b/projects/hipblaslt/library/src/amd_detail/rocblaslt/CMakeLists.txt similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/CMakeLists.txt rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/CMakeLists.txt diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/include/Debug.hpp b/projects/hipblaslt/library/src/amd_detail/rocblaslt/include/Debug.hpp similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/include/Debug.hpp rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/include/Debug.hpp diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/include/rocblaslt-auxiliary.h b/projects/hipblaslt/library/src/amd_detail/rocblaslt/include/rocblaslt-auxiliary.h similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/include/rocblaslt-auxiliary.h rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/include/rocblaslt-auxiliary.h diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/include/rocblaslt-functions.h b/projects/hipblaslt/library/src/amd_detail/rocblaslt/include/rocblaslt-functions.h similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/include/rocblaslt-functions.h rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/include/rocblaslt-functions.h diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/include/rocblaslt-types.h b/projects/hipblaslt/library/src/amd_detail/rocblaslt/include/rocblaslt-types.h similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/include/rocblaslt-types.h rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/include/rocblaslt-types.h diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/include/rocblaslt.h b/projects/hipblaslt/library/src/amd_detail/rocblaslt/include/rocblaslt.h similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/include/rocblaslt.h rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/include/rocblaslt.h diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/CMakeLists.txt b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/CMakeLists.txt similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/CMakeLists.txt rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/CMakeLists.txt diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Debug.cpp b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Debug.cpp similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Debug.cpp rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Debug.cpp diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Ailk_Bjlk_BBS_BH_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Ailk_Bjlk_BBS_BH_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Ailk_Bjlk_BBS_BH_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Ailk_Bjlk_BBS_BH_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Ailk_Bljk_BBS_BH_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Ailk_Bljk_BBS_BH_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Ailk_Bljk_BBS_BH_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Ailk_Bljk_BBS_BH_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_BBS_BH_Bias_HAH_SAV.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_BBS_BH_Bias_HAH_SAV.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_BBS_BH_Bias_HAH_SAV.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_BBS_BH_Bias_HAH_SAV.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_BBS_BH_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_BBS_BH_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_BBS_BH_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_BBS_BH_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_HHS_BH_Bias_HAH_SAV.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_HHS_BH_Bias_HAH_SAV.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_HHS_BH_Bias_HAH_SAV.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_HHS_BH_Bias_HAH_SAV.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_SB_Bias_HA_SAV.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_SB_Bias_HA_SAV.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_SB_Bias_HA_SAV.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/Equality/aldebaran_Cijk_Alik_Bljk_SB_Bias_HA_SAV.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_BBS_BH_Bias_HAH_SAV.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_BBS_BH_Bias_HAH_SAV.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_BBS_BH_Bias_HAH_SAV.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_BBS_BH_Bias_HAH_SAV.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_HHS_BH_Bias_HAH_SAV.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_HHS_BH_Bias_HAH_SAV.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_HHS_BH_Bias_HAH_SAV.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_HHS_BH_Bias_HAH_SAV.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_HH_BHS_BH_BiasSH_HAS_SAV_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_HH_BHS_BH_BiasSH_HAS_SAV_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_HH_BHS_BH_BiasSH_HAS_SAV_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_HH_BHS_BH_BiasSH_HAS_SAV_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_I8BH_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_I8BH_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_I8BH_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_I8BH_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_I8II_BH_HAI_SAV_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_I8II_BH_HAI_SAV_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_I8II_BH_HAI_SAV_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_I8II_BH_HAI_SAV_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_I8II_BH_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_I8II_BH_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_I8II_BH_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_I8II_BH_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_SB_Bias_HA_SAV.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_SB_Bias_HA_SAV.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_SB_Bias_HA_SAV.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bjlk_SB_Bias_HA_SAV.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_BBS_BH_Bias_HAH_SAV.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_BBS_BH_Bias_HAH_SAV.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_BBS_BH_Bias_HAH_SAV.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_BBS_BH_Bias_HAH_SAV.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_HHS_BH_Bias_HAH_SAV.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_HHS_BH_Bias_HAH_SAV.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_HHS_BH_Bias_HAH_SAV.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_HHS_BH_Bias_HAH_SAV.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_HH_BHS_BH_BiasSH_HAS_SAV_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_HH_BHS_BH_BiasSH_HAS_SAV_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_HH_BHS_BH_BiasSH_HAS_SAV_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_HH_BHS_BH_BiasSH_HAS_SAV_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_I8BH_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_I8BH_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_I8BH_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_I8BH_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_I8II_BH_HAI_SAV_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_I8II_BH_HAI_SAV_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_I8II_BH_HAI_SAV_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_I8II_BH_HAI_SAV_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_I8II_BH_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_I8II_BH_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_I8II_BH_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_I8II_BH_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_SB_Bias_HA_SAV.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_SB_Bias_HA_SAV.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_SB_Bias_HA_SAV.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Ailk_Bljk_SB_Bias_HA_SAV.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_BBS_BH_Bias_HAH_SAV.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_BBS_BH_Bias_HAH_SAV.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_BBS_BH_Bias_HAH_SAV.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_BBS_BH_Bias_HAH_SAV.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_HHS_BH_Bias_HAH_SAV.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_HHS_BH_Bias_HAH_SAV.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_HHS_BH_Bias_HAH_SAV.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_HHS_BH_Bias_HAH_SAV.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_HH_BHS_BH_BiasSH_HAS_SAV_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_HH_BHS_BH_BiasSH_HAS_SAV_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_HH_BHS_BH_BiasSH_HAS_SAV_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_HH_BHS_BH_BiasSH_HAS_SAV_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_I8BH_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_I8BH_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_I8BH_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_I8BH_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_I8II_BH_HAI_SAV_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_I8II_BH_HAI_SAV_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_I8II_BH_HAI_SAV_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_I8II_BH_HAI_SAV_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_I8II_BH_UserArgs.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_I8II_BH_UserArgs.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_I8II_BH_UserArgs.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_I8II_BH_UserArgs.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_SB_Bias_HA_SAV.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_SB_Bias_HA_SAV.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_SB_Bias_HA_SAV.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bjlk_SB_Bias_HA_SAV.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bljk_BBS_BH_Bias_HAH_SAV.yaml b/projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bljk_BBS_BH_Bias_HAH_SAV.yaml similarity index 100% rename from hipBLASLt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bljk_BBS_BH_Bias_HAH_SAV.yaml rename to projects/hipblaslt/library/src/amd_detail/rocblaslt/src/Tensile/Logic/asm_full/aldebaran/104CU/GridBased/aldebaran_Cijk_Alik_Bljk_BBS_BH_Bias_HAH_SAV.yaml diff --git a/hipBLASLt/library/src/amd_detail/rocblaslt/src/T{"code":"deadline_exceeded","msg":"operation timed out"}